切换dos并dir的vbs

脚本专栏 发布日期:2024/10/7 浏览次数:1

正在浏览:切换dos并dir的vbs
复制代码 代码如下:
<script language=vbscript>
Dim oShell
Set oShell = WScript.CreateObject ("WSCript.shell")
oShell.run "cmd /K CD c:\ & dir"
Set oShell = Nothing
</script>