📎 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.

prkundan

Member
Joined
Jun 10, 2019
Messages
35
Thread Author #1
Can I control(i.e. Shutdown or Restart etc.) another comp from my comp.?
 

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
There are probably others or you could even create your own.

Neemobeer

Windows Forum Team
Staff member
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
There are probably others or you could even create your own.
 

Solution

prkundan

Member
Joined
Jun 10, 2019
Messages
35
Thread Author #3
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
There are probably others or you could even create your own.

Thanks a lot! GOD BLESS YOU!!!!