From cf9659cc169be737dbedbc0c5fb8d2a8d784987e Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Fri, 26 Jun 2015 13:17:55 -0600 Subject: [PATCH] Print a message on success --- src/Setup/winmain.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Setup/winmain.cpp b/src/Setup/winmain.cpp index 8ed099fb4..43933a213 100644 --- a/src/Setup/winmain.cpp +++ b/src/Setup/winmain.cpp @@ -6,6 +6,7 @@ #include "FxHelper.h" #include "UpdateRunner.h" #include "MachineInstaller.h" +#include CAppModule _Module; @@ -46,6 +47,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE hInstance, // Make sure update.exe gets silent if (explicitMachineInstall) { wcscat(lpCmdLine, L" --silent"); + printf("Machine-wide installation was successful! Users will see the app once they log out / log in again.\n"); } }