【原神configuration】启动时出现的页面,暂不知如何稳定打开此页面

;个人使用的autohotkey代码(原神F绑定到鼠标侧键等,要管理员权限运行方可在原神生效)
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; Shift + Space -> Space
+Space::Send {Space}
; F5 -> Ctrl + F5
F5::^F5
; Fast PrintScreen
PrintScreen::Send, #{PrintScreen}
; Fast PrintScreen
#PrintScreen::Send, {PrintScreen}
; Browser_Forward -> Browser_Forward + F(repeat per 170 sec)
$XButton2::
Send, {XButton2}
Loop
{
GetKeyState, State, XButton2, P ; 获取物理状态
If (State = "U")
{
Break
}
Else
{
Send, f
Sleep, 170
}
}
Return