Skip to content

Querying for patch changes

Heath Stewart edited this page Feb 19, 2018 · 1 revision

Files added or updated by a patch

You can determine what files were added or updated in a patch only if you have the target product package available. A patch MSP is basically just a collection of transforms that may apply to an product MSI. Without the target MSI, not enough information is contained within the MSP to know exactly what is updated.

get-msitable File -path product.msi -patch product.msp | where { $_.MSIOperation -ne "None" }
Clone this wiki locally