PsExec is a light-weight telnet-replacement to execute processes on other systems, without having to manually install client software. But beware of some antivirus software’s, they may flag it.
Connect to remote cmd prompt ?
# Below command connect to remote system in interactive mode through cmd
psexec.exe \\pcname cmd
And the best part, PsExec can run the process with system account !!! WoW
Change local user password in more than one computer
# Create a file with computer names and execute the below command to change admin password in remote systems
psexec.exe @pcname.txt cmd /c "net user administrator complexpassword123:)"
The dangerous one – Runs in all system within the domain
psexec.exe \* cmd /c "net user administrator complexpassword123:)"
Hope you like this article and thank you for reading.
Recent Comments