常用的bat脚本案例
时间: 2024-08-14 16:09:12 浏览: 51
BAT批处理脚本-访问共享.zip
批处理脚本,也称为BAT文件,是Windows操作系统下的一种简单文本文件,用于自动化执行一系列命令或操作。以下是一些常见的BAT脚本案例:
1. **启动/关闭程序**:例如,创建一个bat文件来自动打开浏览器、播放音乐软件或关机重启等。
```batch
start notepad.exe
start "My Program" explorer.exe C:\path\to\program.exe
shutdown /s /t 0
```
2. **文件管理**:比如复制、移动、删除文件,或者批量更改文件名。
```batch
copy file1.txt file2.txt
move *.txt new_directory
del *.log /f
ren old_filename* new_filename.*
```
3. **系统维护**:如清理临时文件、磁盘碎片整理、更新病毒库等。
```batch
del %temp%\*.*
cleanmgr /sagerun:1
echo off > nul & attrib +h +r +s "%SystemRoot%\System32\config\system.ini"
```
4. **网络任务**:连接到远程服务器,运行命令,然后断开连接。
```batch
ping -n 1 host.example.com && net use \\host /user:username password
```
5. **定时任务**:通过`@echo off`,`set /a` 和 `timeout` 结构来设置定时执行。
```batch
@echo off
for /l %%i in (1,1,60) do (
echo Waiting for 1 minute...
timeout /t 60
)
```
阅读全文