In our current BI architecture we have a batch file that turns ON/OFF the SIA when certain conditions are met, or not met, as the case may be. I am trying to get it to work with our 4.1 implementation but it does not seem to work. Can any one tell me what I am doing wrong. this is in the batch file after we determine what we want to do. I have confirmed getting to this point does work. thanks
:Good
::psservice \\<server_host_name> start "crystal report job server"
net start BOE120SIA<server_host_name>
GOTO End
:NoGood
::psservice \\<server_host_name> stop "crystal report job server"
net stop BOE120SIA<server_host_name>
GOTO End
:End