ad
Overview
This is a batch file that converts the performance monitoring report file (.blg) from Windows to CSV format. I’ve designed it to create a new CSV file with a user-friendly name for easy use. Please save the following code as a .bat file and use it.
使い方
BAT (Batchfile)
@echo off
setlocal
if "%~1"=="" (
echo Please drag and drop a performance log file onto this script.
pause
exit /b
)
set perfLogFile="%~1"
set outputCsvFile="%~dpn1.csv"
relog %perfLogFile% -f CSV -o %outputCsvFile%
echo Conversion complete.
pause
ad




