This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hap
Recipients hap
Date 2020-07-21.10:39:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595327997.84.0.414162156618.issue41358@roundup.psfhosted.org>
In-reply-to
Content
Trying to create a command line keeping the following in mind, and my script is python-3.8.4.exe" /quiet InstallLauncherAllUsers=0 Include_pip=1 Include_tcltk=1 Include_test=1 PrependPath=1
1. Python installs in user profile
2. Install pip as a part of installation
All good here. 
So, my script installs python and also installs Python Launcher.

So far so good!

The problem is, when uninstall python i use command "python-3.8.4.exe" /quiet /uninstall, it does uninstall python, but this does not uninstall Python Launcher. Therefore, i call msiexec.exe /x {339192BE-2520-4C34-89DF-81CF98EB7E6C} /qn+ and it does remove all components from %localappdata%\Package Cache folder, except that it still keeps launcher.msi (588kb) and also entry in appwiz.cpl (around 7.15 MB).

What i am trying to achieve is,
1. If user wants to uninstall Python, it should uninstall python and python launcher because i don't want to leave away any installer files which an contribute to my system space.

I have gone through many links with failed help. Any suggestion to save my 7.2 MB space is greatly appreciated.
History
Date User Action Args
2020-07-21 10:39:57hapsetrecipients: + hap
2020-07-21 10:39:57hapsetmessageid: <1595327997.84.0.414162156618.issue41358@roundup.psfhosted.org>
2020-07-21 10:39:57haplinkissue41358 messages
2020-07-21 10:39:57hapcreate