
psexec
List of commands for psexec:
-
psexec:tldr:13fe3 psexec: Execute a program to interact with users.$ psexec \\${remote_host} -d -i ${program_name}try on your machineexplain this command
-
psexec:tldr:4cde0 psexec: Execute a command on a remote host (pre-authenticated).$ psexec \\${remote_host} -u ${user_name} -p ${password}try on your machineexplain this command
-
psexec:tldr:ad939 psexec: Execute a command using `cmd` in a remote shell.$ psexec \\${remote_host} cmdtry on your machineexplain this command
-
psexec:tldr:cffeb psexec: Display the IP configuration of the remote host.$ psexec \\${remote_host} ipconfig /alltry on your machineexplain this command
-
psexec:tldr:e81d5 psexec: Execute a command remotely and output the result to a file.$ psexec \\${remote_host} cmd /c ${command} -an ^>${path\to\file-txt}try on your machineexplain this command