Last active
October 8, 2021 06:57
-
-
Save easternnl/3406cf02d32acce8eb520832735162b0 to your computer and use it in GitHub Desktop.
Setup for installing Virtual User Generator - Analysis and Fiddler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@rem Create by Erik van Oost for version PC/LR 12.55 | |
@if not exist C:\temp mkdir C:\temp | |
@echo %~f0 | |
@set scriptpath=%~f0\..\ | |
@echo Extracting setup files with 7Zip | |
%scriptpath%7z.exe x %scriptpath%SetupVugen.exe -oC:\temp\SetupVugen -y | |
%scriptpath%7z.exe x %scriptpath%SetupAnalysis.exe -oC:\temp\SetupAnalysis -y | |
@echo Installing prerequisites for Vugen | |
@cd /d C:\temp\SetupVugen | |
setup.exe /InstallOnlyPrerequisite /s | |
@echo Installing Vugen | |
msiexec /i Vugen_x64.msi ALLUSERS=1 INSTALLNV=1 /qb | |
@cd .. | |
@echo Installing prerequisites for Analysis | |
@cd /d C:\temp\SetupAnalysis | |
setup.exe /InstallOnlyPrerequisite /s | |
@echo Installing Analysis | |
msiexec /i Analysis_x64.msi ALLUSERS=1 /qb | |
@cd /d %scriptpath% | |
@echo Installing Fiddler | |
%scriptpath%fiddlersetup.exe /S /D=C:\Program Files\Fiddler |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment