I aim to measure the performance impact after installing my application on a Windows machine. My plan involves the following tasks:
If anyone has experience or a specific method to achieve this task, please share your approach.
Script A:
- Run Script A on a fresh (vanilla) machine to capture the baseline performance and save the results as baseline.ptx.
- Install and run my application.
- Run Script A again, post-installation, and save the results as baseline_with_xyz.ptx. I would then like to generate a report that compares the two results: the initial baseline and the performance after installation.
If anyone has experience or a specific method to achieve this task, please share your approach.
Script A:
Code:
# Set the computer name SETCOMPUTERNAME "Dell 7450" SUPPRESSWARNINGS OFF SETDISK "C:" SETDURATION 10 SETITERATIONS 2 # Clear previous results CLEARRESULTS # Run the specified tests RUN CPU_ALL RUN ME_ALL RUN DI_ALL EXPORTBASELINE "C:\PerformanceTest\baseline_data.ptx" EXIT
Comment