
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2018 03:33 PM
There is a manual / config file for an old Firefox version but this doesn´t work.
I also like to deploy AcrobatReader and other SOftware without any support of a msi file.
I also want to know if it´s possible to add a user role to a static asset group?
I want to give that special user only access to objects which are in that sepcific group.
Thanks in advance,
Felix
- Labels:
-
General Discussion

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2019 01:39 PM
- Copy the Result command of the failed deployment package.
- Use the exact path defined under Deployment\Security options.
- Paste the command into the command prompt of a machine where the deployment failed.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2019 02:39 PM
Esben.D wrote:
Does the bat file work if you do the following:
- Copy the Result command of the failed deployment package.
- Use the exact path defined under Deployment\Security options.
- Paste the command into the command prompt of a machine where the deployment failed.
This method works fine on the client.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2019 05:17 PM
support.ict wrote:Esben.D wrote:
Does the bat file work if you do the following:
- Copy the Result command of the failed deployment package.
- Use the exact path defined under Deployment\Security options.
- Paste the command into the command prompt of a machine where the deployment failed.
This method works fine on the client.
In that case, maybe you should send all the files etc to our support team and let them do a test with it. Maybe it's a Lansweeper issue.
In general, if I want to deploy an exe file I just google the silent install parameters, and use those in the deployment package.
Checking if the software is installed can be done by just targeting your deployment with a report.
Regardless, your method should also work.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2019 01:41 PM
have you tried running a .bat file that copies down the file to a local folder (say c:\temp) then executes it?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2019 01:17 PM
As Felix mentioned, a lot of software manufacturer don´t provide a msi file.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2019 06:05 AM
support.ict wrote:
Does anyone have a solution for this. We have the same issues. On Window 10 build 1809, exe's are not installed. We have wrapped them in a batch file. Launching in Explorer works fine, deploy from Lansweeper failes. Deploying on earlier versions of Windows 10 are OK.
As Felix mentioned, a lot of software manufacturer don´t provide a msi file.
Would need some more information about what your trying to install, what steps / deployment package you are using etc to troubleshoot. *.exe can be anything. Eg I install Java via an exe as that is what they provide and it installs fine.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2019 10:28 AM
CyberCitizen wrote:support.ict wrote:
Does anyone have a solution for this. We have the same issues. On Window 10 build 1809, exe's are not installed. We have wrapped them in a batch file. Launching in Explorer works fine, deploy from Lansweeper failes. Deploying on earlier versions of Windows 10 are OK.
As Felix mentioned, a lot of software manufacturer don´t provide a msi file.
Would need some more information about what your trying to install, what steps / deployment package you are using etc to troubleshoot. *.exe can be anything. Eg I install Java via an exe as that is what they provide and it installs fine.
Ok, this is how we work for the moment (and it worked fine until we've got our first laptop delivered with Windows 10 build 1809).
Lansweeper runs on 1 server, our software files are located on another server. We have (for legacy reasons) for most of the software a batch file with sets some variables, looks in the registry if the software isn't already present and if not installs the software and does some logging. No rocket science involved here.
The deployment package just runs the batch file.
Example of batch file to install the Borland Database Engine (bde.exe)
If you need bde.exe, I can share it via Egnyte, if you can provide an emailadres.
SetLocal
set deployserver=\\{OurDeployServerName}\_SoftwareDeploy
set ProductName=Borland Database Engine Setup
set LogLocation=%DeployServer%\_Install_Logs
IF NOT "%ProgramFiles(x86)%"=="" (goto ARP64) else (goto ARP86)
:ARP64
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432NODE\Microsoft\Windows\CurrentVersion\Uninstall\%ProductName%"
if NOT %errorlevel%==1 (goto End)
:ARP86
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%ProductName%"
if %errorlevel%==1 (goto Deploy) else (goto End)
:Deploy
start /wait %DeployServer%\BorlandBde\bde.exe /S
echo Borland Database Engine ; %date% ; %time% ; Error code %errorlevel% >> %LogLocation%\%computername%.txt
:END
EndLocal
Lansweeper deploy package
<?xml version="1.0" encoding="utf-8"?>
<Package>
<Name>Installer - Borland DBE</Name>
<Description></Description>
<ShutdownOption>0</ShutdownOption>
<ShutdownTime>0</ShutdownTime>
<MaxDuration>300</MaxDuration>
<Rescan>False</Rescan>
<RunMode>1</RunMode>
<Steps>
<Step>
<Nr>1</Nr>
<Name>Install</Name>
<Type>4</Type>
<ReturnCodes>0,1641,3010</ReturnCodes>
<Success>-2</Success>
<Failure>-3</Failure>
<Path>{PackageShare}\BorlandBde\BorlandBDE_GPO_Install.bat</Path>
<Parameters></Parameters>
<MSIParameters></MSIParameters>
<MSIName></MSIName>
<MSIVersion></MSIVersion>
<Command>"{PackageShare}\BorlandBde\BorlandBDE_GPO_Install.bat"</Command>
<EditMode>False</EditMode>
<Conditions />
</Step>
</Steps>
<SoftwareVersion>7.0.151.4</SoftwareVersion>
</Package>

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2018 11:35 AM
As for the permissions, I answered that question here: https://www.lansweeper.com/forum/yaf_postst16802_Asset-Types---allow-admin-of-certain-types-only.aspx

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2018 10:47 AM
