I am trying to connect to another computer with Event Viewer from command line. And it can be done.
However, I need to connect as another user (not my logged in user). Is there a way to do that?
I am trying to connect to another computer with Event Viewer from command line. And it can be done.
However, I need to connect as another user (not my logged in user). Is there a way to do that?
This command worked for me:
C:\Windows\System32\runas.exe /user:domain\user "cmd /c \"eventvwr computername\""
Don't forget to change 'domain\user' and 'computername'.