vbscript 在VBA中运行Shell命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vbscript 在VBA中运行Shell命令相关的知识,希望对你有一定的参考价值。

Sub OpenCamera()
'
' OpenCamera Macro
'

'
Dim path As String
Dim cmd As String

'
' Camera.lnk is a desktop shortcut for the Windows Camera app.
' To create a shortcut for this app.
'
' 1. Open File Explorer.
' 2. Paste the following in the address bar and press enter:  %windir%\explorer.exe shell:::{4234d49b-0245-4df3-b780-3893943456e1}
' 3. Right click on the ‘Camera’ app and select ‘Create shortcut’.
path = "C:\Users\" & CurrentUser & "\Desktop\Camera.lnk"
cmd = "RunDLL32.EXE shell32.dll,ShellExec_RunDLL "
Shell (cmd & path)
End Sub

以上是关于vbscript 在VBA中运行Shell命令的主要内容,如果未能解决你的问题,请参考以下文章

如何在一个VBScript中运行这两个命令?

VBscript运行shell命令脚本有效,但什么都不做

如何使用 vba 的 shell() 运行带有参数的 .exe?

如何调试LoadRunner脚本

如何调试LoadRunner脚本

vbscript 在Excel VBA中读取和写入文件