‎03-03-2019 04:53 AM
‎04-02-2019 08:21 AM
‎03-28-2019 12:59 AM
‎03-26-2019 01:14 PM
‎03-26-2019 07:33 AM
‎03-26-2019 07:54 AM
CyberCitizen wrote:
Does your Scanning Credentials account have access to that package share location?
At this stage I think I might need to do a screen share with you to see what is happening etc. Did you have access to something like TeamViewer or Discord, can do a screenshare and work through it together etc.
‎03-28-2019 12:31 AM
nomadzer0se7en wrote:
Hi! i think i already got the problem about the location of the installer issue, i just double check my Default Share path on the security options and i notice that i have a back slash "\" on the end of it i tried to remove it and try again the deployment and after that the script works! Thanks for your help!! i attached a screenshot below that status of the intall logs...
JacobH wrote:
Dang Cyber that's a lot of help there - thanks for doing that.
For me, unless the package is huge, or the LAN pipe is small, I generally avoid the packageshare, and hard-code with an IP address... since I don't run many simultaneous deployments, and in case the target computer has issues with DNS. That's just me though.
If I do run with packageshare, and it doesn't work, I generally hard-code with IP address to troubleshoot.
‎03-25-2019 12:48 AM
<?xml version="1.0" encoding="utf-8"?>
<Package>
<Name>DEV.APP.WinRAR.v5.7</Name>
<Description>Download the 5.7 installer file here: https://www.rarlab.com/download.htm</Description>
<ShutdownOption>0</ShutdownOption>
<ShutdownTime>0</ShutdownTime>
<MaxDuration>900</MaxDuration>
<Rescan>False</Rescan>
<RunMode>2</RunMode>
<Steps>
<Step>
<Nr>1</Nr>
<Name>Check Windows Architecture</Name>
<Type>5</Type>
<ReturnCodes></ReturnCodes>
<Success>2</Success>
<Failure>3</Failure>
<Path></Path>
<Parameters></Parameters>
<MSIParameters></MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command></Command>
<EditMode>False</EditMode>
<Conditions>
<Condition>
<Type>3</Type>
<SpecOne></SpecOne>
<SpecTwo></SpecTwo>
<Operator>6</Operator>
<Value></Value>
</Condition>
</Conditions>
</Step>
<Step>
<Nr>2</Nr>
<Name>Check For 64bit Installer</Name>
<Type>5</Type>
<ReturnCodes></ReturnCodes>
<Success>4</Success>
<Failure>-3</Failure>
<Path></Path>
<Parameters></Parameters>
<MSIParameters></MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command></Command>
<EditMode>False</EditMode>
<Conditions>
<Condition>
<Type>1</Type>
<SpecOne>{PackageShare}\PackageTesting </SpecOne>
<SpecTwo>winrar-x64-570.exe</SpecTwo>
<Operator>1</Operator>
<Value></Value>
</Condition>
</Conditions>
</Step>
<Step>
<Nr>3</Nr>
<Name>Check For 32Bit Installer</Name>
<Type>5</Type>
<ReturnCodes></ReturnCodes>
<Success>5</Success>
<Failure>-3</Failure>
<Path></Path>
<Parameters></Parameters>
<MSIParameters></MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command></Command>
<EditMode>False</EditMode>
<Conditions>
<Condition>
<Type>1</Type>
<SpecOne>{PackageShare}\PackageTesting </SpecOne>
<SpecTwo>wrar570.exe</SpecTwo>
<Operator>1</Operator>
<Value></Value>
</Condition>
</Conditions>
</Step>
<Step>
<Nr>4</Nr>
<Name>Install x64</Name>
<Type>1</Type>
<ReturnCodes>0,1641,3010</ReturnCodes>
<Success>-2</Success>
<Failure>-3</Failure>
<Path>{PackageShare}\PackageTesting\winrar-x64-570.exe </Path>
<Parameters>/S</Parameters>
<MSIParameters>/i /qn /norestart</MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command>"{PackageShare}\PackageTesting\winrar-x64-570.exe" /S </Command>
<EditMode>False</EditMode>
<Conditions />
</Step>
<Step>
<Nr>5</Nr>
<Name>Install x86</Name>
<Type>1</Type>
<ReturnCodes>0,1641,3010</ReturnCodes>
<Success>-2</Success>
<Failure>-3</Failure>
<Path>{PackageShare}\PackageTesting\wrar570.exe </Path>
<Parameters>/S</Parameters>
<MSIParameters>/i /qn /norestart</MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command>"{PackageShare}\PackageTesting\wrar570.exe" /S </Command>
<EditMode>False</EditMode>
<Conditions />
</Step>
</Steps>
<SoftwareVersion>7.0.110.2</SoftwareVersion>
</Package>
‎03-25-2019 07:46 AM
CyberCitizen wrote:
Thanks for that, first things first. I am unsure why you are checking for the locally installed version, from what I can see that check isn't doing anything different than the OS Architecture Check. It is only checking if it has been installed previously, but isn't serving any purpose from what I can see unless you are wanting to call an uninstaller first.
Second, your Install command for the 64bit is calling /sAll EULA_ACCEPT=YES whereas WinRAR only has one silent install command /S.
From what I can see /sAll EULA_ACCEPT=YES relates to an Adobe install. Perhaps copied an existing package.
Here is the testing of your package vs mine.
Below is the code from the XML file which is what I would use to install the package.
Note you will need to change the package share path to your WinRAR install files, as I have installed mine in a different location to the default installers.<?xml version="1.0" encoding="utf-8"?>
<Package>
<Name>DEV.APP.WinRAR.v5.7</Name>
<Description>Download the 5.7 installer file here: https://www.rarlab.com/download.htm</Description>
<ShutdownOption>0</ShutdownOption>
<ShutdownTime>0</ShutdownTime>
<MaxDuration>900</MaxDuration>
<Rescan>False</Rescan>
<RunMode>2</RunMode>
<Steps>
<Step>
<Nr>1</Nr>
<Name>Check Windows Architecture</Name>
<Type>5</Type>
<ReturnCodes></ReturnCodes>
<Success>2</Success>
<Failure>3</Failure>
<Path></Path>
<Parameters></Parameters>
<MSIParameters></MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command></Command>
<EditMode>False</EditMode>
<Conditions>
<Condition>
<Type>3</Type>
<SpecOne></SpecOne>
<SpecTwo></SpecTwo>
<Operator>6</Operator>
<Value></Value>
</Condition>
</Conditions>
</Step>
<Step>
<Nr>2</Nr>
<Name>Check For 64bit Installer</Name>
<Type>5</Type>
<ReturnCodes></ReturnCodes>
<Success>4</Success>
<Failure>-3</Failure>
<Path></Path>
<Parameters></Parameters>
<MSIParameters></MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command></Command>
<EditMode>False</EditMode>
<Conditions>
<Condition>
<Type>1</Type>
<SpecOne>{PackageShare}\PackageTesting </SpecOne>
<SpecTwo>winrar-x64-570.exe</SpecTwo>
<Operator>1</Operator>
<Value></Value>
</Condition>
</Conditions>
</Step>
<Step>
<Nr>3</Nr>
<Name>Check For 32Bit Installer</Name>
<Type>5</Type>
<ReturnCodes></ReturnCodes>
<Success>5</Success>
<Failure>-3</Failure>
<Path></Path>
<Parameters></Parameters>
<MSIParameters></MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command></Command>
<EditMode>False</EditMode>
<Conditions>
<Condition>
<Type>1</Type>
<SpecOne>{PackageShare}\PackageTesting </SpecOne>
<SpecTwo>wrar570.exe</SpecTwo>
<Operator>1</Operator>
<Value></Value>
</Condition>
</Conditions>
</Step>
<Step>
<Nr>4</Nr>
<Name>Install x64</Name>
<Type>1</Type>
<ReturnCodes>0,1641,3010</ReturnCodes>
<Success>-2</Success>
<Failure>-3</Failure>
<Path>{PackageShare}\PackageTesting\winrar-x64-570.exe </Path>
<Parameters>/S</Parameters>
<MSIParameters>/i /qn /norestart</MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command>"{PackageShare}\PackageTesting\winrar-x64-570.exe" /S </Command>
<EditMode>False</EditMode>
<Conditions />
</Step>
<Step>
<Nr>5</Nr>
<Name>Install x86</Name>
<Type>1</Type>
<ReturnCodes>0,1641,3010</ReturnCodes>
<Success>-2</Success>
<Failure>-3</Failure>
<Path>{PackageShare}\PackageTesting\wrar570.exe </Path>
<Parameters>/S</Parameters>
<MSIParameters>/i /qn /norestart</MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command>"{PackageShare}\PackageTesting\wrar570.exe" /S </Command>
<EditMode>False</EditMode>
<Conditions />
</Step>
</Steps>
<SoftwareVersion>7.0.110.2</SoftwareVersion>
</Package>
‎03-26-2019 12:30 AM
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now