open_website.bat
@echo off
start "" "https://www.kling.cn"
#批定浏览器
start msedge http://www.yourwebsite.com
start iexplore http://www.yourwebsite.com #装了edge浏览器以后,iexplore失效
start chrome http://www.yourwebsite.com
它将使用默认的浏览器打开指定的网站(在此示例中为https://www.kling.cn)
@echo off
start "" /max "https://www.kling.cn"
#IE 有edge时ie失效
start iexplore -k http://www.yourwebsite.com
#使用edge 无地址全屏打开
start msedge --kiosk --edge-kiosk-type=fullscreen "https://bkn.jobpi.cn/cz_test/login"
#有地址栏打开
start msedge --edge-kiosk-type=fullscreen "https://bkn.jobpi.cn/cz_test/login"
#chrome浏览器
start chrome --start-fullscreen http://www.yourwebsite.com
#火狐浏览器全屏打开
start "" firefox "https://bkn.jobpi.cn/cz_test/login"
start "" firefox --kiosk "https://bkn.jobpi.cn/cz_test/login"
#f11.vbs
Set objShell = CreateObject("Wscript.Shell")
objShell.SendKeys ""
#bat中调用
@echo off
start http:www.baidu.com
choice /t 1 /d y /n > nul
start %cd%\1.vbs