开发者

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

开发者 https://www.devze.com 2023-01-14 08:47 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

Closed 9 years ago.

  • Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
  • This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question 开发者_JS百科

I would like to add add/programs like adobe acrobat reader and other application in windows XP using Python script. Kindly looking for some help.

Thanks in advance!

Everest.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消