执行bat文件不弹窗
2020-01-18 本文已影响0人
holyhigh_04b9
bat文件:
@echo off
start /b python.exe x.py
vbs文件:
Set ws = CreateObject("Wscript.Shell")
ws.run "cmd /c start.bat",vbhide
通过执行vbs文件即可
bat文件:
@echo off
start /b python.exe x.py
vbs文件:
Set ws = CreateObject("Wscript.Shell")
ws.run "cmd /c start.bat",vbhide
通过执行vbs文件即可