remove parameter input in Install-LiquidFileOutlookAgent.ps1

added Get-DisplayInformation.ps1
This commit is contained in:
2021-07-27 11:29:37 -04:00
parent cad054685a
commit 08696b84ef
2 changed files with 3 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
Get-WmiObject Win32_VideoController | Select Caption, CurrentHorizontalResolution, CurrentVerticalResolution | Format-Table
+2 -4
View File
@@ -1,12 +1,10 @@
param([string]$URL)
## Path to the MSI installer
## Path to the MSI installer
$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};`""
$INSTALLER_ARGS = "REGKEYSCRIPT=""BaseUrl=${URL};"""
}
Else { $INSTALLER_ARGS = '' }