Windows + Remote commands
- Psexec from sysinternals suite.
- WMIC: wmic /node:”servername” qfe get hotfixid | find “KB4012212″, wmic /node:”servername” process call create “cmd /c somecommands”
- Powershell, run Enable-PSRemoting-Force on the remote PC, run Test-WSMan on your PC to test the connection, run Invoke-Command -ComputerName COMPUTER -ScriptBlock { COMMAND } -credential USERNAME
- Enter-PSSession, as in the #3.
- Other tools.
Comments are currently closed.