Introduction
https://technet.microsoft.com/en-us/sysinternals/pstools.aspx
- PsExec - execute processes remotely
- PsFile - shows files opened remotely
- PsGetSid - display the SID of a computer or a user
- PsInfo - list information about a system
- PsKill - kill processes by name or process ID
- PsList - list detailed information about processes
- PsLoggedOn - see who's logged on locally and via resource sharing
- PsLogList - dump event log records
- PsPasswd - changes account passwords
- PsService - view and control services
- PsShutdown - shuts down and optionally reboots a computer
- PsSuspend - suspends processes
- PsUptime - shows you how long a system has been running since its last reboot (PsUptime's functionality has been incorporated into PsInfo)
in that tools manly i mention below about psexe.exe that is one of application in PsTools
......................................................................................................................................................
psexe.exe
Execute processes on a remote system and redirect output to the local system
This article I wrote describes how PsExec works and gives tips on how to use it:
This command executes IpConfig on the remote system with the /all switch, and displays the resulting output locally:
psexec \\ipaddress ipconfig /all
This command copies the program test.exe to the remote system and executes it interactively:
psexec \\ipaddress -c test.exe
Specify the full path to a program that is already installed on a remote system if its not on the system's path:
psexec \\ipaddress c:\bin\test.exe
Run Regedit interactively in the System account to view the contents of the SAM and SECURITY keys::
psexec -i -d -s c:\windows\regedit.exe
To run Internet Explorer as with limited-user privileges use this command:
psexec -l -d "c:\program files\internet explorer\iexplore.exe"
No comments:
Post a Comment