This commit is contained in:
2021-08-10 13:28:34 -04:00
parent 54d75a842a
commit bf709175e3
2 changed files with 5 additions and 3 deletions
+2
View File
@@ -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
+3 -3
View File
@@ -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 = '' }