diff options
Diffstat (limited to '')
-rw-r--r-- | src/burn/engine/bundlepackageengine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/burn/engine/bundlepackageengine.cpp b/src/burn/engine/bundlepackageengine.cpp index 612da389..db433918 100644 --- a/src/burn/engine/bundlepackageengine.cpp +++ b/src/burn/engine/bundlepackageengine.cpp | |||
@@ -817,7 +817,7 @@ static HRESULT ExecuteBundle( | |||
817 | 817 | ||
818 | if (pPackage->fPerMachine) | 818 | if (pPackage->fPerMachine) |
819 | { | 819 | { |
820 | hr = ApprovedExesVerifySecureLocation(pCache, pVariables, sczExecutablePath); | 820 | hr = ApprovedExesVerifySecureLocation(pCache, pVariables, sczExecutablePath, argcArp - 1, (argcArp > 1) ? const_cast<LPCWSTR*>(argvArp + 1) : NULL); |
821 | ExitOnFailure(hr, "Failed to verify the QuietUninstallString executable path is in a secure location: %ls", sczExecutablePath); | 821 | ExitOnFailure(hr, "Failed to verify the QuietUninstallString executable path is in a secure location: %ls", sczExecutablePath); |
822 | if (S_FALSE == hr) | 822 | if (S_FALSE == hr) |
823 | { | 823 | { |
@@ -940,7 +940,7 @@ static HRESULT ExecuteBundle( | |||
940 | 940 | ||
941 | if (wzRelationTypeCommandLine) | 941 | if (wzRelationTypeCommandLine) |
942 | { | 942 | { |
943 | hr = StrAllocConcatFormatted(&sczBaseCommand, L" -%ls", wzRelationTypeCommandLine); | 943 | hr = StrAllocConcatFormatted(&sczBaseCommand, L" -quiet -%ls", wzRelationTypeCommandLine); |
944 | ExitOnFailure(hr, "Failed to append relation type argument."); | 944 | ExitOnFailure(hr, "Failed to append relation type argument."); |
945 | } | 945 | } |
946 | 946 | ||