1

我们在瘦客户端上使用共享桌面。默认情况下,它带有窗口屏幕,但按Alt+F11键将恢复为全屏。因此,我们希望脚本在 Windows 登录时执行一些延迟。

4

1 回答 1

2

希望登录 vbscript 对您有用。将此附加到现有登录脚本或将其保存为“.vbs”文件。 如果您不熟悉登录脚本,Microsoft 有一些很好的教程。

Set WshShell = CreateObject("Wscript.Shell") 'Create wshell object
WScript.Sleep(5000) 'Lets wait 5 seconds

WshShell.AppActivate "EXACT TITLE OF THE WINDOW YOU WANT" 'EDIT THIS LINE!
'The line above selects the window so we make sure the keystrokes are sent to it

WshShell.SendKeys "%{F11}" 'Send ALT+F11
Wscript.Quit 'Quit the script
于 2013-08-13T15:06:08.253 回答