microsoft / SqlNexus

SQL Nexus is a tool that helps you identify the root cause of SQL Server performance issues. It loads and analyzes performance data collected by SQL LogScout, SQLDiag or PSSDiag. It can dramatically reduce the amount of time you spend manually analyzing data.
MIT License
348 stars 99 forks source link

Provide option to Minimize Relog.exe window when processing Permfon BLG files #250

Closed PiJoCoder closed 1 year ago

PiJoCoder commented 1 year ago

Instead of popping it up - minimize it

image

PiJoCoder commented 1 year ago

Code change is trivial:

ProcessStartInfo pi = new ProcessStartInfo("relog.exe", args);
pi.WindowStyle = ProcessWindowStyle.Minimized;
PiJoCoder commented 1 year ago

Adding the option in the GUI to enable/disable minimizing of window

image