A computer runs Windows 8.1. You install an application by running an .msi file.
You need to apply a patch to the application.
Which command should you run?
A.
msiexec/x “C:\MyPatch.msp”
B.
dism /get-AppPatches /get-PackageInfo:C:\MyPatch.msp
C.
dism/Online/add-package:C:\MyPatch.msp
D.
msiexec/p “C:\MyPatch.msp”
Explanation:
C)
would need the following format: DISM.exe /Online /Add-Package /PackagePath:c:\file.msu / correct
answer