Recently, I was working on a requirement to convert a number of BLG files into CSV and then changing the CSV files into Excel files.
So, the script below does the following:
1. Picks the BLG files from a folder and then creates a CSV file from the BLG file using RELOG.EXE
2. Then the same CSV file is converted to a XLS file
As always, this is a Powershell script which can be adapted in any way possible. Happy perfmon analysis!
The script can be downloaded from OneDrive as well.
################################################################################# # # # # # # # # # Script Name: Relog # # Author: Amit Banerjee # # Date: May 10, 2014 # # Description: # # The script uses relog to create CSV files from BLG files # # It then converts the CSV files to XLS files # # # # # # # # # # # ################################################################################# # This Sample Code is provided for the purpose of illustration only and is not intended to be used in a production environment. THIS SAMPLE CODE AND ANY RELATED INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. We grant You a nonexclusive, royalty-free right to use and modify the Sample Code and to reproduce and distribute the object code form of the Sample Code, provided that You agree: (i) to not use Our name, logo, or trademarks to market Your software product in which the Sample Code is embedded; (ii) to include a valid copyright notice on Your software product in which the Sample Code is embedded; and (iii) to indemnify, hold harmless, and defend Us and Our suppliers from and against any claims or lawsuits, including attorneys fees, that arise or result from the use or distribution of the Sample Code. # Enumerates BLG files on disk and starts running relog on them $path = "C:\PerfmonFiles\" # Replace with correct path $files = Get-ChildItem $path -Filter *.blg foreach ($file in $files) { # Create the CSV filename $filename = $file.FullName.Split(".")[0] + ".csv" # Run relog with the correct arguments $AllArgs = @($file.FullName, '-f', 'csv', '-o', $filename) & 'relog.exe' $AllArgs } # Enumerates CSV files on disk and starts converting them to Excel $files = Get-ChildItem $path -Filter *.csv foreach ($file in $files) { # Launch Excel $xls = new-object -comobject excel.application $xls.visible = $true # Open the CSV file $Workbook = $xls.workbooks.open($file.FullName) $Worksheets = $Workbooks.worksheets $filename = $file.FullName.Split(".")[0] + ".xls" # Save the file as Excel # Depending on your compatibility settings you might have to accept a prompt to save the file $Workbook.SaveAs($filename,1) $Workbook.Saved = $True # Close Excel $xls.Quit() # Delete the CSV file Remove-Item $file.FullName }