新建start.bat文件,作用,打開瀏覽器,並模擬按下F11,全屏,內容如下:
start C:\Program" "Files" "(x86)\Google\Chrome\Application\chrome.exe // 需要打開的瀏覽器 @echo off choice /t 1 /d y /n > nul start C:\Users\ca85283\Desktop\1.vbs //模擬F11 按鍵
新建1.vbs文件,模擬全屏按鍵F11
Set objShell = CreateObject("Wscript.Shell") objShell.SendKeys "{F11}"
參考百度經驗:
https://jingyan.baidu.com/article/49ad8bceb01f7f5834d8fa2d.html