📎 AI Summary:
The thread discusses methods to remotely control other computers, including shutting down or restarting them. The original poster inquires about controlling another PC from their own. A responder outlines multiple solutions, such as using built-in Windows tools like shutdown.exe, WMI methods, PowerShell cmdlets, and third-party tools like psshutdown. Overall, the exchange is helpful and positive, providing practical options for remote management.
The thread discusses methods to remotely control other computers, including shutting down or restarting them. The original poster inquires about controlling another PC from their own. A responder outlines multiple solutions, such as using built-in Windows tools like shutdown.exe, WMI methods, PowerShell cmdlets, and third-party tools like psshutdown. Overall, the exchange is helpful and positive, providing practical options for remote management.
Solution
Yes there are quite a few ways
- Use the built-in shutdown.exe with the /m switch
- Through the WMI Shutdown method on the Win32_OperatingSystem class
- Through WMI method call via the Powershell cmdlet Invoke-WMIMethod
- On Windows 10 you can just use the cmdlets Stop-Computer and Restart-Computer
- You can use the sysinternal tool psshutdown
Member details
- Joined
- Jul 4, 2015
- Messages
- 8,995
Yes there are quite a few ways
- Use the built-in shutdown.exe with the /m switch
- Through the WMI Shutdown method on the Win32_OperatingSystem class
- Through WMI method call via the Powershell cmdlet Invoke-WMIMethod
- On Windows 10 you can just use the cmdlets Stop-Computer and Restart-Computer
- You can use the sysinternal tool psshutdown
Yes there are quite a few ways
There are probably others or you could even create your own.
- Use the built-in shutdown.exe with the /m switch
- Through the WMI Shutdown method on the Win32_OperatingSystem class
- Through WMI method call via the Powershell cmdlet Invoke-WMIMethod
- On Windows 10 you can just use the cmdlets Stop-Computer and Restart-Computer
- You can use the sysinternal tool psshutdown
Thanks a lot! GOD BLESS YOU!!!!