Background:
I'm trying to create a deployment for Abaqus CAE. Everything installs fine, except for the CAE portion. The command works when I run it locally on a client and remotely through psexec. The command I'm using:
\\server\path\to\exe --silent \\server\path\to\install_options.xml
Since that hasn't been working, I want to try it as a batch file. The batch file is literally the command:
@echo off
\\server\path\to\exe --silent \\server\path\to\install_options.xml
It works on clients and through psexec, but I'm not sure if I'm deploying it correctly. I've tried several things, but I believe this is what I want. Here's what I have:
Step 1: Copy cae.bat
Action: Command
copy "\\server\path\to\cae.bat"
"c:\cae.bat"
Step 2: Run cae.bat
Action: Script
c:\cae.bat
The error I get in Lansweeper:
Result: Package timeout reached. Stopping deployment executable: Successful. Timeout: (900sec). Credential: (domain\admin). ShareCredential: (admin).
Any input would be appreciated.