系统相关
首页 > 系统相关> > windows批处理

windows批处理

作者:互联网

1.批处理以及它的作用

1.微软系统自带的原生开发语言,不需要构建任何开发环境就可以执行的脚本。
2.可以匹配文件。新建文件日志这些
3.编写一些可以被windows执行的脚本,例如编译解决方案,或者安装windows服务。卸载windows服务

2.输出Hello World
//关闭命令显示
@echo off 
echo Hello World
pause
3.常用批处理实践

1.安装.net开发的windows服务

@echo off
color 0a
set Filename=Source\Applications\RDA\RAD.Module.Synchronizer\RDA.Module.Synchronizer\bin\Debug\STAr.Aquarius.RDA.Module.Synchronizer.exe
set Servicename= Windows Synchronizer
set Frameworkdc=%SystemRoot%\Microsoft.NET\Framework\v3.5
if exist "%Frameworkdc%" goto netOld 
:DispError 
echo .Net Framework 3.5 is not installed on your machine, the installation will be terminated soon..
echo .Net Framework 3.5 is not installed on your machine, the installation will be terminated soon.  >InstallService.log
goto LastEnd 
:netOld 
cd %Frameworkdc%
echo The corresponding .net Framework 3.5 is installed on your machine, you can install this service. 
echo The corresponding .net Framework 3.5 is installed on your machine, you can install this service >InstallService.log
echo.
echo. >>InstallService.log

echo "%Filename%">1.txt

C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe %~dp0\"%Filename%" 
net start SendSms
echo -----------------------------
echo         Service installed successfully
echo -----------------------------
pause

2.调用msbuild编译解决方案

3.windows 服务附加调试

3.批处理运算操作

1.算术运算

2.重定向运算

@echo off
set /a tmp=10+2
echo %tmp% > put.txt
set /a tmp_1 = 10*20
echo %tmp_1% >> put.txt

3.多命令运算

4.管道符号 A|B

将第一个参数的结果作为第二个参数的输入

@echo off
dir | find ".txt" > tmp.txt
pause
@echo off
netstat -an | find "ESTABLISHED" > tmp.txt
pause

4.批处理文件参数传递

%1 代表第一个参数,%2代表第二个参数,参数之间用空格隔开,例如有一个test.cmd批处理,跳转到所在目录然后执行test.cmd 参数1 参数2
就可以调用这个批处理输出 用户输入的2个参数值

@echo off
echo %1
echo %2 
pause
@rem 执行这个批处理文件 test.cmd 参数1 参数2
4.基本命令
@echo off
echo 使用goto命令
goto last
set tmp="Hello World"
echo %tmp%
@rem 设置跳到的标识
:last
echo 跳过命令之后执行的语句
pause
start /max
@echo off
echo 使用start命令
@rem 开始一个新的程序窗口,标题为new window 等待新窗口执行 在新窗口执行输出New window
start 'new window' /wait echo new window
echo
pause
start /max
@echo off
echo use if command
@rem 
if exist a.txt (echo find file) else (no find)
pause

标签:tmp,pause,off,start,windows,echo,批处理,txt
来源: https://www.cnblogs.com/yuxl01/p/16074382.html