bat根据星期启动程序
原来公司里的由于每次开机时启动的程序比较多,所以打算使用批处理程序,这里只列举了部分。在每周一到周五的时候,开机则启动指定的应用程序,如果是周末的两天则不启动任何程序,所以做了这个脚本。你如果需要,根据自己的情况自行修改程序。
@echo off set no=%date:~13,14% if %no%==一 goto :open if %no%==二 goto :open if %no%==三 goto :open if %no%==四 goto :open if %no%==五 goto :open goto :eof :open start "VPC" "E:\Program Files\Microsoft Virtual PC\Virtual PC.exe" start "MSN" "C:\Program Files\Windows Live\Messenger\msnmsgr.exe" ::start "QQ" "D:\Start\腾讯QQ" ::start "sms" "D:\Start\Fetion 2008.lnk"
::start "ie" "C:\Program Files\Internet Explorer\IEXPLORE.EXE"
::start "ie" "iexplore"
::start "ie" "www.baidu.com"
start /min "OUTLOOK" "Outlook" start /min "金山词霸" "D:\Start\金山词霸2007" goto :eof
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/3575699.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!