gpt4 book ai didi

vbscript - 在 Windows 批处理文件中嵌入 VBScript

转载 作者:行者123 更新时间:2023-12-04 17:58:18 24 4
gpt4 key购买 nike

是否可以在批处理文件中嵌入 VBScript?

我目前有一个 .CMD 文件,它使用调用 .VBS 文件

cscript //NoLogo MyScript.vbs

但我更愿意只分发一个 .CMD 文件。

编辑 :有一个类似的问题,其中包含有关如何在根本不生成中间文件的情况下执行此操作的答案: Is it possible to embed and execute VBScript within a batch file without using a temporary file?

最佳答案

http://www.computerhope.com/forum/index.php?topic=103686.0

@echo off
echo This is batch
:wscript.echo "This VBScript"
:wscript.echo "Today is " & day(date) & "-" & month(date) & "-" & year(date)
findstr "^:" "%~sf0">temp.vbs & cscript //nologo temp.vbs & del temp.vbs
echo This is batch again

关于vbscript - 在 Windows 批处理文件中嵌入 VBScript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4037709/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com