I have a SampleApp.exe
. When I double click it, it extracts itself into a folder (lets say a folder name SampleAppFolder
and YES it do ask for a folderpath) and starts a Setup.exe from that folder (Setup.exe
is extracted in SampleAppFolder
). I want to run SampleApp.exe
in silent mode. So I created a batch file as
"D:\Softwares\SampleApp.exe" /S /V" /quiet"
Everything gets extracted in SampleAppFolder silently but when it triggers Setup.exe from the folder, I am able to see a window. But I wanted to run even this .exe in silent mode. So I guess I need to pass some parameters for this setup.exe also. But I am not sure how. Any pointers please?
On more thing, I changed the above query as
"D:\Softwares\SampleApp.exe" /extract"C:\Users\MyName\Desktop\TestFiles123" /S /V" /quiet"
I thought the extraction path will change, but nothing happened and the files got extracted to default location again. Any pointers? Thanks