I'm currently trying to utilise OpenDeploy to pick up some reports on a different server and push them live.
I've got the deployment working fine however I now want to see if I can organise a simple batch file the user can just double click and it will run the deploy for them. Is this even possible or will I run into permissions issues?
I had some progress using this:
net use x: \\servername\OpenDeployNG
x:
cd\bin
iwodcmd start deployname
net use x: /Delete /y
I could run that direct on the server and it worked perfectly but obviously that won't work on a different machine so I changed it to this:
net use x: \\servername\OpenDeployNG
x:
cd\bin
iwodcmd -host servername -port 3434 start deployname
net use x: /Delete /y
Trying to run this from any machine returns "ERROR: Rejecting remote execution attempt..."
Is there some permission I need to set somewhere to allow this? My best guess was perhaps adding something extra to Deploy.cltProxyAllowedHost in the deploy.cfg file but my efforts so far have not done much.