Reputation: 2959
The donet installs like its suppose to but vcredist_x86.exe, and vs_piaredist.exe. Do you see anything that I am doing wrong? I want this to be a silent install.
vcredist_x86.exe /q:a /c:"VCREDI~3.EXE /q:a /c""msiexec /i vcredist.msi /qu"""
pause
vs_piaredist.exe /q:a /c:"msiexe /i vs_2005_PIA.msi /qn"
pause
dotnetfx.exe /q:a /c:"install /l/q"
pause
Upvotes: 0
Views: 231
Reputation: 77737
So far I can see only two possible issues, if the script is copied without any changes/typos:
Line #1, :
is probably missing after the second (inner) /c
switch.
Line #3, msiexe
should probably be msiexec
.
Upvotes: 1