Hi Team,
I have used the below cmd lets for silent install and uninstall, but the uninstall is not cleanup properly on next time reinstall the ARP name entry in control panel is not appearing it.
Install:
Execute-Process -Path “$dirFiles\python-3.10.11-amd64.exe” -Parameters “/quiet InstallAllUsers=1 PrependPath=1 Include_test=0” -WindowStyle ‘Hidden’ -ContinueOnError $true
Uninstall:
Execute-Process -Path “$dirFiles\python-3.10.11-amd64.exe” -Parameters “/Uninstall /quiet” -WindowStyle ‘Hidden’ -ContinueOnError $true
Please advise the correct silent switches for complete cleanup and reinstall with ARP name in control panel of windows operating systems.
Those commands should be fine.
I’d suggest capturing the log files (they’ll go to %TEMP%
by default) and seeing if there are any hints.
Also just to let you know, this installer is now deprecated and won’t be fixed or improved, but will be replaced by a new tool. We can try to help figure out how to make it work for you right now, but if it requires changing the installer then we’ll need you to switch onto the new tool first (or switch to another distribution that specifically supports your needs, since the python.org release isn’t really intended for this kind of thing - it’s focused on individual users).
Hi Steve,
Thank you for this setup deprecated information.
Sure, I will check the %TEMP% and found if any logs share you here.
Understood, I will get the confirmation from requestor to proceed with other distribution if they are agreeing.
Thanks a lot for your help!!