设置系统的当前日期
#Include <Date.au3>
_SetDate($iDay [, $iMonth = 0 [, $iYear = 0]])
$iDay | 月份天数.取值范围: 1-31 |
$iMonth | [可选参数] 月份. 取值范围: 1-12 |
$iYear | [可选参数] 年份. 取值范围: > 0 (windows 可能有某些限制!!) |
成功: | 返回 1 | |
失败: | 返回 0,设置@error: | |
@error: | 0 - 无错误 | |
1 - 失败@extended: | ||
GetLastError() | ||
错误代码参见:http://msdn.microsoft.com/en-us/library/ms681381.aspx |
#include <Date.au3>
_SetDate(20) ; 设置当前日期为 20-xx-xxxx
_SetDate(20, 10) ; 设置当前日期为 20-10-xxxx
_SetDate(20, 10, 2004) ; 设置当前日期为 20-10-2004