Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I'm new to qlikview. I would like to create simple bat script to stop/start/restart Qlikview services from windows command prompt instead managing it by "services.msc".
OS: Windows 2012 R2
Qlikview version: 11.20 SR12.
Appreciate your ideas.
--
Regards,
Muthukrishnan. B
Hi,
This will do the trick
REM SCRIPT STARTS HERE
@echo off
REM ---------------------------
REM This batch will stop the QlikView Services, and restart the services again.
net stop "QlikView Webserver" Use W3SVC for IIS
net stop "QlikView Directory Service Connector"
net stop "QlikView Distribution Service"
net stop "QlikView Management Service"
net stop "QlikView Server"
timeout /t 30
net start "QlikView Server"
net start "QlikView Directory Service Connector"
net start "QlikView Distribution Service"
net start "QlikView Management Service"
net start "QlikView Webserver" Use W3SVC for IIS
REM SCRIPT ENDS HERE
See this, good luck
Fernando