2012-02-09 48 views
0

我想用Cygwin的cron啓動記事本。我可以從cron運行腳本,所以我知道cron正在工作。但是,當我想開始記事本時,它不會在前臺啓動程序。我試圖以各種方式在crontab上啓動它,但沒有成功。這裏是cronevents:用Cygwin的cron啓動記事本

CMD (C:\windows\notepad.exe) 
CMD (notepad.exe &) 
CMD (C:\cygwin\bin\bash.exe -l -c "C:\windows\notepad.exe &") 
CMD (C:\cygwin\bin\bash.exe -l -c "C:\windows\notepad.exe") 
CMD (C:\cygwin\bin\bash.exe -l -c "C:\windows\notepad.exe" &) 
CMD (C:\cygwin\bin\bash.exe -l -c notepad &) 
CMD (C:\cygwin\bin\bash.exe -l -c C:\windows\notepad.exe &) 
CMD (notepad &^I) 
CMD (notepad) 

這裏是可將當前的crontab -l樣子:

$ crontab -l 
# DO NOT EDIT THIS FILE - edit the master and reinstall. 
# (/tmp/crontab.KhwbuL8Q3t installed on Thu Feb 9 08:56:32 2012) 
# (Cron version V5.0 -- $Id: crontab.c,v 1.12 2004/01/23 18:56:42 vixie Exp $) 
#My Crontab file 


*/1 * * * *  notepad 

任何幫助,將不勝感激。

謝謝,

+0

爲什麼要從cron啓動記事本? – 2012-02-09 17:33:52

回答

0

你可以嘗試下面的cron命令嗎?

cmd /C "C:\windows\notepad.exe"