Posts

Showing posts from May, 2012

App-v Error code: 4605F3-18305104-0000180C

Issue:- Attempting to upgrade a package in Microsoft Application Virtualization (App-V) fails with error 04-0000180C: sftmime add package:"TEST" /manifest " " /overrideUrl " " The Application Virtualization Client could not complete the operation. The operation failed because the GUID in the package manifest matches a package name other than the one specified. Verify the package name, and then try again. Error code: 4605F3-18305104-0000180C Solution Generic App-v Error code: 4605F3-18305104-0000180C Cause This error indicates that there is a mismatch between the package name of the original package and that of the upgraded package. This results in the App-V client incorrectly determining that there is a duplicate GUID, when the PackageName for the two packages is same and the PackageGUID is different or viceversa. To successfully upgrade a package, both of the following conditions must be true: 1. The package GUID must be the same (the Versio

How to uninstall patch

Uninstalling a patch using MSIPATCHREMOVE on a command line:- Msiexec /I MSIPATCHREMOVE= /qb Example:- Msiexec /I {0C9840E7-7F0B-C648-10F0-4641926FE463} MSIPATCHREMOVE={EB8C947C-78B2-85A0-644D-86CEEF8E07C0} /qb - Uninstalling a patch using the standard command line options:- Msiexec /package /uninstall /passive Note :- The /passive standard option is not an exact equivalent of the Windows Installer /qb option. This will uninstall only patch applied on any product.