批处理bat根据星期启动程序
来源:本站原创|时间:2022-11-25|栏目:DOS/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 /min "OUTLOOK" "Outlook" start /min "金山词霸" "D:\Start\金山词霸2007" goto :eof
您可能感兴趣的文章
- 01-10后台运行bat定时器程序示例分享
- 01-10使用批处理实现软件的自动安装以安装搜狗拼音为例
- 01-10通过批处理修改DNS的代码(推荐)
- 01-10windows使用批处理发布web到tomcat并启动tomcat脚本分享
- 01-10再谈DOS批处理下格式化日期字符串的三种方法(详解)
- 01-10用批处理一键安装两种扩展名的Windows系统补丁
- 01-10ip地址切换批处理脚本分享
- 01-10Windows设置开机自启动bat脚本
- 01-10批处理杨辉三角效果实现代码
- 01-10将批处理文件注册成服务在系统启动的时候自动调用