A computer runs Windows 8. You install an application by running an .msi file.
You need to apply a patch to the application.
Which command should you run?

A.
dism /Online /add-package:C:\MyPatch.msp
B.
dism /get-AppPatches /get-PackageInfo:C:\MyPatch.msp
C.
msiexec /x “C:\MyPatch.msp”
D.
msiexec/p “C:\MyPatch.msp”
The answer is A – dism /Online /add-package:C:\MyPatch.msp
MSP: Microsoft Installer Patch.
Incorrect answers: B: /get-AppPatches is an uknown option.
0
0
The Answer is True…. (“D” is true).
msiexec.exe [/p][/update][/uninstall[/package]]
/p – install a MSP patch. When installing a patch silently, you need to set REINSTALLMODE property to “ecmus” and REINSTALL to “ALL”. Otherwise the patch will simply update the MSI cached on the target machine.
0
0
Answer is D.
A. would need the following format: DISM.exe /Online /Add-Package /PackagePath:c:\file.msu
0
0
Applies a patch. To apply a patch to an installed administrative image you must combine the following options:
/p [;patchPackage2…] /a
0
0