Created
June 25, 2014 16:38
-
-
Save iGh0st/8eddc0d7279bcebbda20 to your computer and use it in GitHub Desktop.
script which can be dropped on the target machine and which will use WMIC to extract the following information: processes, services, user accounts, user groups, network interfaces, Hard Drive information, Network Share information, installed Windows patches, programs that run at startup, list of installed software, information about the operatin…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for /f "delims=" %%A in ('dir /s /b %WINDIR%\system32\*htable.xsl') do set "var=%%A" | |
wmic process get CSName,Description,ExecutablePath,ProcessId /format:"%var%" >> out.html | |
wmic service get Caption,Name,PathName,ServiceType,Started,StartMode,StartName /format:"%var%" >> out.html | |
wmic USERACCOUNT list full /format:"%var%" >> out.html | |
wmic group list full /format:"%var%" >> out.html | |
wmic nicconfig where IPEnabled='true' get Caption,DefaultIPGateway,Description,DHCPEnabled,DHCPServer,IPAddress,IPSubnet,MACAddress /format:"%var%" >> out.html | |
wmic volume get Label,DeviceID,DriveLetter,FileSystem,Capacity,FreeSpace /format:"%var%" >> out.html | |
wmic netuse list full /format:"%var%" >> out.html | |
wmic qfe get Caption,Description,HotFixID,InstalledOn /format:"%var%" >> out.html | |
wmic startup get Caption,Command,Location,User /format:"%var%" >> out.html | |
wmic PRODUCT get Description,InstallDate,InstallLocation,PackageCache,Vendor,Version /format:"%var%" >> out.html | |
wmic os get name,version,InstallDate,LastBootUpTime,LocalDateTime,Manufacturer,RegisteredUser,ServicePackMajorVersion,SystemDirectory /format:"%var%" >> out.html | |
wmic Timezone get DaylightName,Description,StandardName /format:"%var%" >> out.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment