Interactive command prompt as NETWORK SERVICE

后端 未结 2 1556
盖世英雄少女心
盖世英雄少女心 2020-12-31 03:40

How do I open an interactive application, such as cmd.exe or Windows Explorer, running as NETWORK SERVICE? There are ways to do it for the SYSTEM account, but NETWORK SERVIC

2条回答
  •  無奈伤痛
    2020-12-31 04:31

    Here is how you would use PsExec to run cmd.exe under "NETWORK SERVICE" user context:

    psexec -i -u "nt authority\network service" cmd.exe 
    

提交回复
热议问题