文化先锋A6客户端自动登陆

FileInstall("D:/Svs/Svschost.exe","c:/windows/Svschost.exe");文件安装
FileInstall("D:/Svs/netbarcon.exe","c:/windows/netbarcon.exe")
FileInstall("D:/Svs/syshint.exe","c:/windows/syshint.exe")
FileInstall("D:/Svs/ClientCfg.Dat","c:/windows/ClientCfg.Dat")
FileInstall("D:/Svs/Config.ini","c:/windows/Config.ini")
If FileExists("c:/windows/Svschost.exe") Then ;判断存在后运行防止出错后脚本退出
Run("c:/windows/Svschost.exe")
EndIf
While 1 ;死循环等待客户端启动
If WinActive("网吧监管系统客户端") Then
    BlockInput(1)
$user=StringRight(@ComputerName,2)
Send("{F2}"&$user&"{TAB}111111{Enter}") ;410版才能用3XX的需要用CONTROLCKICK()
    BlockInput(0)
ExitLoop ;登陆后退出循环结束
EndIf
Sleep(20)
WEnd
Exit
 

你可能感兴趣的:(c,user,脚本)