I’m relatively new to PSADT and generally only have one parameter when I am deploying an application. For this Python deployment I have 3 parameters.
This is the command line install which works fine:
python-3.13.1-amd64.exe /quiet InstallAllUsers=1 PrependPath=1
I am having trouble finding the right combination of quotes to get anything to run besides the /quiet inside of PSADT
Execute-Process -Path "python-3.13.1-amd64.exe" -Parameters '/quiet InstallAllusers=1 PrependPath=1'
I looked at the documentation for Execute-Process but all of the backticks and quotes in some of the examples are confusing.
Any help would be greatly appreciated!