有人可以告诉我我在这里做错了什么吗?
IfNotEqual, A_OSVersion = WIN_7, WIN_VISTA, WIN_XP
{
MsgBox, This script is only supported on Windows XP, Vista, or 7.
Exit
}
有人可以告诉我我在这里做错了什么吗?
IfNotEqual, A_OSVersion = WIN_7, WIN_VISTA, WIN_XP
{
MsgBox, This script is only supported on Windows XP, Vista, or 7.
Exit
}
我想你想要:
基于(http://www.autohotkey.com/docs/commands/IfIn.htm)
if A_OSVersion not in WIN_7,WIN_VISTA,WIN_XP
{
MsgBox This Script is only supported on Windows XP, Vista or 7
ExitApp
}