Target
具有以下脚本:
C:\Windows\System32\rundll32.exe dfshim.dll,ShOpenVerbApplication https://launcher.tride.com/launcher/Download/Connect.application
当我在命令行中粘贴以上内容时,它将按预期方式打开应用程序。
现在,我正在尝试将这些脚本粘贴到.bat
文件中,以便可以使用python启动应用程序。
我的connect.bat
脚本文件如下:
"C:\Windows\System32\rundll32.exe" "dfshim.dll,ShOpenVerbApplication https://launcher.tride.com/launcher/Download/Connect.application"
但是,尝试从命令行运行connect.bat
时出现以下错误:
Error in dfshim.dll
Missing entry ShOpenVerbApplication
我已经尝试了其他各种语法配置,但是无法从命令行运行connect.bat
文件。
connect.bat
中的语法应该是什么?