how to deploy a Microsoft hotfix .msi patch via SCCM software distribution & and not SCCM WSUS.
how to deploy a Microsoft hotfix .msi patch via SCCM software distribution & and not SCCM WSUS.
I will like to deploy a hotfix .msi via SCCM software distribution & advertisment
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
piyushnasa
11 years ago
Posted by:
terebent
11 years ago
If is a msi file you can use next command: msiexec /i patch.msi /qn /norestart
if is a patch (.msp file) u can use next command: msiexec.exe /p "name.MSP" REINSTALL=ALL REINSTALLMODE=omus /qn
- the propertys REINSTALL=ALL and REINSTALLMODE=omus are mandatory because if are not set in the command then the patch will update only the msi file.
Posted by:
jagadeish
11 years ago
Microsoft HotFix Patch in the form of .msi!!!!!!!
Are you sure???? Whether it is .msi or .msp???
Comments:
-
Or .MSU possibly? Don't believe I've ever seen an MSI patch - bretthexum 11 years ago
-
I assume they are talking about deploying this "FixIt" http://support.microsoft.com/kb/2847140
It installs fine with msiexec /qn /norestart /i MicrosoftFixit50992.msi - mmcspadd 11 years ago