App Deploy toolkit
Anyone used App Deploy Toolkit for an install that has a response file. Have not had any luck getting it to work.
1 Comment
[ + ] Show comment
Answers (2)
Please log in to answer
Posted by:
Nonothing
5 years ago
setup.exe -javaoptions "-Xmx256M" -wait -quiet -responsefile pc_sas_sdwresponse.properties
Comments:
-
Have you tried feeding the "-javaoptions "-Xmx256M" -wait -quiet -responsefile pc_sas_sdwresponse.properties as parameters.
I use this to install Office 365 from PSADT. All the files are in the folder called files including setup.exe and configuration_Install.xml
===========================================================================================
Execute-Process -Path "$dirFiles\Setup.exe" -Parameters "/configure configuration_Install.xml"
===========================================================================================
Please see this for more examples.
"http://www.scriptersinc.com/psadt-quick-reference-functions-list/
Execute-Process -Path ‘uninstall_flash_player.exe’ -Parameters ‘/uninstall’ -WindowStyle Hidden - nagendrasingh 5 years ago
Execute-Process -path "$dirFiles\setup.exe" -paramters "-javaoptions -Xmx256M -wait -quiet -responsefile `"$dirFiles\pc_sas_sdwresponse.properties`""
Assuming that you have kept your setup,exe and response file under File folder of PSADT - rock_star 5 years ago