diff --git a/Get-DisplayInformation.ps1 b/Get-DisplayInformation.ps1 new file mode 100644 index 0000000..b842f41 --- /dev/null +++ b/Get-DisplayInformation.ps1 @@ -0,0 +1 @@ +Get-WmiObject Win32_VideoController | Select Caption, CurrentHorizontalResolution, CurrentVerticalResolution | Format-Table \ No newline at end of file diff --git a/Install-LiquidFilesOutlookAgent.ps1 b/Install-LiquidFilesOutlookAgent.ps1 index 1b73896..781636c 100644 --- a/Install-LiquidFilesOutlookAgent.ps1 +++ b/Install-LiquidFilesOutlookAgent.ps1 @@ -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 = '' }