Shutdown a PC
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
Is it possible to write a VB program to shutdown your PC or a PC on the network. I use XP and .net 2003. Any ideas?
-
Is it possible to write a VB program to shutdown your PC or a PC on the network. I use XP and .net 2003. Any ideas?
-
Is it possible to write a VB program to shutdown your PC or a PC on the network. I use XP and .net 2003. Any ideas?
I use a desktop icon that could easily be used as "process.start(shutdown.exe -s -t 00)" Shutdown: %windir%\System32\shutdown.exe -s -t 00 Restart: %windir%\System32\shutdown.exe -r -t 00 Logoff: %windir%\System32\shutdown.exe -l -t 00 Hope this helps!