From bf709175e3cc9ba9b9d87be05d69cd9f497260df Mon Sep 17 00:00:00 2001 From: dyoder Date: Tue, 10 Aug 2021 13:28:34 -0400 Subject: [PATCH] update --- Fix-WindowsTLS.bat | 2 ++ Install-LiquidFilesOutlookAgent.ps1 | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Fix-WindowsTLS.bat b/Fix-WindowsTLS.bat index a9c32c3..b17562f 100644 --- a/Fix-WindowsTLS.bat +++ b/Fix-WindowsTLS.bat @@ -4,6 +4,8 @@ ECHO. REM This will enable TLS 1.2 on Windows Server 2008 SP2, Winows Server 2008 R2, and Windows 7, Windows Embedded / POSReady 2009 REM NOTE: This patch requires KB4019276 to be installed first: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4019276 +REM NOTE: The registry entries in this script were taken directly from Microsoft's article on the subject here: +REM NOTE: https://support.microsoft.com/en-us/topic/update-to-add-support-for-tls-1-1-and-tls-1-2-in-windows-server-2008-sp2-windows-embedded-posready-2009-and-windows-embedded-standard-2009-b6ab553a-fa8f-3f5e-287c-e752eb3ce5f4 REM NOTE: A reboot is required after this script is run. REM Determine whether system is 64-bit or 32-bit diff --git a/Install-LiquidFilesOutlookAgent.ps1 b/Install-LiquidFilesOutlookAgent.ps1 index 781636c..30f6387 100644 --- a/Install-LiquidFilesOutlookAgent.ps1 +++ b/Install-LiquidFilesOutlookAgent.ps1 @@ -2,9 +2,9 @@ $MSIURL = 'https://dev.emberkom.com/emberkom/management-scripts/raw/branch/master/resources/LiquidFiles_Admin_2.0.129.msi' ## Set installer args -If ( $URL ) { - LogMsg "LiquidFiles target server: ${URL}" - $INSTALLER_ARGS = "REGKEYSCRIPT=""BaseUrl=${URL};""" +If ( $LFHost ) { + LogMsg "LiquidFiles target server: ${LFHost}" + $INSTALLER_ARGS = "REGKEYSCRIPT=""BaseUrl=${LFHost};""" } Else { $INSTALLER_ARGS = '' }