14 lines
262 B
Batchfile
14 lines
262 B
Batchfile
@echo off
|
|
|
|
cd /d %DEV_TOOLS%\SysinternalsSuite
|
|
|
|
if exist %1\* (
|
|
echo Run on a file
|
|
) else (
|
|
if exist "%~1_sigcheck_report.txt" (
|
|
del "%~1_sigcheck_report.txt"
|
|
)
|
|
sigcheck64.exe /a "%~1" > "%~1_sigcheck_report.txt"
|
|
start notepad "%~1_sigcheck_report.txt"
|
|
)
|