From 71b6e352317bdac7355847a1a42a25432ad83dcb Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Mon, 20 May 2019 08:19:01 -0700 Subject: [PATCH] Update installer warning to refer to ADS instead of VS Code (#5540) --- build/win32/code.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/win32/code.iss b/build/win32/code.iss index 76df6ebc39..65ee07aa6f 100644 --- a/build/win32/code.iss +++ b/build/win32/code.iss @@ -133,7 +133,7 @@ begin #if "user" == InstallTarget if not WizardSilent() and IsAdminLoggedOn() then begin - if MsgBox('This User Installer is not meant to be run as an Administrator. If you would like to install VS Code for all users in this system, download the System Installer instead from https://code.visualstudio.com. Are you sure you want to continue?', mbError, MB_OKCANCEL) = IDCANCEL then begin + if MsgBox('This User Installer is not meant to be run as an Administrator. If you would like to install Azure Data Studio for all users in this system, download the System Installer instead from https://docs.microsoft.com/sql/azure-data-studio/download. Are you sure you want to continue?', mbError, MB_OKCANCEL) = IDCANCEL then begin Result := False; end; end;