commit 3fda0610bab37d44d8414f376806474de2db6989 parent f54ab06d55c77915ad1fd195eb38a4ccc1ec98fb Author: JohnMcPMS <johnmcp@microsoft.com> Date: Tue, 7 Jul 2020 22:29:22 -0700 Rephrase due to policheck (#487) Diffstat:
| M | src/AppInstallerCLICore/Workflows/ShellExecuteInstallerHandler.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/AppInstallerCLICore/Workflows/ShellExecuteInstallerHandler.cpp b/src/AppInstallerCLICore/Workflows/ShellExecuteInstallerHandler.cpp @@ -22,7 +22,7 @@ namespace AppInstaller::CLI::Workflow execInfo.lpFile = filePath.c_str(); std::wstring argsUtf16 = Utility::ConvertToUTF16(args); execInfo.lpParameters = argsUtf16.c_str(); - // Some installers force UI. Setting to SW_HIDE will hide installer UI and installation will hang forever. + // Some installers force UI. Setting to SW_HIDE will hide installer UI and installation will never complete. // Verified setting to SW_SHOW does not hurt silent mode since no UI will be shown. execInfo.nShow = SW_SHOW; if (!ShellExecuteExW(&execInfo) || !execInfo.hProcess)