
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-01-2016 04:24 PM
I created a simple one line deployment package to run a command remotly on a computer in our AD.
The command runs and the program starts fine, but a blank terminal screen is left on the users screen running remotedeployment64.
I gather that for some reason the deployment package does not finish and hangs even though it has completed its only step.
Any ideas?, I need to runs this command on many users, and I dont want the "what is this black box on the screen" phone calls 😄
Here is the step:
-<Step>
<Nr>1</Nr>
<Name>run Coredata</Name>
<Type>2</Type>
<ReturnCodes>0,1641,3010</ReturnCodes>
<Success>-2</Success>
<Failure>-3</Failure>
<Path/>
<Parameters/>
<MSIParameters/>
<MSIName/>
<MSIVersion/>
<Command>"C:\Program Files\Azazo\CoreData Desktop\4.2.4.0\CoreDataDesktop.exe"</Command>
<EditMode>False</EditMode>
<Conditions/>
</Step>
wr,
Brynjar
The command runs and the program starts fine, but a blank terminal screen is left on the users screen running remotedeployment64.
I gather that for some reason the deployment package does not finish and hangs even though it has completed its only step.
Any ideas?, I need to runs this command on many users, and I dont want the "what is this black box on the screen" phone calls 😄
Here is the step:
-<Step>
<Nr>1</Nr>
<Name>run Coredata</Name>
<Type>2</Type>
<ReturnCodes>0,1641,3010</ReturnCodes>
<Success>-2</Success>
<Failure>-3</Failure>
<Path/>
<Parameters/>
<MSIParameters/>
<MSIName/>
<MSIVersion/>
<Command>"C:\Program Files\Azazo\CoreData Desktop\4.2.4.0\CoreDataDesktop.exe"</Command>
<EditMode>False</EditMode>
<Conditions/>
</Step>
wr,
Brynjar
Solved! Go to Solution.
Labels:
- Labels:
-
General Discussion
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2016 04:08 AM
Feels like the deployment is waiting... try to call the application with the START command
http://ss64.com/nt/start.html
http://ss64.com/nt/start.html
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-06-2016 10:30 AM
Thank you for your response. This helped me run the command at least almost silently, a command prompt windows pops up for a split second, but we can live with that 🙂
For informational purposes, this is how the command runs in the deployment package
start "run" "C:\Program Files\Azazo\CoreData Desktop\4.2.3.0\CoreDataDesktop.exe" /MIN
For informational purposes, this is how the command runs in the deployment package
start "run" "C:\Program Files\Azazo\CoreData Desktop\4.2.3.0\CoreDataDesktop.exe" /MIN

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2016 04:08 AM
Feels like the deployment is waiting... try to call the application with the START command
http://ss64.com/nt/start.html
http://ss64.com/nt/start.html
