msiexec: Add /unreg as an alias for /z.

oldstable
Austin English 2011-02-12 21:05:20 -08:00 committed by Alexandre Julliard
parent 3c5f46c962
commit b827ab329b
1 changed files with 2 additions and 1 deletions

View File

@ -563,7 +563,8 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
{
FunctionRegServer = TRUE;
}
else if (msi_option_equal(argvW[i], "unregserver") || msi_option_equal(argvW[i], "unregister"))
else if (msi_option_equal(argvW[i], "unregserver") || msi_option_equal(argvW[i], "unregister")
|| msi_option_equal(argvW[i], "unreg"))
{
FunctionUnregServer = TRUE;
}