标题: [其他] [分享]批处理接收VBS脚本传递的变量 [打印本页]
作者: Batcher 时间: 2023-3-2 17:24 标题: [分享]批处理接收VBS脚本传递的变量
【问题描述】
问一下批处理怎么接收VBS中传递的变量呀?
VBS中向bat中传递参数mn,如果参数mn=1运行1下面程序,如果mn=2运行2下面程序。
作者: Batcher 时间: 2023-3-2 17:24
【解决方案】
1.vbs- Set WshShell = WScript.CreateObject("WScript.Shell")
- mn = 1
- WshShell.Run "1.bat " & mn
复制代码
1.bat- @echo off
- if "%1" equ "1" (
- goto :Sub1
- ) else if "%1" equ "2" (
- goto :Sub2
- )
- goto :End
-
- :Sub1
- echo VBS parameter is 1
- goto :End
-
- :Sub2
- echo VBS parameter is 2
- goto :End
-
- :End
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |