Add/remove programs in Windows XP with Python script [closed]

让人想犯罪 __ 提交于 2019-11-28 14:41:12

Are you installing or uninstalling?

Installing:

Easy way: subprocess.Popen the installer.

Nearly-as-easy way: subprocess.Popen the installer, with some Windows hackery so that the user doesn't have to click anything.

Uninstalling:

As above.

Hard way: work out the files changed on the computer and revert them manually.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!