PowerShell, Executing Internet Explorer as Network Service

Sometimes as part of troubleshooting things will work when you try them as an administrator, but they will not work when executed as Network Service, here is a PowerShell script that will open Internet Explorer in the context of the Network Service:

(of course you could use the same script to run any program with any other user)

 psexec -u "nt authority\network service" -i "c:\program files\internet explorer\iexplore.exe"