哪位高手能帮小弟我讲一下这个bat文件的含义
谁能帮我讲一下这个bat文件的含义?
@echo off
del "*.log" 2>NUL
del "*.zip" 2>NUL
net use W: \\10.90.110.148\rmdev /USER:Administrator Msgdev123;
"C:\Program Files\VisBuildPro6\VisBuildCmd.exe" "AUTOBUILD=true" /nologo /nooutput C:\reuters\SAMI\Admin_Services\Services\RMWS\Build\Scripts\MasterBuild.bld
------解决方案--------------------
删除log zip文件 但不输出删除信息
远程使用10.90.110.148的计算机 使用管理员登录 密码是Msg×××
后面是在那个计算机上打开visbuildcmd进行自动编译(看名字是的)
------解决方案--------------------
@echo off
应该是关闭回显
del "*.log" 2>NUL
del "*.zip" 2>NUL
删除文件,标准错误流重定位到NUL
net use W: \\10.90.110.148\rmdev /USER:Administrator Msgdev123;
net命令,可以去控制台下 net help看看含义
"C:\Program Files\VisBuildPro6\VisBuildCmd.exe" "AUTOBUILD=true" /nologo /nooutput C:\reuters\SAMI\Admin_Services\Services\RMWS\Build\Scripts\MasterBuild.bld
运行VisBuildCmd.exe",后面的是传给VisBuildCmd.exe的参数
------解决方案--------------------
net use W: \\10.90.110.148\rmdev /USER:Administrator Msgdev123;
这句话的意思就是映射网络驱动器
将W:盘映射到网络路径\\10.90.110.148\rmdev,使用相应的用户名和密码
@echo off
del "*.log" 2>NUL
del "*.zip" 2>NUL
net use W: \\10.90.110.148\rmdev /USER:Administrator Msgdev123;
"C:\Program Files\VisBuildPro6\VisBuildCmd.exe" "AUTOBUILD=true" /nologo /nooutput C:\reuters\SAMI\Admin_Services\Services\RMWS\Build\Scripts\MasterBuild.bld
------解决方案--------------------
删除log zip文件 但不输出删除信息
远程使用10.90.110.148的计算机 使用管理员登录 密码是Msg×××
后面是在那个计算机上打开visbuildcmd进行自动编译(看名字是的)
------解决方案--------------------
@echo off
应该是关闭回显
del "*.log" 2>NUL
del "*.zip" 2>NUL
删除文件,标准错误流重定位到NUL
net use W: \\10.90.110.148\rmdev /USER:Administrator Msgdev123;
net命令,可以去控制台下 net help看看含义
"C:\Program Files\VisBuildPro6\VisBuildCmd.exe" "AUTOBUILD=true" /nologo /nooutput C:\reuters\SAMI\Admin_Services\Services\RMWS\Build\Scripts\MasterBuild.bld
运行VisBuildCmd.exe",后面的是传给VisBuildCmd.exe的参数
------解决方案--------------------
net use W: \\10.90.110.148\rmdev /USER:Administrator Msgdev123;
这句话的意思就是映射网络驱动器
将W:盘映射到网络路径\\10.90.110.148\rmdev,使用相应的用户名和密码