Pergunta

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 SERVICE is proving to be a challenge. I need this to work on Windows 7, but would be interested in solutions for other Windows versions as well.

Outras dicas

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 
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top