0
我想調度任務以在Win任務調度程序中每週運行perl腳本。在Win任務調度程序中啓動perl腳本
perl update_blastdb.pl --passive --decompress refseq_rna
我如何可以通過上述3個參數:
--passive --decompress refseq_rna
EDIT1: 我寫了一個包含bat文件:
perl腳本手動命令行使用運行@echo off
cd "C:\inetpub\wwwroot\webclient\db\nucleotide"
call "C:\Strawberry\perl\bin\perl.exe" "C:\inetpub\wwwroot\webclient\db\nucleotide\update_blastdb.pl" --passive --decompress gss_annot> C:\perl_out.log 2>&1
我在Windows任務計劃程序中計劃任務以運行bat文件。 首先,當我指定時間運行它時,時間來來去去,任務不運行(狀態:就緒)。 其次,當我通過右鍵單擊任務手動運行任務並單擊運行時,狀態更改爲(運行),但似乎它不運行,因爲我檢查了我創建的錯誤日誌,perl_out.log和發現它沒有創建。
請澄清一下嗎?
編輯3: 當我創建任務爲「基本任務」時,它成功運行。 謝謝
請參見編輯1在我的崗位。 – Alaa