Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- cls
- rem ====== find desktop location =======
- for /f "usebackq tokens=2,3*" %%A in (`REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Desktop"`) do if %%A==REG_EXPAND_SZ call :reparse set desktopdir=%%B
- echo Log file will be saved to %desktopdir%\proclist-81518.txt
- echo %date%
- goto :proclist
- :reparse
- %*
- goto :proclist
- rem ====== dump currently running processes =======
- :proclist
- echo Log file name is %desktopdir%\proclist-81518.txt > proclist-81518.txt
- echo Generated on %date% %time% >> proclist-81518.txt
- echo. >> proclist-81518.txt
- echo ============= TASKLIST OUTPUT ============= >> proclist-81518.txt
- tasklist /svc /fo table >> proclist-81518.txt
- echo. >> proclist-81518.txt
- echo. >> proclist-81518.txt
- echo ============= SYSTEMINFO OUTPUT ============= >> proclist-81518.txt
- systeminfo >> proclist-81518.txt
- echo Open proclist-81518.txt file on your desktop in notepad.
- echo.
- echo Select all, copy and add new note to your EvenBalance ticket.
- echo.
- echo If you don't have ticket opened, be sure to make it here: http://www.evenbalance.com/troubleticket/new_ticket.php?game=bf4
- pause > nul
- start %desktopdir%\proclist-81518.txt
- exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement