-1

有人可以告诉我我在这里做错了什么吗?

IfNotEqual, A_OSVersion = WIN_7, WIN_VISTA, WIN_XP
{
   MsgBox, This script is only supported on Windows XP, Vista, or 7.
   Exit
}
4

1 回答 1

2

我想你想要:
基于(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
}
于 2013-09-12T16:00:06.080 回答