(imported comment written by RobertDiRosato)
Thanks for the response.
Let me try to explain this a little better.
BigFix Has a software distribution wizard
This wizard in the documentation is said to launch exe, bat, msi files
I would like to use this wizard to deploy pre-existing packages.
It works for my exe files with switches to my custom xml files no problem…
For a bat file but it will not execute the bat commands…
Here is all I want to do through SWD…
Upload 2 folders & 1 file
From All Content > Wizards > All Wizards > Windows Software Distribution Wizard
(Here is all the package will contain)
32bit <- Folder (32bit files)
64bit <- Folder (64bit Files)
Setup.bat <- File (Code to install and determine bit)
So I want to upload the above…
have it create a task with all the files…
and when that task is deployed it executes the code in the bat file…
IS IT POSSIBLE TO LAUNCH A BAT THIS WAY IF SO WHAT IS THE SYNTANX I WOULD PLACE IN THE ATTACHED SCREENSHOT
Also again here is the data that the bat file contains… it’s very simple…
In my other packages the bat files are not so simple…
If exist C:“Program Files (x86)” GOTO 64BIT
if not exist C:“Program Files (x86)” GOTO 32BIT
:64BIT
64\LyncSetup.exe /install /silent
GOTO ENDSCRIPT
:32BIT
32\LyncSetup.exe /install /silent
GOTO ENDSCRIPT
:ENDSCRIPT