我正在编写一个批处理文件,它会自动在程序中输入用户名和密码(可以正常工作)。现在我需要扩展代码以模拟按CTRL+SHIFT+4
(字母上方的数字)。
我尝试添加
WScript.CreateObject("WScript.Shell").SendKeys("^+4");
到文件,但没有发生..但可能是那些SendKeys仅用于VBS,我不确定..
@if (@CodeSection == @Batch) @then
@echo off
start "" "C:\Program Files\Pelco\OpsCenter\OpsCenter.exe"
timeout /t 5 /nobreak >nul
set "username=administratie"
set "password=administratie"
CScript //nologo //E:JScript "%~F0" "%username%{tab}%password%{enter}"
timeout /t 5 /nobreak >nul
WScript.CreateObject("WScript.Shell").SendKeys("^+4");
goto :EOF
@end