Hi,
i need to run below script once in a day say 8:00 am through DOS(having issues with windows scheduler)cmd "C:\Program Files\QlikView\qv.exe" /r /nosecurity "D:\QlikView\Book-Bill\Book-Bill.qvw"
is it possible in DOS in Windows server 2008?
Thanks in advance.

You might be confusing the parser with obscure quote placement.
cmd "C:\Program Files\QlikView\qv.exe" /r /nosecurity "D:\QlikView\Book-Bill\Book-Bill.qvw"I would try this:
cmd "C:\Program Files\QlikView\qv.exe /r /nosecurity D:\QlikView\Book-Bill\Book-Bill.qvw"and, with "at", I found that absolute paths are very critical, at least with win-XP. No implied or relative paths will work.
Hi Nbrane,
thanks for your quick reply.
if i take off double quotes, CMD is not recognising /nosecurity command.
naveenr: is it possible in DOS in Windows server 2008?
That would require DOS, which has never been present in the Windows server line.naveenr: having issues with windows scheduler
Such as?My suggestion?
"C:\Program Files\QlikView\qv.exe" /r /nosecurity "D:\QlikView\Book-Bill\Book-Bill.qvw"
