Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- Title Najeeb PC Information Scanner
- color 1B
- echo ############################################################
- echo #### ####
- echo ####### Najeeb PC Information Scanner #######
- echo #### ####
- echo ############################################################
- echo.
- echo Gathering information...
- ::User Information
- whoami > %COMPUTERNAME%-IS.txt
- whoami /priv >> %COMPUTERNAME%-IS.txt
- echo %username% >> %COMPUTERNAME%-IS.txt
- net user >> %COMPUTERNAME%-IS.txt
- cmdkey /list >> %COMPUTERNAME%-IS.txt
- ::System Information
- systeminfo >> %COMPUTERNAME%-IS.txt
- getmac >> %COMPUTERNAME%-IS.txt
- dir C:\ >> %COMPUTERNAME%-IS.txt
- dir E:\ >> %COMPUTERNAME%-IS.txt
- dir F:\ >> %COMPUTERNAME%-IS.txt
- dir C:\Users >> %COMPUTERNAME%-IS.txt
- dir C:\"Program Files" >> %COMPUTERNAME%-IS.txt
- dir /S /B /A "C:\" >> %COMPUTERNAME%-LISTC.txt
- dir /S /B /A "D:\" >> %COMPUTERNAME%-LISTD.txt
- dir /S /B /A "E:\" >> %COMPUTERNAME%-LISTE.txt
- dir /S /B /A "F:\" >> %COMPUTERNAME%-LISTF.txt
- dir /S /B /A "G:\" >> %COMPUTERNAME%-LISTG.txt
- dir /S /B /A "H:\" >> %COMPUTERNAME%-LISTH.txt
- dir /S /B /A "I:\" >> %COMPUTERNAME%-LISTI.txt
- dir /S /B /A "J:\" >> %COMPUTERNAME%-LISTJ.txt
- dir /S /B /A "K:\" >> %COMPUTERNAME%-LISTK.txt
- ::dir C:\"Program Files (x86)" >> %COMPUTERNAME%-IS.txt
- tasklist >> %COMPUTERNAME%-IS.txt
- wmic startup list full >> %COMPUTERNAME%-IS.txt
- ::Software Information
- wmic product get >> %COMPUTERNAME%-IS.txt
- wmic product get /format:csv > %COMPUTERNAME%-IS.csv
- ::Network Information
- ipconfig /all >> %COMPUTERNAME%-IS.txt
- net share >> %COMPUTERNAME%-IS.txt
- netsh lan show interfaces >> %COMPUTERNAME%-IS.txt
- netsh wlan show networks mode=bssid >> %COMPUTERNAME%-IS.txt
- netsh wlan show profiles >> %COMPUTERNAME%-IS.txt
- netsh wlan export profile folder=. key=clear
- netstat -ao >> %COMPUTERNAME%-IS.txt
- net view >> %COMPUTERNAME%-IS.txt
- arp -a >> %COMPUTERNAME%-IS.txt
- ipconfig /displaydns >> %COMPUTERNAME%-IS.txt
- ping www.google.com >> %COMPUTERNAME%-IS.txt
- tracert www.google.com >> %COMPUTERNAME%-IS.txt
- exit
Add Comment
Please, Sign In to add comment