Interactive command prompt as NETWORK SERVICE

后端 未结 2 1542
盖世英雄少女心
盖世英雄少女心 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:12

    Have you tried PsExec, a couple of interesting links with more information:

    • http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx
    • https://social.technet.microsoft.com/Forums/en-US/381df759-af7f-4523-a2fd-b17e8c68db9e/how-to-start-cmdexe-as-network-service?forum=pstools
    0 讨论(0)
  • 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 
    
    0 讨论(0)
提交回复
热议问题