How do i silently install Microsoft access runtime 2010 using silent switch?
I have the exe file, and I need to create a .cmd or .bat file that would install my application silently.
Thank You!
1 Comment
[ + ] Show comment
Answers (3)
Please log in to answer
Posted by:
ron123
10 years ago
Posted by:
LBarclay
11 years ago
Have you tried:
your-setup.exe /s /v" /qn"
Let me know if that works!
Comments:
-
Since no one ever answered, no this does not work. - theGreenhorse 7 years ago
Posted by:
anonymous_9363
11 years ago
Echo off
for /f "Tokens=*" %%i in ('CD') do set CurrentDir=%%i
Cd "%CurrentDir%"
"%CurrentDir%setup.exe" salient parameter
Pause - shreyas 10 years ago