.bat script doesn't work by using window scheduler
- by user332640
i created a .bat script to perform daily folder compression. it is working fine when i double click the .bat file. However, it doesnt work when i include it in window scheduler.
Below is the script:
rem ****************************
rem ** To create back up file **
rem ****************************
"C:\Program Files\WinZip\WINZIP32.EXE" -a -r -p "E:\Backup\Daily\sst.zip" "P:\SST\*.*"
When i run it via window scheduler, the status is always "running" but nothing is generated. Can someone explain the situation?