Forked from easternnl/setup for installing Virtual User Generator - Analysis and Fiddler.cmd
Created
October 8, 2021 06:57
-
-
Save joskid/45c312d8a568d0a083025c4106e09e23 to your computer and use it in GitHub Desktop.
Setup for installing Virtual User Generator - Analysis and Fiddler
This file contains hidden or 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