How to start a batch file minimized with task scheduler in Windows 8? - %comspec% method not working anymore after Windows 7

前端 未结 6 1600
再見小時候
再見小時候 2021-02-01 14:45

After Windows XP, I always use the trick below to start batch files minimized with Windows Task Manager.

From http://www.pcreview.co.uk/forums/running-bat-files-minimize

6条回答
  •  青春惊慌失措
    2021-02-01 15:40

    The start command needs the leading "" quotes to disable the title feature. Try scheduling this:

    %comspec% /c start "" /min "C:\Scripts\Destination_inbound_ftp5.bat"
    

提交回复
热议问题