‎02-27-2019 02:31 PM - last edited on ‎07-04-2023 04:53 PM by ErikT
Due to the recent vulnerability, I've created a quick deployment package to update or install Winrar to the latest version.
Please note that this is a simple install and I haven't tested it with a licensed version.
‎02-28-2019 09:04 AM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysAssetTypes.AssetTypename As AssetType,
tblAssets.Username,
tblAssets.Userdomain,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher,
tblSoftware.Lastchanged
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblState On tblState.State = tblAssetCustom.State
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where (tblSoftwareUni.softwareName Like '%winrar%' And tblSoftware.softwareVersion <
'5.70') And tblState.Statename = 'Active'
Order By tblAssets.IPAddress Desc
‎02-27-2019 09:06 PM
‎02-28-2019 05:06 PM
TheITGuy wrote:
I would not use the logic in this package.
32 bit winrar can be installed on 64 bit OS's.
What i did was check for the location of the existing install C:\program file, install 64 bit to upgrade, C:\Program Files (x86) , install the 32 bit to upgrade.
It may work just fine, i did not test to see if a 64 bit installer would overwrite and upgrade the 32 installation, if it does , then this logic would be ok.
‎02-27-2019 04:49 PM
‎02-27-2019 05:10 PM
yayitazale wrote:
I'm getting an error:
Result: Deployment ended: Incorrect function. Stop(Failure). Credential: (XXXX\admin). ShareCredential: (XXXX). Command: "\\my-server\DefaultPackageShare$\Installer\winrar-x64-570.exe" /s
and also without the /s
Result: Deployment ended: Incorrect function. Stop(Failure). Credential: (XXXX\admin). ShareCredential: (XXXX). Command: "\\my-server\DefaultPackageShare$\Installer\winrar-x64-570.exe"
‎02-27-2019 05:11 PM
OllieM wrote:
There's a typo in the 64bit command, there should be an 's' on the end of installer like so:
"{PackageShare}\Installers\winrar-x64-570.exe" /s
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now