Let me preface this post with 'I'm new to LANSweeper and software deployment in general' so please point me in the right direction if my route is off track.
For this deployment, I have 2 questions
-Why does my deployment timeout even after the install is successful? Package timeout reached. Stopping deployment executable: Successful. Timeout: (1500sec). Credential: (domain\username). ShareCredential: (domain\username).
-When the computer is idle (No users are logged onto the workstation) The installation fails? Result: Deployment ended: Unknown error (0x426a). Stop(Failure). Credential: (domain\Username). ShareCredential: (domain\Username). Command: "C:\o365\Default.bat"
We are deploying O365 via lansweeper. Because the installation files are 1.6 GB in size the decision was made to copy files to the workstation and run the installation locally. We are using a .bat to call the setup.exe /configure default.xml This process works when I run the .bat manually, and it partially works when I deploy the package from lansweeper (ie. the software installs, but lansweeper reports a timeout). When I check to see if all of the software is usable, it's good to go. This is a decent size deployment and it would be really helpful if lansweeper reported success or failure correctly. Is there something I am missing that is causing this deployment to fail, seems like something is prompting the user, but because the display level is set to 'none' I don't see it. I've tried with with display level as 'Full' and it prompts the user to click close to end the installation, but I would expect 'None' bypass that requirement.
bat file contents
@echo off
C:\O365\setup.exe /configure C:\O365\default.xml
EXIT
xml file contents
<Configuration>
<Add SourcePath="C:\O365"
OfficeClientEdition="32"
Channel="Broad">
<Product ID="O365ProPlusRetail" >
<Language ID="en-us" />
<ExcludeApp ID="Access" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="OneDrive" />
</Product>
</Add>
<Updates Enabled="FALSE"
UpdatePath=""
Channel="FirstReleaseDeferred" />
<Display Level="none"
AcceptEULA="TRUE" />
</Configuration>
LanSweep 'Installer' Command (I've also tried 'Command' and 'Script')
"C:\o365\Default.bat"
Any thoughts would be helpful. TIA