Posted on 周三 29 九月 2021

Install and Uninstall Using Package Model through SCCM


I’ll use Firefox for this lab.

We’ll also need install command and uninstall command. Since it’s an msi file, they are:

  • Install command: msiexec.exe /i “Firefox-86.0-en-US.msi” /q

  • Uninstall command: msiexec.exe /x “Firefox-86.0-en-US.msi” /q

/i stands for install, /q stands for silent, while /x is uninstall.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

The execmgr.log on client computer:

Records details about packages and task sequences that run on the client.

19

20

Uninstall:

21