[@AppDataDir | path to current user's Application Data]
@AppDataDir
;
[@AutoItExe | The full path and filename of the AutoIt executable currently running. For compiled scripts it is the path of the compiled script.]
@AutoItExe
;
[@AutoItVersion | Version number of AutoIt such as 3.0.81.0]
@AutoItVersion
;
[@CommonFilesDir | path to Common Files folder]
@CommonFilesDir
;
[@Compiled | Returns 1 if script is a compiled executable; otherwise, returns 0.]
@Compiled
;
[@ComputerName | Computer's network name.]
@ComputerName
;
[@ComSpec | value of %comspec%, the SPECified secondary COMmand interpreter;<br>primarily for command line uses, e.g. <i>Run(@ComSpec & " /k help | more")</i>]
@ComSpec
;
[@CR | Carriage return, Chr(13); sometimes used for line breaks.]
@CR
;
[@CRLF | = @CR & @LF ;occasionally used for line breaks.]
@CRLF
;
[@DesktopCommonDir | path to Desktop]
@DesktopCommonDir
;
[@DesktopDir | path to current user's Desktop]
@DesktopDir
;
[@DesktopHeight | Height of the desktop screen in pixels. (horizontal resolution)]
@DesktopHeight
;
[@DesktopWidth | Width of the desktop screen in pixels. (vertical resolution)]
@DesktopWidth
;
[@DesktopDepth | Depth of the desktop screen in bits per pixel. ]
@DesktopDepth
;
[@DesktopRefresh | Refresh rate of the desktop screen in hertz. ]
@DesktopRefresh
;
[@DocumentsCommonDir | path to Documents]
@DocumentsCommonDir
;
[@error | Status of the error flag. See the SetError function.]
@error
;
[@extended | <td height="16">Extended function return - used in certain functions such as StringReplace.]
@extended
;
[@FavoritesCommonDir | path to Favorites]
@FavoritesCommonDir
;
[@FavoritesDir | path to current user's Favorites]
@FavoritesDir
;
[@GUI_CtrlId | Last click control identifier. See the GUICtrlSetOnEvent function.]
@GUI_CtrlId
;
[@GUI_CtrlHandle | Last click control handle. See the GUICtrlSetOnEvent function.]
@GUI_CtrlHandle
;
[@GUI_WinHandle | Last click GUI window handle. See the GUICtrlSetOnEvent function.]
@GUI_WinHandle
;
[@HomeDrive | Drive letter of drive containing current user's home directory.]
@HomeDrive
;
[@HomePath | Directory part of current user's home directory. To get the full path, use in conjunction with @HomeDrive.]
@HomePath
;
[@HomeShare | @HomeShare - Server and share name containing current user's home directory.]
@HomeShare
;
[@HOUR | Hours value of clock in 24-hour format. Range is 00 to 23]
@HOUR
;
[@InetGetActive | Is 1 if a InetGet download is currently active, otherwise is 0. ]
@InetGetActive
;
[@InetGetBytesRead | During a InetGet download this is the number of bytes currently read. It is -1 when there is an error downloading. ]
@InetGetBytesRead
;
[@IPAddress1 | IP address of first network adapter. Tends to return 127.0.0.1 on some computers.<br>]
@IPAddress1
;
[@IPAddress2 | IP address of second network adapter. Returns 0.0.0.0 if not applicable.]
@IPAddress2
;
[@IPAddress3 | IP address of third network adapter. Returns 0.0.0.0 if not applicable.]
@IPAddress3
;
[@IPAddress4 | IP address of fourth network adapter. Returns 0.0.0.0 if not applicable.]
@IPAddress4
;
[@LF | Line feed, Chr(10); typically used for line breaks.]
@LF
;
[@LogonDNSDomain | Logon DNS Domain.]
@LogonDNSDomain
;
[@LogonDomain | Logon Domain.]
@LogonDomain
;
[@LogonServer | Logon server.]
@LogonServer
;
[@MDAY | Current day of month. Range is 01 to 31]
@MDAY
;
[@MIN | Minutes value of clock. Range is 00 to 59]
@MIN
;
[@MON | Current month. Range is 01 to 12]
@MON
;
[@MyDocumentsDir | path to My Documents target]
@MyDocumentsDir
;
[@NumParams | Number of parameters used to call the user functions]
@NumParams
;
[@OSBuild | Returns the OS build number. For example, Windows 2003 Server returns 3790]
@OSBuild
;
[@OSLang | Returns code denoting OS Language. See <a href="appendix/OSLangCodes.htm">Appendix</a> for possible values.]
@OSLang
;
[@OSServicePack | Service pack info in the form of "Service Pack 3" or, for Windows 95, it may return "B"]
@OSServicePack
;
[@OSTYPE | Returns "WIN32_NT" for NT/2000/XP/2003 and returns "WIN32_WINDOWS" for 95/98/Me]
@OSTYPE
;
[@OSVersion | Returns one of the following: "WIN_2003", "WIN_XP", "WIN_2000", "WIN_NT4", "WIN_ME", "WIN_98", "WIN_95"]
@OSVersion
;
[@ProgramFilesDir | path to Program Files folder]
@ProgramFilesDir
;
[@ProgramsCommonDir | path to Start Menu's Programs folder]
@ProgramsCommonDir
;
[@ProgramsDir | path to current user's Programs (folder on Start Menu)]
@ProgramsDir
;
[@ScriptDir | Directory containing the running script. (Result does not contain a trailing backslash)]
@ScriptDir
;
[@ScriptFullPath | Equivalent to @ScriptDir & "\" & @ScriptName]
@ScriptFullPath
;
[@ScriptName | Long filename of the running script.]
@ScriptName
;
[@SEC | Seconds value of clock. Range is 00 to 59]
@SEC
;
[@StartMenuCommonDir | path to Start Menu folder]
@StartMenuCommonDir
;
[@StartMenuDir | path to current user's Start Menu]
@StartMenuDir
;
[@StartupCommonDir | path to Startup folder]
@StartupCommonDir
;
[@StartupDir | current user's Startup folder]
@StartupDir
;
[@SW_DISABLE | Disables the window. ]
@SW_DISABLE
;
[@SW_ENABLE | Enables the window. ]
@SW_ENABLE
;
[@SW_HIDE | Hides the window and activates another window. ]
@SW_HIDE
;
[@SW_MAXIMIZE | Maximizes the specified window. ]
@SW_MAXIMIZE
;
[@SW_MINIMIZE | Minimizes the specified window and activates the next top-level window in the Z order. ]
@SW_MINIMIZE
;
[@SW_RESTORE | Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when restoring a minimized window. ]
@SW_RESTORE
;
[@SW_SHOW | Activates the window and displays it in its current size and position. ]
@SW_SHOW
;
[@SW_SHOWDEFAULT | Sets the show state based on the SW_ value specified by the program that started the application. ]
@SW_SHOWDEFAULT
;
[@SW_SHOWMAXIMIZED | Activates the window and displays it as a maximized window. ]
@SW_SHOWMAXIMIZED
;
[@SW_SHOWMINIMIZED | Activates the window and displays it as a minimized window. ]
@SW_SHOWMINIMIZED
;
[@SW_SHOWMINNOACTIVE | Displays the window as a minimized window. This value is similar to @SW_SHOWMINIMIZED, except the window is not activated. ]
@SW_SHOWMINNOACTIVE
;
[@SW_SHOWNA | Displays the window in its current size and position. This value is similar to @SW_SHOW, except the window is not activated. ]
@SW_SHOWNA
;
[@SW_SHOWNOACTIVATE | Displays a window in its most recent size and position. This value is similar to @SW_SHOWNORMAL, except the window is not actived. ]
@SW_SHOWNOACTIVATE
;
[@SW_SHOWNORMAL | Activates and displays a window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when displaying the window for the first time. ]
@SW_SHOWNORMAL
;
[@SystemDir | path to Windows' System (or System32) folder]
@SystemDir
;
[@TAB | Tab character, Chr(9)]
@TAB
;
[@TempDir | Path to the temporary files folder.]
@TempDir
;
[@UserProfileDir | Path to current user's Profile folder.]
@UserProfileDir
;
[@UserName | ID of the currently logged on user.]
@UserName
;
[@WDAY | Numeric day of week. Range is 1 to 7 which corresponds to Sunday through Saturday.]
@WDAY
;
[@WindowsDir | path to Windows folder]
@WindowsDir
;
[@WorkingDir | Current/active working directory. (Result does not contain a trailing backslash)]
@WorkingDir
;
[@YDAY | Current day of year. Range is 1 to 366 (or 365 if not a leap year)]