1

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?

AngryHacker
  • 2,877
  • 6
  • 32
  • 33

1 Answers1

1

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'.

Jason W.
  • 46
  • 3