时光之岸 發表於 2020-1-3 14:10:00

Delphi GetLastError - 取最后的错误

<p><span style="font-size: 16px">函数原型:DWORD GetLastError(VOID);</span><br><span style="font-size: 16px">参数:无</span><br><span style="font-size: 16px">函数功能:该函数返回调用线程最近的错误代码值,错误代码以单线程为基础来维护的,多线程不重写各自的错误代码值。</span><br><span style="font-size: 16px">返回值:</span><br><span style="font-size: 16px">为调用的线程的错误代码值(unsigned long),函数通过调 SetLastError 函数来设置此值,每个函数资料的返回值部分都注释了函数设置错误代码的情况。</span><br><span style="font-size: 16px">在 Windows 95 和 Windows 98 中因为 SetLastError 仅是 32 位的函数,实际上以 16 位代码来操作的 Win32 不能设置错误代码值,应当在调用这些函数时忽略错误代码。它们包括窗口管理函数,GDI 函数和 Multimedia(多媒体)函数。</span></p>
<p>&nbsp;</p>
<p><span style="font-size: 16px">Delphi 调用示例:</span></p>
<div class="cnblogs_Highlighter">
<pre class="brush:delphi;gutter:true;"><span style="font-size: 16px">ShowMessage(SysErrorMessage(GetLastError));
</span></pre>
</div>
<p><span style="font-size: 16px">&nbsp;</span></p>
<p><span style="font-size: 16px">下面就是用 SysErrorMessage 获取的部分系统错误信息表:</span></p>
<table border="1" cellpadding="2">
<tbody>
<tr><th nowrap="nowrap"><span style="font-size: 16px">信息常数</span></th><th nowrap="nowrap"><span style="font-size: 16px">常数值</span></th><th nowrap="nowrap"><span style="font-size: 16px">对应信息</span></th></tr>
<tr>
<td><span style="font-size: 16px">ERROR_SUCCESS</span></td>
<td><span style="font-size: 16px">0</span></td>
<td><span style="font-size: 16px">操作成功完成。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">NO_ERROR</span></td>
<td><span style="font-size: 16px">0</span></td>
<td><span style="font-size: 16px">操作成功完成。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_FUNCTION</span></td>
<td><span style="font-size: 16px">1</span></td>
<td><span style="font-size: 16px">函数不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FILE_NOT_FOUND</span></td>
<td><span style="font-size: 16px">2</span></td>
<td><span style="font-size: 16px">系统找不到指定的文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PATH_NOT_FOUND</span></td>
<td><span style="font-size: 16px">3</span></td>
<td><span style="font-size: 16px">系统找不到指定的路径。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_OPEN_FILES</span></td>
<td><span style="font-size: 16px">4</span></td>
<td><span style="font-size: 16px">系统无法打开文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ACCESS_DENIED</span></td>
<td><span style="font-size: 16px">5</span></td>
<td><span style="font-size: 16px">拒绝访问。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_HANDLE</span></td>
<td><span style="font-size: 16px">6</span></td>
<td><span style="font-size: 16px">句柄无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ARENA_TRASHED</span></td>
<td><span style="font-size: 16px">7</span></td>
<td><span style="font-size: 16px">存储控制块被损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_ENOUGH_MEMORY</span></td>
<td><span style="font-size: 16px">8</span></td>
<td><span style="font-size: 16px">存储空间不足,无法处理此命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_BLOCK</span></td>
<td><span style="font-size: 16px">9</span></td>
<td><span style="font-size: 16px">存储控制块地址无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_ENVIRONMENT</span></td>
<td><span style="font-size: 16px">10</span></td>
<td><span style="font-size: 16px">环境不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_FORMAT</span></td>
<td><span style="font-size: 16px">11</span></td>
<td><span style="font-size: 16px">试图加载格式不正确的程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ACCESS</span></td>
<td><span style="font-size: 16px">12</span></td>
<td><span style="font-size: 16px">访问码无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_DATA</span></td>
<td><span style="font-size: 16px">13</span></td>
<td><span style="font-size: 16px">数据无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_OUTOFMEMORY</span></td>
<td><span style="font-size: 16px">14</span></td>
<td><span style="font-size: 16px">存储空间不足,无法完成此操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_DRIVE</span></td>
<td><span style="font-size: 16px">15</span></td>
<td><span style="font-size: 16px">系统找不到指定的驱动器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CURRENT_DIRECTORY</span></td>
<td><span style="font-size: 16px">16</span></td>
<td><span style="font-size: 16px">无法删除目录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_SAME_DEVICE</span></td>
<td><span style="font-size: 16px">17</span></td>
<td><span style="font-size: 16px">系统无法将文件移到不同的驱动器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_MORE_FILES</span></td>
<td><span style="font-size: 16px">18</span></td>
<td><span style="font-size: 16px">没有更多文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WRITE_PROTECT</span></td>
<td><span style="font-size: 16px">19</span></td>
<td><span style="font-size: 16px">介质受写入保护。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_UNIT</span></td>
<td><span style="font-size: 16px">20</span></td>
<td><span style="font-size: 16px">系统找不到指定的设备。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_READY</span></td>
<td><span style="font-size: 16px">21</span></td>
<td><span style="font-size: 16px">设备未就绪。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_COMMAND</span></td>
<td><span style="font-size: 16px">22</span></td>
<td><span style="font-size: 16px">设备不识别此命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CRC</span></td>
<td><span style="font-size: 16px">23</span></td>
<td><span style="font-size: 16px">数据错误(循环冗余检查)。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_LENGTH</span></td>
<td><span style="font-size: 16px">24</span></td>
<td><span style="font-size: 16px">程序发出命令,但命令长度不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SEEK</span></td>
<td><span style="font-size: 16px">25</span></td>
<td><span style="font-size: 16px">驱动器找不到磁盘上特定区域或磁道。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_DOS_DISK</span></td>
<td><span style="font-size: 16px">26</span></td>
<td><span style="font-size: 16px">无法访问指定的磁盘或软盘。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SECTOR_NOT_FOUND</span></td>
<td><span style="font-size: 16px">27</span></td>
<td><span style="font-size: 16px">驱动器找不到请求的扇区。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_OUT_OF_PAPER</span></td>
<td><span style="font-size: 16px">28</span></td>
<td><span style="font-size: 16px">打印机缺纸。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WRITE_FAULT</span></td>
<td><span style="font-size: 16px">29</span></td>
<td><span style="font-size: 16px">系统无法写入指定的设备。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_READ_FAULT</span></td>
<td><span style="font-size: 16px">30</span></td>
<td><span style="font-size: 16px">系统无法从指定的设备上读取。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_GEN_FAILURE</span></td>
<td><span style="font-size: 16px">31</span></td>
<td><span style="font-size: 16px">连到系统上的设备没有发挥作用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SHARING_VIOLATION</span></td>
<td><span style="font-size: 16px">32</span></td>
<td><span style="font-size: 16px">另一个程序正在使用此文件,进程无法访问。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOCK_VIOLATION</span></td>
<td><span style="font-size: 16px">33</span></td>
<td><span style="font-size: 16px">另一个程序已锁定文件的一部分,进程无法访问。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WRONG_DISK</span></td>
<td><span style="font-size: 16px">34</span></td>
<td><span style="font-size: 16px">驱动器中的软盘不对。将 %2 插入(卷序列号: %3)驱动器 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SHARING_BUFFER_EXCEEDED</span></td>
<td><span style="font-size: 16px">36</span></td>
<td><span style="font-size: 16px">用来共享的打开文件过多。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HANDLE_EOF</span></td>
<td><span style="font-size: 16px">38</span></td>
<td><span style="font-size: 16px">已到文件结尾。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HANDLE_DISK_FULL</span></td>
<td><span style="font-size: 16px">39</span></td>
<td><span style="font-size: 16px">磁盘已满。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_SUPPORTED</span></td>
<td><span style="font-size: 16px">50</span></td>
<td><span style="font-size: 16px">不支持请求。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REM_NOT_LIST</span></td>
<td><span style="font-size: 16px">51</span></td>
<td><span style="font-size: 16px">Windows 无法找到网络路径。请确认网络路径正确并且目标计算机不忙或已关闭。 如果 Windows 仍然无法找到网络路径,请与网络管理员联系。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DUP_NAME</span></td>
<td><span style="font-size: 16px">52</span></td>
<td><span style="font-size: 16px">由于网络上有重名,没有连接。请到“控制面板”中的“系统”更改计算机名,然后重试。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_NETPATH</span></td>
<td><span style="font-size: 16px">53</span></td>
<td><span style="font-size: 16px">找不到网络路径。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NETWORK_BUSY</span></td>
<td><span style="font-size: 16px">54</span></td>
<td><span style="font-size: 16px">网络很忙。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DEV_NOT_EXIST</span></td>
<td><span style="font-size: 16px">55</span></td>
<td><span style="font-size: 16px">指定的网络资源或设备不再可用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_CMDS</span></td>
<td><span style="font-size: 16px">56</span></td>
<td><span style="font-size: 16px">已达到网络 BIOS 命令限制。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ADAP_HDW_ERR</span></td>
<td><span style="font-size: 16px">57</span></td>
<td><span style="font-size: 16px">网络适配器硬件出错。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_NET_RESP</span></td>
<td><span style="font-size: 16px">58</span></td>
<td><span style="font-size: 16px">指定的服务器无法运行请求的操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNEXP_NET_ERR</span></td>
<td><span style="font-size: 16px">59</span></td>
<td><span style="font-size: 16px">出现了意外的网络错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_REM_ADAP</span></td>
<td><span style="font-size: 16px">60</span></td>
<td><span style="font-size: 16px">远程适配器不兼容。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINTQ_FULL</span></td>
<td><span style="font-size: 16px">61</span></td>
<td><span style="font-size: 16px">打印机队列已满。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SPOOL_SPACE</span></td>
<td><span style="font-size: 16px">62</span></td>
<td><span style="font-size: 16px">服务器上没有储存等待打印的文件的空间。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINT_CANCELLED</span></td>
<td><span style="font-size: 16px">63</span></td>
<td><span style="font-size: 16px">已删除等候打印的文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NETNAME_DELETED</span></td>
<td><span style="font-size: 16px">64</span></td>
<td><span style="font-size: 16px">指定的网络名不再可用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NETWORK_ACCESS_DENIED</span></td>
<td><span style="font-size: 16px">65</span></td>
<td><span style="font-size: 16px">拒绝网络访问。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_DEV_TYPE</span></td>
<td><span style="font-size: 16px">66</span></td>
<td><span style="font-size: 16px">网络资源类型不对。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_NET_NAME</span></td>
<td><span style="font-size: 16px">67</span></td>
<td><span style="font-size: 16px">找不到网络名。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_NAMES</span></td>
<td><span style="font-size: 16px">68</span></td>
<td><span style="font-size: 16px">超出本地计算机网络适配器卡的名称限制。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_SESS</span></td>
<td><span style="font-size: 16px">69</span></td>
<td><span style="font-size: 16px">超出了网络 BIOS 会话限制。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SHARING_PAUSED</span></td>
<td><span style="font-size: 16px">70</span></td>
<td><span style="font-size: 16px">远程服务器已暂停,或正在启动过程中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REQ_NOT_ACCEP</span></td>
<td><span style="font-size: 16px">71</span></td>
<td><span style="font-size: 16px">已达到计算机的连接数最大值,无法再同此远程计算机连接。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REDIR_PAUSED</span></td>
<td><span style="font-size: 16px">72</span></td>
<td><span style="font-size: 16px">已暂停指定的打印机或磁盘设备。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FILE_EXISTS</span></td>
<td><span style="font-size: 16px">80</span></td>
<td><span style="font-size: 16px">文件存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANNOT_MAKE</span></td>
<td><span style="font-size: 16px">82</span></td>
<td><span style="font-size: 16px">无法创建目录或文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FAIL_I24</span></td>
<td><span style="font-size: 16px">83</span></td>
<td><span style="font-size: 16px">INT 24 上的故障。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_OUT_OF_STRUCTURES</span></td>
<td><span style="font-size: 16px">84</span></td>
<td><span style="font-size: 16px">无法取得处理此请求的存储空间。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ALREADY_ASSIGNED</span></td>
<td><span style="font-size: 16px">85</span></td>
<td><span style="font-size: 16px">本地设备名已在使用中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PASSWORD</span></td>
<td><span style="font-size: 16px">86</span></td>
<td><span style="font-size: 16px">指定的网络密码不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PARAMETER</span></td>
<td><span style="font-size: 16px">87</span></td>
<td><span style="font-size: 16px">参数不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NET_WRITE_FAULT</span></td>
<td><span style="font-size: 16px">88</span></td>
<td><span style="font-size: 16px">网络上发生写入错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_PROC_SLOTS</span></td>
<td><span style="font-size: 16px">89</span></td>
<td><span style="font-size: 16px">系统无法在此时启动另一个进程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_SEMAPHORES</span></td>
<td><span style="font-size: 16px">100</span></td>
<td><span style="font-size: 16px">无法创建另一个系统信号灯。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EXCL_SEM_ALREADY_OWNED</span></td>
<td><span style="font-size: 16px">101</span></td>
<td><span style="font-size: 16px">另一个进程拥有独占的信号灯。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SEM_IS_SET</span></td>
<td><span style="font-size: 16px">102</span></td>
<td><span style="font-size: 16px">已设置信号灯,无法关闭。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_SEM_REQUESTS</span></td>
<td><span style="font-size: 16px">103</span></td>
<td><span style="font-size: 16px">无法再设置信号灯。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_AT_INTERRUPT_TIME</span></td>
<td><span style="font-size: 16px">104</span></td>
<td><span style="font-size: 16px">无法在中断时请求独占的信号灯。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SEM_OWNER_DIED</span></td>
<td><span style="font-size: 16px">105</span></td>
<td><span style="font-size: 16px">此信号灯的前一个所有权已结束。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SEM_USER_LIMIT</span></td>
<td><span style="font-size: 16px">106</span></td>
<td><span style="font-size: 16px">在驱动器 %1 上插入软盘。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DISK_CHANGE</span></td>
<td><span style="font-size: 16px">107</span></td>
<td><span style="font-size: 16px">由于没有插入另一个软盘,程序停止。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DRIVE_LOCKED</span></td>
<td><span style="font-size: 16px">108</span></td>
<td><span style="font-size: 16px">磁盘在使用中,或被另一个进程锁定。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BROKEN_PIPE</span></td>
<td><span style="font-size: 16px">109</span></td>
<td><span style="font-size: 16px">管道已结束。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_OPEN_FAILED</span></td>
<td><span style="font-size: 16px">110</span></td>
<td><span style="font-size: 16px">系统无法打开指定的设备或文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BUFFER_OVERFLOW</span></td>
<td><span style="font-size: 16px">111</span></td>
<td><span style="font-size: 16px">文件名太长。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DISK_FULL</span></td>
<td><span style="font-size: 16px">112</span></td>
<td><span style="font-size: 16px">磁盘空间不足。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_MORE_SEARCH_HANDLES</span></td>
<td><span style="font-size: 16px">113</span></td>
<td><span style="font-size: 16px">没有更多的内部文件标识符。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_TARGET_HANDLE</span></td>
<td><span style="font-size: 16px">114</span></td>
<td><span style="font-size: 16px">目标内部文件标识符不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_CATEGORY</span></td>
<td><span style="font-size: 16px">117</span></td>
<td><span style="font-size: 16px">应用程序发出的 IOCTL 调用不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_VERIFY_SWITCH</span></td>
<td><span style="font-size: 16px">118</span></td>
<td><span style="font-size: 16px">验证写入的切换参数值不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_DRIVER_LEVEL</span></td>
<td><span style="font-size: 16px">119</span></td>
<td><span style="font-size: 16px">系统不支持请求的命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CALL_NOT_IMPLEMENTED</span></td>
<td><span style="font-size: 16px">120</span></td>
<td><span style="font-size: 16px">这个系统不支持该功能。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SEM_TIMEOUT</span></td>
<td><span style="font-size: 16px">121</span></td>
<td><span style="font-size: 16px">信号灯超时时间已到。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INSUFFICIENT_BUFFER</span></td>
<td><span style="font-size: 16px">122</span></td>
<td><span style="font-size: 16px">传递给系统调用的数据区域太小。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_NAME</span></td>
<td><span style="font-size: 16px">123</span></td>
<td><span style="font-size: 16px">文件名、目录名或卷标语法不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_LEVEL</span></td>
<td><span style="font-size: 16px">124</span></td>
<td><span style="font-size: 16px">系统调用级别不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_VOLUME_LABEL</span></td>
<td><span style="font-size: 16px">125</span></td>
<td><span style="font-size: 16px">磁盘没有卷标。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MOD_NOT_FOUND</span></td>
<td><span style="font-size: 16px">126</span></td>
<td><span style="font-size: 16px">找不到指定的模块。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PROC_NOT_FOUND</span></td>
<td><span style="font-size: 16px">127</span></td>
<td><span style="font-size: 16px">找不到指定的程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WAIT_NO_CHILDREN</span></td>
<td><span style="font-size: 16px">128</span></td>
<td><span style="font-size: 16px">没有等候的子进程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CHILD_NOT_COMPLETE</span></td>
<td><span style="font-size: 16px">129</span></td>
<td><span style="font-size: 16px">%1 应用程序无法在 Win32 模式中运行。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DIRECT_ACCESS_HANDLE</span></td>
<td><span style="font-size: 16px">130</span></td>
<td><span style="font-size: 16px">试图使用操作(而非原始磁盘 I/O)的已打开磁盘分区的文件句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NEGATIVE_SEEK</span></td>
<td><span style="font-size: 16px">131</span></td>
<td><span style="font-size: 16px">试图将文件指针移到文件开头之前。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SEEK_ON_DEVICE</span></td>
<td><span style="font-size: 16px">132</span></td>
<td><span style="font-size: 16px">无法在指定的设备或文件上设置文件指针。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IS_JOIN_TARGET</span></td>
<td><span style="font-size: 16px">133</span></td>
<td><span style="font-size: 16px">包含先前加入驱动器的驱动器无法使用 JOIN 或 SUBST 命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IS_JOINED</span></td>
<td><span style="font-size: 16px">134</span></td>
<td><span style="font-size: 16px">试图在已被合并的驱动器上使用 JOIN 或 SUBST 命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IS_SUBSTED</span></td>
<td><span style="font-size: 16px">135</span></td>
<td><span style="font-size: 16px">试图在已被合并的驱动器上使用 JOIN 或 SUBST 命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_JOINED</span></td>
<td><span style="font-size: 16px">136</span></td>
<td><span style="font-size: 16px">系统试图解除未合并驱动器的 JOIN。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_SUBSTED</span></td>
<td><span style="font-size: 16px">137</span></td>
<td><span style="font-size: 16px">系统试图解除未替代驱动器的 SUBST。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_JOIN_TO_JOIN</span></td>
<td><span style="font-size: 16px">138</span></td>
<td><span style="font-size: 16px">系统试图将驱动器合并到合并驱动器上的目录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SUBST_TO_SUBST</span></td>
<td><span style="font-size: 16px">139</span></td>
<td><span style="font-size: 16px">系统试图将驱动器替代为替代驱动器上的目录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_JOIN_TO_SUBST</span></td>
<td><span style="font-size: 16px">140</span></td>
<td><span style="font-size: 16px">系统试图将驱动器合并到替代驱动器上的目录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SUBST_TO_JOIN</span></td>
<td><span style="font-size: 16px">141</span></td>
<td><span style="font-size: 16px">系统试图替代驱动器为合并驱动器上的目录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BUSY_DRIVE</span></td>
<td><span style="font-size: 16px">142</span></td>
<td><span style="font-size: 16px">系统无法在此时运行 JOIN 或 SUBST。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SAME_DRIVE</span></td>
<td><span style="font-size: 16px">143</span></td>
<td><span style="font-size: 16px">系统无法将驱动器合并到或替代为相同驱动器上的目录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DIR_NOT_ROOT</span></td>
<td><span style="font-size: 16px">144</span></td>
<td><span style="font-size: 16px">目录不是根目录下的子目录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DIR_NOT_EMPTY</span></td>
<td><span style="font-size: 16px">145</span></td>
<td><span style="font-size: 16px">目录不是空的。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IS_SUBST_PATH</span></td>
<td><span style="font-size: 16px">146</span></td>
<td><span style="font-size: 16px">指定的路径已在替代中使用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IS_JOIN_PATH</span></td>
<td><span style="font-size: 16px">147</span></td>
<td><span style="font-size: 16px">资源不足,无法处理此命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PATH_BUSY</span></td>
<td><span style="font-size: 16px">148</span></td>
<td><span style="font-size: 16px">指定的路径无法在此时使用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IS_SUBST_TARGET</span></td>
<td><span style="font-size: 16px">149</span></td>
<td><span style="font-size: 16px">企图将驱动器合并或替代为驱动器上目录是上一个替代的目标的驱动器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SYSTEM_TRACE</span></td>
<td><span style="font-size: 16px">150</span></td>
<td><span style="font-size: 16px">系统跟踪信息未在 CONFIG.SYS 文件中指定,或不允许跟踪。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_EVENT_COUNT</span></td>
<td><span style="font-size: 16px">151</span></td>
<td><span style="font-size: 16px">为 DosMuxSemWait 指定的信号灯事件数量不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_MUXWAITERS</span></td>
<td><span style="font-size: 16px">152</span></td>
<td><span style="font-size: 16px">DosMuxSemWait 没有运行;已设置过多的信号灯。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_LIST_FORMAT</span></td>
<td><span style="font-size: 16px">153</span></td>
<td><span style="font-size: 16px">DosMuxSemWait 列表不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LABEL_TOO_LONG</span></td>
<td><span style="font-size: 16px">154</span></td>
<td><span style="font-size: 16px">输入的卷标超过目标文件系统的长度限制。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_TCBS</span></td>
<td><span style="font-size: 16px">155</span></td>
<td><span style="font-size: 16px">无法创建另一个线程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SIGNAL_REFUSED</span></td>
<td><span style="font-size: 16px">156</span></td>
<td><span style="font-size: 16px">接收人进程拒绝此信号。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DISCARDED</span></td>
<td><span style="font-size: 16px">157</span></td>
<td><span style="font-size: 16px">段已被放弃且无法锁定。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_LOCKED</span></td>
<td><span style="font-size: 16px">158</span></td>
<td><span style="font-size: 16px">段已解除锁定。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_THREADID_ADDR</span></td>
<td><span style="font-size: 16px">159</span></td>
<td><span style="font-size: 16px">线程 ID 的地址不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_ARGUMENTS</span></td>
<td><span style="font-size: 16px">160</span></td>
<td><span style="font-size: 16px">至少有一个参数不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_PATHNAME</span></td>
<td><span style="font-size: 16px">161</span></td>
<td><span style="font-size: 16px">指定的路径无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SIGNAL_PENDING</span></td>
<td><span style="font-size: 16px">162</span></td>
<td><span style="font-size: 16px">信号已暂停。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MAX_THRDS_REACHED</span></td>
<td><span style="font-size: 16px">164</span></td>
<td><span style="font-size: 16px">无法在系统中创建更多的线程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOCK_FAILED</span></td>
<td><span style="font-size: 16px">167</span></td>
<td><span style="font-size: 16px">无法锁定文件区域。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BUSY</span></td>
<td><span style="font-size: 16px">170</span></td>
<td><span style="font-size: 16px">请求的资源在使用中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANCEL_VIOLATION</span></td>
<td><span style="font-size: 16px">173</span></td>
<td><span style="font-size: 16px">对于提供取消区域进行锁定的请求已完成。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ATOMIC_LOCKS_NOT_SUPPORTED</span></td>
<td><span style="font-size: 16px">174</span></td>
<td><span style="font-size: 16px">文件系统不支持锁定类型的最小单元更改。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SEGMENT_NUMBER</span></td>
<td><span style="font-size: 16px">180</span></td>
<td><span style="font-size: 16px">系统检测出错误的段号。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ORDINAL</span></td>
<td><span style="font-size: 16px">182</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ALREADY_EXISTS</span></td>
<td><span style="font-size: 16px">183</span></td>
<td><span style="font-size: 16px">当文件已存在时,无法创建该文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_FLAG_NUMBER</span></td>
<td><span style="font-size: 16px">186</span></td>
<td><span style="font-size: 16px">传递的标志不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SEM_NOT_FOUND</span></td>
<td><span style="font-size: 16px">187</span></td>
<td><span style="font-size: 16px">找不到指定的系统信号灯名称。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_STARTING_CODESEG</span></td>
<td><span style="font-size: 16px">188</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_STACKSEG</span></td>
<td><span style="font-size: 16px">189</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_MODULETYPE</span></td>
<td><span style="font-size: 16px">190</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_EXE_SIGNATURE</span></td>
<td><span style="font-size: 16px">191</span></td>
<td><span style="font-size: 16px">无法在 Win32 模式下运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EXE_MARKED_INVALID</span></td>
<td><span style="font-size: 16px">192</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_EXE_FORMAT</span></td>
<td><span style="font-size: 16px">193</span></td>
<td><span style="font-size: 16px">%1 不是有效的 Win32 应用程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ITERATED_DATA_EXCEEDS_64k</span></td>
<td><span style="font-size: 16px">194</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_MINALLOCSIZE</span></td>
<td><span style="font-size: 16px">195</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DYNLINK_FROM_INVALID_RING</span></td>
<td><span style="font-size: 16px">196</span></td>
<td><span style="font-size: 16px">操作系统无法运行此应用程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IOPL_NOT_ENABLED</span></td>
<td><span style="font-size: 16px">197</span></td>
<td><span style="font-size: 16px">操作系统当前的配置不能运行此应用程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SEGDPL</span></td>
<td><span style="font-size: 16px">198</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_AUTODATASEG_EXCEEDS_64k</span></td>
<td><span style="font-size: 16px">199</span></td>
<td><span style="font-size: 16px">操作系统无法运行此应用程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RING2SEG_MUST_BE_MOVABLE</span></td>
<td><span style="font-size: 16px">200</span></td>
<td><span style="font-size: 16px">代码段不可大于或等于 64K。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RELOC_CHAIN_XEEDS_SEGLIM</span></td>
<td><span style="font-size: 16px">201</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INFLOOP_IN_RELOC_CHAIN</span></td>
<td><span style="font-size: 16px">202</span></td>
<td><span style="font-size: 16px">操作系统无法运行 %1。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ENVVAR_NOT_FOUND</span></td>
<td><span style="font-size: 16px">203</span></td>
<td><span style="font-size: 16px">操作系统找不到已输入的环境选项。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SIGNAL_SENT</span></td>
<td><span style="font-size: 16px">205</span></td>
<td><span style="font-size: 16px">命令子树中的进程没有信号处理程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FILENAME_EXCED_RANGE</span></td>
<td><span style="font-size: 16px">206</span></td>
<td><span style="font-size: 16px">文件名或扩展名太长。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RING2_STACK_IN_USE</span></td>
<td><span style="font-size: 16px">207</span></td>
<td><span style="font-size: 16px">第 2 环堆栈已被占用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_META_EXPANSION_TOO_LONG</span></td>
<td><span style="font-size: 16px">208</span></td>
<td><span style="font-size: 16px">没有正确输入文件名通配符 * 或 ?,或指定过多的文件名通配符。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SIGNAL_NUMBER</span></td>
<td><span style="font-size: 16px">209</span></td>
<td><span style="font-size: 16px">正在发送的信号不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_THREAD_1_INACTIVE</span></td>
<td><span style="font-size: 16px">210</span></td>
<td><span style="font-size: 16px">无法设置信号处理程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOCKED</span></td>
<td><span style="font-size: 16px">212</span></td>
<td><span style="font-size: 16px">段已锁定且无法重新分配。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_MODULES</span></td>
<td><span style="font-size: 16px">214</span></td>
<td><span style="font-size: 16px">连到该程序或动态链接模块的动态链接模块太多。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NESTING_NOT_ALLOWED</span></td>
<td><span style="font-size: 16px">215</span></td>
<td><span style="font-size: 16px">无法嵌套调用 LoadModule。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EXE_MACHINE_TYPE_MISMATCH</span></td>
<td><span style="font-size: 16px">216</span></td>
<td><span style="font-size: 16px">图像文件 %1 是有效的,但不适用于此机类型。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_PIPE</span></td>
<td><span style="font-size: 16px">230</span></td>
<td><span style="font-size: 16px">管道状态无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PIPE_BUSY</span></td>
<td><span style="font-size: 16px">231</span></td>
<td><span style="font-size: 16px">所有的管道范例都在使用中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_DATA</span></td>
<td><span style="font-size: 16px">232</span></td>
<td><span style="font-size: 16px">管道正在被关闭。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PIPE_NOT_CONNECTED</span></td>
<td><span style="font-size: 16px">233</span></td>
<td><span style="font-size: 16px">管道的另一端上无任何进程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MORE_DATA</span></td>
<td><span style="font-size: 16px">234</span></td>
<td><span style="font-size: 16px">有更多数据可用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_VC_DISCONNECTED</span></td>
<td><span style="font-size: 16px">240</span></td>
<td><span style="font-size: 16px">已取消会话。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_EA_NAME</span></td>
<td><span style="font-size: 16px">254</span></td>
<td><span style="font-size: 16px">指定的扩展属性名无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EA_LIST_INCONSISTENT</span></td>
<td><span style="font-size: 16px">255</span></td>
<td><span style="font-size: 16px">扩展属性不一致。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_MORE_ITEMS</span></td>
<td><span style="font-size: 16px">259</span></td>
<td><span style="font-size: 16px">没有可用的数据了。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANNOT_COPY</span></td>
<td><span style="font-size: 16px">266</span></td>
<td><span style="font-size: 16px">无法使用复制功能。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DIRECTORY</span></td>
<td><span style="font-size: 16px">267</span></td>
<td><span style="font-size: 16px">目录名无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EAS_DIDNT_FIT</span></td>
<td><span style="font-size: 16px">275</span></td>
<td><span style="font-size: 16px">扩展属性在缓冲区中不适用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EA_FILE_CORRUPT</span></td>
<td><span style="font-size: 16px">276</span></td>
<td><span style="font-size: 16px">装在文件系统上的扩展属性文件已损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EA_TABLE_FULL</span></td>
<td><span style="font-size: 16px">277</span></td>
<td><span style="font-size: 16px">扩展属性表格文件已满。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_EA_HANDLE</span></td>
<td><span style="font-size: 16px">278</span></td>
<td><span style="font-size: 16px">指定的扩展属性句柄无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EAS_NOT_SUPPORTED</span></td>
<td><span style="font-size: 16px">282</span></td>
<td><span style="font-size: 16px">装入的文件系统不支持扩展属性。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_OWNER</span></td>
<td><span style="font-size: 16px">288</span></td>
<td><span style="font-size: 16px">企图释放并非呼叫方所拥有的多用户终端运行程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_POSTS</span></td>
<td><span style="font-size: 16px">298</span></td>
<td><span style="font-size: 16px">发向信号灯的请求过多。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PARTIAL_COPY</span></td>
<td><span style="font-size: 16px">299</span></td>
<td><span style="font-size: 16px">仅完成部分的 ReadProcessMemoty 或 WriteProcessMemory 请求。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MR_MID_NOT_FOUND</span></td>
<td><span style="font-size: 16px">317</span></td>
<td><span style="font-size: 16px">系统无法在消息文件中为 %2 找到消息号为 0x%1 的消息文本。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ADDRESS</span></td>
<td><span style="font-size: 16px">487</span></td>
<td><span style="font-size: 16px">试图访问无效的地址。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ARITHMETIC_OVERFLOW</span></td>
<td><span style="font-size: 16px">534</span></td>
<td><span style="font-size: 16px">算术结果超过 32 位。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PIPE_CONNECTED</span></td>
<td><span style="font-size: 16px">535</span></td>
<td><span style="font-size: 16px">管道的另一端有一进程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PIPE_LISTENING</span></td>
<td><span style="font-size: 16px">536</span></td>
<td><span style="font-size: 16px">等候打开管道另一端的进程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EA_ACCESS_DENIED</span></td>
<td><span style="font-size: 16px">994</span></td>
<td><span style="font-size: 16px">拒绝访问扩展属性。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_OPERATION_ABORTED</span></td>
<td><span style="font-size: 16px">995</span></td>
<td><span style="font-size: 16px">由于线程退出或应用程序请求,已放弃 I/O 操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IO_INCOMPLETE</span></td>
<td><span style="font-size: 16px">996</span></td>
<td><span style="font-size: 16px">重叠 I/O 事件不在信号状态中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IO_PENDING</span></td>
<td><span style="font-size: 16px">997</span></td>
<td><span style="font-size: 16px">重叠 I/O 操作在进行中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOACCESS</span></td>
<td><span style="font-size: 16px">998</span></td>
<td><span style="font-size: 16px">内存分配访问无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SWAPERROR</span></td>
<td><span style="font-size: 16px">999</span></td>
<td><span style="font-size: 16px">执行页内操作时的错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_STACK_OVERFLOW</span></td>
<td><span style="font-size: 16px">1001</span></td>
<td><span style="font-size: 16px">递归太深;堆栈溢出。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_MESSAGE</span></td>
<td><span style="font-size: 16px">1002</span></td>
<td><span style="font-size: 16px">窗口无法在已发送的消息上操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CAN_NOT_COMPLETE</span></td>
<td><span style="font-size: 16px">1003</span></td>
<td><span style="font-size: 16px">无法完成此功能。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_FLAGS</span></td>
<td><span style="font-size: 16px">1004</span></td>
<td><span style="font-size: 16px">无效标志。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNRECOGNIZED_VOLUME</span></td>
<td><span style="font-size: 16px">1005</span></td>
<td><span style="font-size: 16px">此卷不包含可识别的文件系统。请确定所有请求的文件系统驱动程序已加载,且此卷未损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FILE_INVALID</span></td>
<td><span style="font-size: 16px">1006</span></td>
<td><span style="font-size: 16px">文件所在的卷已被外部改变,因此打开的文件不再有效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FULLSCREEN_MODE</span></td>
<td><span style="font-size: 16px">1007</span></td>
<td><span style="font-size: 16px">无法在全屏幕模式下运行请求的操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_TOKEN</span></td>
<td><span style="font-size: 16px">1008</span></td>
<td><span style="font-size: 16px">试图引用不存在的令牌。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BADDB</span></td>
<td><span style="font-size: 16px">1009</span></td>
<td><span style="font-size: 16px">配置注册表数据库损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BADKEY</span></td>
<td><span style="font-size: 16px">1010</span></td>
<td><span style="font-size: 16px">配置注册表项无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANTOPEN</span></td>
<td><span style="font-size: 16px">1011</span></td>
<td><span style="font-size: 16px">无法打开配置注册表项。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANTREAD</span></td>
<td><span style="font-size: 16px">1012</span></td>
<td><span style="font-size: 16px">无法读取配置注册表项。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANTWRITE</span></td>
<td><span style="font-size: 16px">1013</span></td>
<td><span style="font-size: 16px">无法写入配置注册表项。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REGISTRY_RECOVERED</span></td>
<td><span style="font-size: 16px">1014</span></td>
<td><span style="font-size: 16px">注册表数据库中的某一文件必须使用记录或替代复制来恢复。恢复成功完成。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REGISTRY_CORRUPT</span></td>
<td><span style="font-size: 16px">1015</span></td>
<td><span style="font-size: 16px">注册表损坏。包含注册表数据的某一文件结构损坏,或系统的文件内存映像损坏,或因为替代副本、日志缺少或损坏而无法恢复文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REGISTRY_IO_FAILED</span></td>
<td><span style="font-size: 16px">1016</span></td>
<td><span style="font-size: 16px">由注册表启动的 I/O 操作失败并无法恢复。注册表无法读入、写出或清除任意一个包含注册表系统映像的文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_REGISTRY_FILE</span></td>
<td><span style="font-size: 16px">1017</span></td>
<td><span style="font-size: 16px">系统试图加载或还原文件到注册表,但指定的文件并非注册表文件格式。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_KEY_DELETED</span></td>
<td><span style="font-size: 16px">1018</span></td>
<td><span style="font-size: 16px">试图在标记为删除的注册表项上进行不合法的操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_LOG_SPACE</span></td>
<td><span style="font-size: 16px">1019</span></td>
<td><span style="font-size: 16px">系统无法分配注册表日志中所需空间。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_KEY_HAS_CHILDREN</span></td>
<td><span style="font-size: 16px">1020</span></td>
<td><span style="font-size: 16px">无法在已有子项或值的注册表项中创建符号链接。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CHILD_MUST_BE_VOLATILE</span></td>
<td><span style="font-size: 16px">1021</span></td>
<td><span style="font-size: 16px">无法在易变父项下创建稳定子项。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOTIFY_ENUM_DIR</span></td>
<td><span style="font-size: 16px">1022</span></td>
<td><span style="font-size: 16px">正在完成通知更改请求,而且信息没有返回到呼叫方的缓冲区中。当前呼叫方必须枚举文件来查找改动。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DEPENDENT_SERVICES_RUNNING</span></td>
<td><span style="font-size: 16px">1051</span></td>
<td><span style="font-size: 16px">停止控制被发送到其他正在运行的服务所依赖的服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SERVICE_CONTROL</span></td>
<td><span style="font-size: 16px">1052</span></td>
<td><span style="font-size: 16px">请求的控件对此服务无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_REQUEST_TIMEOUT</span></td>
<td><span style="font-size: 16px">1053</span></td>
<td><span style="font-size: 16px">服务没有及时响应启动或控制请求。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_NO_THREAD</span></td>
<td><span style="font-size: 16px">1054</span></td>
<td><span style="font-size: 16px">无法创建此服务的线程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_DATABASE_LOCKED</span></td>
<td><span style="font-size: 16px">1055</span></td>
<td><span style="font-size: 16px">服务数据库已锁定。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_ALREADY_RUNNING</span></td>
<td><span style="font-size: 16px">1056</span></td>
<td><span style="font-size: 16px">服务的范例已在运行中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SERVICE_ACCOUNT</span></td>
<td><span style="font-size: 16px">1057</span></td>
<td><span style="font-size: 16px">帐户名无效或不存在,或者密码对于指定的帐户名无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_DISABLED</span></td>
<td><span style="font-size: 16px">1058</span></td>
<td><span style="font-size: 16px">无法启动服务,原因可能是已被禁用或与其相关联的设备没有启动。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CIRCULAR_DEPENDENCY</span></td>
<td><span style="font-size: 16px">1059</span></td>
<td><span style="font-size: 16px">指定了循环服务依存。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_DOES_NOT_EXIST</span></td>
<td><span style="font-size: 16px">1060</span></td>
<td><span style="font-size: 16px">指定的服务并未以已安装的服务存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_CANNOT_ACCEPT_CTRL</span></td>
<td><span style="font-size: 16px">1061</span></td>
<td><span style="font-size: 16px">服务无法在此时接受控制信息。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_NOT_ACTIVE</span></td>
<td><span style="font-size: 16px">1062</span></td>
<td><span style="font-size: 16px">服务未启动。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FAILED_SERVICE_CONTROLLER_</span></td>
<td><span style="font-size: 16px">1063</span></td>
<td><span style="font-size: 16px">服务进程无法连接到服务控制器上。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EXCEPTION_IN_SERVICE</span></td>
<td><span style="font-size: 16px">1064</span></td>
<td><span style="font-size: 16px">当处理控制请求时,在服务中发生异常。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DATABASE_DOES_NOT_EXIST</span></td>
<td><span style="font-size: 16px">1065</span></td>
<td><span style="font-size: 16px">指定的数据库不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_SPECIFIC_ERROR</span></td>
<td><span style="font-size: 16px">1066</span></td>
<td><span style="font-size: 16px">服务已返回特定的服务错误码。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PROCESS_ABORTED</span></td>
<td><span style="font-size: 16px">1067</span></td>
<td><span style="font-size: 16px">进程意外终止。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_DEPENDENCY_FAIL</span></td>
<td><span style="font-size: 16px">1068</span></td>
<td><span style="font-size: 16px">依存服务或组无法启动。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_LOGON_FAILED</span></td>
<td><span style="font-size: 16px">1069</span></td>
<td><span style="font-size: 16px">由于登录失败而无法启动服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_START_HANG</span></td>
<td><span style="font-size: 16px">1070</span></td>
<td><span style="font-size: 16px">启动后,服务停留在启动暂停状态。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SERVICE_LOCK</span></td>
<td><span style="font-size: 16px">1071</span></td>
<td><span style="font-size: 16px">指定的服务数据库锁定无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_MARKED_FOR_DELETE</span></td>
<td><span style="font-size: 16px">1072</span></td>
<td><span style="font-size: 16px">指定的服务已标记为删除。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_EXISTS</span></td>
<td><span style="font-size: 16px">1073</span></td>
<td><span style="font-size: 16px">指定的服务已存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ALREADY_RUNNING_LKG</span></td>
<td><span style="font-size: 16px">1074</span></td>
<td><span style="font-size: 16px">系统当前以最新的有效配置运行。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_DEPENDENCY_DELETED</span></td>
<td><span style="font-size: 16px">1075</span></td>
<td><span style="font-size: 16px">依存服务不存在,或已被标记为删除。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BOOT_ALREADY_ACCEPTED</span></td>
<td><span style="font-size: 16px">1076</span></td>
<td><span style="font-size: 16px">已接受使用当前引导作为最后的有效控制设置。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_NEVER_STARTED</span></td>
<td><span style="font-size: 16px">1077</span></td>
<td><span style="font-size: 16px">上次启动之后,仍未尝试引导服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DUPLICATE_SERVICE_NAME</span></td>
<td><span style="font-size: 16px">1078</span></td>
<td><span style="font-size: 16px">名称已用作服务名或服务显示名。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DIFFERENT_SERVICE_ACCOUNT</span></td>
<td><span style="font-size: 16px">1079</span></td>
<td><span style="font-size: 16px">此服务的帐户不同于运行于同一进程上的其他服务的帐户。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_END_OF_MEDIA</span></td>
<td><span style="font-size: 16px">1100</span></td>
<td><span style="font-size: 16px">已达磁带的实际结尾。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FILEMARK_DETECTED</span></td>
<td><span style="font-size: 16px">1101</span></td>
<td><span style="font-size: 16px">磁带访问已达文件标记。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BEGINNING_OF_MEDIA</span></td>
<td><span style="font-size: 16px">1102</span></td>
<td><span style="font-size: 16px">已达磁带或磁盘分区的开头。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SETMARK_DETECTED</span></td>
<td><span style="font-size: 16px">1103</span></td>
<td><span style="font-size: 16px">磁带访问已达一组文件的结尾。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_DATA_DETECTED</span></td>
<td><span style="font-size: 16px">1104</span></td>
<td><span style="font-size: 16px">磁带上不再有任何数据。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PARTITION_FAILURE</span></td>
<td><span style="font-size: 16px">1105</span></td>
<td><span style="font-size: 16px">磁带不能分区。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_BLOCK_LENGTH</span></td>
<td><span style="font-size: 16px">1106</span></td>
<td><span style="font-size: 16px">在访问多卷分区的新磁带时,当前的块大小不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DEVICE_NOT_PARTITIONED</span></td>
<td><span style="font-size: 16px">1107</span></td>
<td><span style="font-size: 16px">在加载磁带时找不到磁带分区信息。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNABLE_TO_LOCK_MEDIA</span></td>
<td><span style="font-size: 16px">1108</span></td>
<td><span style="font-size: 16px">无法锁定媒体弹出功能。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNABLE_TO_UNLOAD_MEDIA</span></td>
<td><span style="font-size: 16px">1109</span></td>
<td><span style="font-size: 16px">无法卸载介质。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MEDIA_CHANGED</span></td>
<td><span style="font-size: 16px">1110</span></td>
<td><span style="font-size: 16px">驱动器中的介质可能已更改。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BUS_RESET</span></td>
<td><span style="font-size: 16px">1111</span></td>
<td><span style="font-size: 16px">已复位 I/O 总线。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_MEDIA_IN_DRIVE</span></td>
<td><span style="font-size: 16px">1112</span></td>
<td><span style="font-size: 16px">驱动器中没有媒体。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_UNICODE_TRANSLATION</span></td>
<td><span style="font-size: 16px">1113</span></td>
<td><span style="font-size: 16px">在多字节的目标代码页中,没有此 Unicode 字符可以映射到的字符。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DLL_INIT_FAILED</span></td>
<td><span style="font-size: 16px">1114</span></td>
<td><span style="font-size: 16px">动态链接库(DLL)初始化例程失败。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SHUTDOWN_IN_PROGRESS</span></td>
<td><span style="font-size: 16px">1115</span></td>
<td><span style="font-size: 16px">系统正在关机。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SHUTDOWN_IN_PROGRESS</span></td>
<td><span style="font-size: 16px">1116</span></td>
<td><span style="font-size: 16px">因为没有任何进行中的关机过程,所以无法中断系统关机。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IO_DEVICE</span></td>
<td><span style="font-size: 16px">1117</span></td>
<td><span style="font-size: 16px">由于 I/O 设备错误,无法运行此项请求。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERIAL_NO_DEVICE</span></td>
<td><span style="font-size: 16px">1118</span></td>
<td><span style="font-size: 16px">串行设备初始化不成功。串行驱动程序将卸载。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_IRQ_BUSY</span></td>
<td><span style="font-size: 16px">1119</span></td>
<td><span style="font-size: 16px">无法打开正在与其他设备共享中断请求(IRQ)的设备。至少有一个使用该 IRQ 的其他设备已打开。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MORE_WRITES</span></td>
<td><span style="font-size: 16px">1120</span></td>
<td><span style="font-size: 16px">序列 I/O 操作已由另一个串行口的写入完成。(IOCTL_SERIAL_XOFF_COUNTER 已达零。)</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_COUNTER_TIMEOUT</span></td>
<td><span style="font-size: 16px">1121</span></td>
<td><span style="font-size: 16px">因为已过超时时间,所以串行 I/O 操作完成。(IOCTL_SERIAL_XOFF_COUNTER 未达零。)</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FLOPPY_ID_MARK_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1122</span></td>
<td><span style="font-size: 16px">在软盘上找不到 ID 地址标记。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FLOPPY_WRONG_CYLINDER</span></td>
<td><span style="font-size: 16px">1123</span></td>
<td><span style="font-size: 16px">软盘扇区 ID 字符域与软盘控制器磁道地址不匹配。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FLOPPY_UNKNOWN_ERROR</span></td>
<td><span style="font-size: 16px">1124</span></td>
<td><span style="font-size: 16px">软盘控制器报告软盘驱动程序不能识别的错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FLOPPY_BAD_REGISTERS</span></td>
<td><span style="font-size: 16px">1125</span></td>
<td><span style="font-size: 16px">软盘控制器返回与其寄存器中不一致的结果。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DISK_RECALIBRATE_FAILED</span></td>
<td><span style="font-size: 16px">1126</span></td>
<td><span style="font-size: 16px">访问硬盘时,重新校准操作失败。重试之后仍然不成功。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DISK_OPERATION_FAILED</span></td>
<td><span style="font-size: 16px">1127</span></td>
<td><span style="font-size: 16px">访问硬盘时,磁盘操作失败。重试之后仍然不成功。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DISK_RESET_FAILED</span></td>
<td><span style="font-size: 16px">1128</span></td>
<td><span style="font-size: 16px">当访问硬盘时,即使失败,仍须复位磁盘控制器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EOM_OVERFLOW</span></td>
<td><span style="font-size: 16px">1129</span></td>
<td><span style="font-size: 16px">已达磁带结尾。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_ENOUGH_SERVER_MEMORY</span></td>
<td><span style="font-size: 16px">1130</span></td>
<td><span style="font-size: 16px">服务器存储空间不足,无法处理此命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_POSSIBLE_DEADLOCK</span></td>
<td><span style="font-size: 16px">1131</span></td>
<td><span style="font-size: 16px">检测出潜在的死锁状态。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MAPPED_ALIGNMENT</span></td>
<td><span style="font-size: 16px">1132</span></td>
<td><span style="font-size: 16px">指定的基址或文件偏移量没有适当对齐。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SET_POWER_STATE_VETOED</span></td>
<td><span style="font-size: 16px">1140</span></td>
<td><span style="font-size: 16px">改变系统供电状态的尝试被另一应用程序或驱动程序否决。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SET_POWER_STATE_FAILED</span></td>
<td><span style="font-size: 16px">1141</span></td>
<td><span style="font-size: 16px">系统 BIOS 改变系统供电状态的尝试失败。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_LINKS</span></td>
<td><span style="font-size: 16px">1142</span></td>
<td><span style="font-size: 16px">试图在文件上创建超过文件系统支持的链接数。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_OLD_WIN_VERSION</span></td>
<td><span style="font-size: 16px">1150</span></td>
<td><span style="font-size: 16px">指定程序要求更新的 Windows 版本。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_APP_WRONG_OS</span></td>
<td><span style="font-size: 16px">1151</span></td>
<td><span style="font-size: 16px">指定程序不是 Windows 或 MS-DOS 程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SINGLE_INSTANCE_APP</span></td>
<td><span style="font-size: 16px">1152</span></td>
<td><span style="font-size: 16px">只能启动该指定程序的一个范例。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RMODE_APP</span></td>
<td><span style="font-size: 16px">1153</span></td>
<td><span style="font-size: 16px">该指定程序是为以前一个版本的的 Windows 而写的。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_DLL</span></td>
<td><span style="font-size: 16px">1154</span></td>
<td><span style="font-size: 16px">运行该应用程序所需的一个库文件已被损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_ASSOCIATION</span></td>
<td><span style="font-size: 16px">1155</span></td>
<td><span style="font-size: 16px">没有应用程序与此操作的指定文件有关联。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DDE_FAIL</span></td>
<td><span style="font-size: 16px">1156</span></td>
<td><span style="font-size: 16px">在输送指令到应用程序的过程中出现错误。 </span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DLL_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1157</span></td>
<td><span style="font-size: 16px">执行该应用程序所需的库文件之一无法找到。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_USERNAME</span></td>
<td><span style="font-size: 16px">2202</span></td>
<td><span style="font-size: 16px">指定的用户名无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_CONNECTED</span></td>
<td><span style="font-size: 16px">2250</span></td>
<td><span style="font-size: 16px">此网络连接不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_OPEN_FILES</span></td>
<td><span style="font-size: 16px">2401</span></td>
<td><span style="font-size: 16px">此网络连接有文件打开或请求挂起。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ACTIVE_CONNECTIONS</span></td>
<td><span style="font-size: 16px">2402</span></td>
<td><span style="font-size: 16px">使用中的连接仍存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DEVICE_IN_USE</span></td>
<td><span style="font-size: 16px">2404</span></td>
<td><span style="font-size: 16px">设备正由活动进程使用,无法断开。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_DEVICE</span></td>
<td><span style="font-size: 16px">1200</span></td>
<td><span style="font-size: 16px">指定的设备名无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CONNECTION_UNAVAIL</span></td>
<td><span style="font-size: 16px">1201</span></td>
<td><span style="font-size: 16px">设备当前未连接上,但其为一个记录连接。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DEVICE_ALREADY_REMEMBERED</span></td>
<td><span style="font-size: 16px">1202</span></td>
<td><span style="font-size: 16px">本地设备名称已有到另一网络资源的记录连接。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_NET_OR_BAD_PATH</span></td>
<td><span style="font-size: 16px">1203</span></td>
<td><span style="font-size: 16px">无任何网络提供程序接受指定的网络路径。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_PROVIDER</span></td>
<td><span style="font-size: 16px">1204</span></td>
<td><span style="font-size: 16px">指定的网络提供程序名称无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANNOT_OPEN_PROFILE</span></td>
<td><span style="font-size: 16px">1205</span></td>
<td><span style="font-size: 16px">无法打开网络连接配置文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_PROFILE</span></td>
<td><span style="font-size: 16px">1206</span></td>
<td><span style="font-size: 16px">网络连接配置文件损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_CONTAINER</span></td>
<td><span style="font-size: 16px">1207</span></td>
<td><span style="font-size: 16px">无法枚举空载体。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EXTENDED_ERROR</span></td>
<td><span style="font-size: 16px">1208</span></td>
<td><span style="font-size: 16px">出现了扩展错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_GROUPNAME</span></td>
<td><span style="font-size: 16px">1209</span></td>
<td><span style="font-size: 16px">指定的组名格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_COMPUTERNAME</span></td>
<td><span style="font-size: 16px">1210</span></td>
<td><span style="font-size: 16px">指定的计算机名格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_EVENTNAME</span></td>
<td><span style="font-size: 16px">1211</span></td>
<td><span style="font-size: 16px">指定的事件名格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_DOMAINNAME</span></td>
<td><span style="font-size: 16px">1212</span></td>
<td><span style="font-size: 16px">指定的域名格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SERVICENAME</span></td>
<td><span style="font-size: 16px">1213</span></td>
<td><span style="font-size: 16px">指定的服务名格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_NETNAME</span></td>
<td><span style="font-size: 16px">1214</span></td>
<td><span style="font-size: 16px">指定的网络名格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SHARENAME</span></td>
<td><span style="font-size: 16px">1215</span></td>
<td><span style="font-size: 16px">指定的共享名格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PASSWORDNAME</span></td>
<td><span style="font-size: 16px">1216</span></td>
<td><span style="font-size: 16px">指定的密码格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_MESSAGENAME</span></td>
<td><span style="font-size: 16px">1217</span></td>
<td><span style="font-size: 16px">指定的消息名格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_MESSAGEDEST</span></td>
<td><span style="font-size: 16px">1218</span></td>
<td><span style="font-size: 16px">指定的消息目标格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SESSION_CREDENTIAL_CONFLICT</span></td>
<td><span style="font-size: 16px">1219</span></td>
<td><span style="font-size: 16px">不允许一个用户使用一个以上用户名与一个服务器或共享资源的多重连接。中断与此服务器或共享资源的所有连接,然后再试一次</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REMOTE_SESSION_LIMIT_EXCEEDED</span></td>
<td><span style="font-size: 16px">1220</span></td>
<td><span style="font-size: 16px">试图与网络服务器建立会话,但目前与该服务器建立的会话太多。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DUP_DOMAINNAME</span></td>
<td><span style="font-size: 16px">1221</span></td>
<td><span style="font-size: 16px">工作组或域名已由网络上的另一部计算机使用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_NETWORK</span></td>
<td><span style="font-size: 16px">1222</span></td>
<td><span style="font-size: 16px">网络不存在或尚未启动。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANCELLED</span></td>
<td><span style="font-size: 16px">1223</span></td>
<td><span style="font-size: 16px">操作已被用户取消。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_USER_MAPPED_FILE</span></td>
<td><span style="font-size: 16px">1224</span></td>
<td><span style="font-size: 16px">请求的操作无法在使用用户映射区域打开的文件上执行。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CONNECTION_REFUSED</span></td>
<td><span style="font-size: 16px">1225</span></td>
<td><span style="font-size: 16px">远程系统拒绝网络连接。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_GRACEFUL_DISCONNECT</span></td>
<td><span style="font-size: 16px">1226</span></td>
<td><span style="font-size: 16px">网络连接已被适当地关闭了。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ADDRESS_ALREADY_ASSOCIATED</span></td>
<td><span style="font-size: 16px">1227</span></td>
<td><span style="font-size: 16px">网络传输终结点已有与其关联的地址。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ADDRESS_NOT_ASSOCIATED</span></td>
<td><span style="font-size: 16px">1228</span></td>
<td><span style="font-size: 16px">地址仍未与网络终结点关联。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CONNECTION_INVALID</span></td>
<td><span style="font-size: 16px">1229</span></td>
<td><span style="font-size: 16px">企图在不存在的网络连接上进行操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CONNECTION_ACTIVE</span></td>
<td><span style="font-size: 16px">1230</span></td>
<td><span style="font-size: 16px">企图在使用中的网络连接上进行无效的操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NETWORK_UNREACHABLE</span></td>
<td><span style="font-size: 16px">1231</span></td>
<td><span style="font-size: 16px">不能访问网络位置。有关网络排除故障的信息,请参阅 Windows 帮助。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HOST_UNREACHABLE</span></td>
<td><span style="font-size: 16px">1232</span></td>
<td><span style="font-size: 16px">不能访问网络位置。有关网络排除故障的信息,请参阅 Windows 帮助。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PROTOCOL_UNREACHABLE</span></td>
<td><span style="font-size: 16px">1233</span></td>
<td><span style="font-size: 16px">不能访问网络位置。有关网络排除故障的信息,请参阅 Windows 帮助。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PORT_UNREACHABLE</span></td>
<td><span style="font-size: 16px">1234</span></td>
<td><span style="font-size: 16px">没有任何服务正在远程系统上的目标网络终结点上操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REQUEST_ABORTED</span></td>
<td><span style="font-size: 16px">1235</span></td>
<td><span style="font-size: 16px">请求被终止。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CONNECTION_ABORTED</span></td>
<td><span style="font-size: 16px">1236</span></td>
<td><span style="font-size: 16px">由本地系统终止网络连接。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RETRY</span></td>
<td><span style="font-size: 16px">1237</span></td>
<td><span style="font-size: 16px">操作无法完成。应该重试。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CONNECTION_COUNT_LIMIT</span></td>
<td><span style="font-size: 16px">1238</span></td>
<td><span style="font-size: 16px">因为已达到此帐户的最大同时连接数限制,所以无法连接服务器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOGIN_TIME_RESTRICTION</span></td>
<td><span style="font-size: 16px">1239</span></td>
<td><span style="font-size: 16px">试图在这个帐户未被授权的时间内登录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOGIN_WKSTA_RESTRICTION</span></td>
<td><span style="font-size: 16px">1240</span></td>
<td><span style="font-size: 16px">此帐户并未得到从这个工作站登录的授权。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INCORRECT_ADDRESS</span></td>
<td><span style="font-size: 16px">1241</span></td>
<td><span style="font-size: 16px">请求的操作不能使用这个网络地址。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ALREADY_REGISTERED</span></td>
<td><span style="font-size: 16px">1242</span></td>
<td><span style="font-size: 16px">服务器已经注册。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVICE_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1243</span></td>
<td><span style="font-size: 16px">指定的服务不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_AUTHENTICATED</span></td>
<td><span style="font-size: 16px">1244</span></td>
<td><span style="font-size: 16px">因为用户还未被验证,不能执行所要求的操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_LOGGED_ON</span></td>
<td><span style="font-size: 16px">1245</span></td>
<td><span style="font-size: 16px">因为用户还未登录网络,不能执行所要求的操作。指定的服务不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CONTINUE</span></td>
<td><span style="font-size: 16px">1246</span></td>
<td><span style="font-size: 16px">正在继续工作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ALREADY_INITIALIZED</span></td>
<td><span style="font-size: 16px">1247</span></td>
<td><span style="font-size: 16px">试图进行初始操作,但是初始化已完成。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_MORE_DEVICES</span></td>
<td><span style="font-size: 16px">1248</span></td>
<td><span style="font-size: 16px">没有更多的本地设备。 </span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_ALL_ASSIGNED</span></td>
<td><span style="font-size: 16px">1300</span></td>
<td><span style="font-size: 16px">并非所有被引用的特权都指派给呼叫方。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SOME_NOT_MAPPED</span></td>
<td><span style="font-size: 16px">1301</span></td>
<td><span style="font-size: 16px">帐户名和安全 ID 间的某些映射未完成。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_QUOTAS_FOR_ACCOUNT</span></td>
<td><span style="font-size: 16px">1302</span></td>
<td><span style="font-size: 16px">没有为该帐户特别设置系统配额限制。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOCAL_USER_SESSION_KEY</span></td>
<td><span style="font-size: 16px">1303</span></td>
<td><span style="font-size: 16px">没有可用的加密密钥。返回了一个已知加密密钥。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NULL_LM_PASSWORD</span></td>
<td><span style="font-size: 16px">1304</span></td>
<td><span style="font-size: 16px">密码太复杂,无法转换成 LAN Manager 密码。返回的 LAN Manager 密码为空字符串。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNKNOWN_REVISION</span></td>
<td><span style="font-size: 16px">1305</span></td>
<td><span style="font-size: 16px">修订级别未知。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REVISION_MISMATCH</span></td>
<td><span style="font-size: 16px">1306</span></td>
<td><span style="font-size: 16px">表明两个修订级别是不兼容的。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_OWNER</span></td>
<td><span style="font-size: 16px">1307</span></td>
<td><span style="font-size: 16px">这个安全 ID 不能指派为此对象的所有者。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PRIMARY_GROUP</span></td>
<td><span style="font-size: 16px">1308</span></td>
<td><span style="font-size: 16px">这个安全 ID 不能指派为对象的主要组。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_IMPERSONATION_TOKEN</span></td>
<td><span style="font-size: 16px">1309</span></td>
<td><span style="font-size: 16px">目前未模仿客户端的线程试图在模仿令牌上操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANT_DISABLE_MANDATORY</span></td>
<td><span style="font-size: 16px">1310</span></td>
<td><span style="font-size: 16px">组可能未被禁用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_LOGON_SERVERS</span></td>
<td><span style="font-size: 16px">1311</span></td>
<td><span style="font-size: 16px">目前没有可用的登录服务器处理登录请求。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SUCH_LOGON_SESSION</span></td>
<td><span style="font-size: 16px">1312</span></td>
<td><span style="font-size: 16px">指定的登录会话不存在。可能已被终止。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SUCH_PRIVILEGE</span></td>
<td><span style="font-size: 16px">1313</span></td>
<td><span style="font-size: 16px">指定的特权不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRIVILEGE_NOT_HELD</span></td>
<td><span style="font-size: 16px">1314</span></td>
<td><span style="font-size: 16px">客户端没有所需的特权。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ACCOUNT_NAME</span></td>
<td><span style="font-size: 16px">1315</span></td>
<td><span style="font-size: 16px">提供的名称不是正确格式的帐户名。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_USER_EXISTS</span></td>
<td><span style="font-size: 16px">1316</span></td>
<td><span style="font-size: 16px">指定的用户已存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SUCH_USER</span></td>
<td><span style="font-size: 16px">1317</span></td>
<td><span style="font-size: 16px">指定的用户不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_GROUP_EXISTS</span></td>
<td><span style="font-size: 16px">1318</span></td>
<td><span style="font-size: 16px">指定的组已存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SUCH_GROUP</span></td>
<td><span style="font-size: 16px">1319</span></td>
<td><span style="font-size: 16px">指定的组不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MEMBER_IN_GROUP</span></td>
<td><span style="font-size: 16px">1320</span></td>
<td><span style="font-size: 16px">指定的用户帐户已是指定组的成员,或是因为组包含成员所以无法删除指定的组。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MEMBER_NOT_IN_GROUP</span></td>
<td><span style="font-size: 16px">1321</span></td>
<td><span style="font-size: 16px">指定的用户帐户不是指定组帐户的成员。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LAST_ADMIN</span></td>
<td><span style="font-size: 16px">1322</span></td>
<td><span style="font-size: 16px">无法禁用或删除最后剩余的系统管理帐户。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WRONG_PASSWORD</span></td>
<td><span style="font-size: 16px">1323</span></td>
<td><span style="font-size: 16px">无法更新密码。提供作为当前密码的值不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ILL_FORMED_PASSWORD</span></td>
<td><span style="font-size: 16px">1324</span></td>
<td><span style="font-size: 16px">无法更新密码。提供给新密码的值包含密码中不允许的值。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PASSWORD_RESTRICTION</span></td>
<td><span style="font-size: 16px">1325</span></td>
<td><span style="font-size: 16px">无法更新密码。为新密码提供的值不符合字符域的长度、复杂性或历史要求。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOGON_FAILURE</span></td>
<td><span style="font-size: 16px">1326</span></td>
<td><span style="font-size: 16px">登录失败: 未知的用户名或错误密码。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ACCOUNT_RESTRICTION</span></td>
<td><span style="font-size: 16px">1327</span></td>
<td><span style="font-size: 16px">登录失败: 用户帐户限制。可能的原因包括不允许空密码,登录时间限制,或强制的策略限制。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_LOGON_HOURS</span></td>
<td><span style="font-size: 16px">1328</span></td>
<td><span style="font-size: 16px">登录失败: 违反帐户登录时间限制。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_WORKSTATION</span></td>
<td><span style="font-size: 16px">1329</span></td>
<td><span style="font-size: 16px">登录失败: 不允许用户登录到此计算机。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PASSWORD_EXPIRED</span></td>
<td><span style="font-size: 16px">1330</span></td>
<td><span style="font-size: 16px">登录失败: 指定的帐户密码已过期。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ACCOUNT_DISABLED</span></td>
<td><span style="font-size: 16px">1331</span></td>
<td><span style="font-size: 16px">登录失败: 禁用当前的帐户。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NONE_MAPPED</span></td>
<td><span style="font-size: 16px">1332</span></td>
<td><span style="font-size: 16px">帐户名与安全标识间无任何映射完成。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_LUIDS_REQUESTED</span></td>
<td><span style="font-size: 16px">1333</span></td>
<td><span style="font-size: 16px">一次请求过多的本地用户标识符(LUIDs)。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LUIDS_EXHAUSTED</span></td>
<td><span style="font-size: 16px">1334</span></td>
<td><span style="font-size: 16px">无更多可用的本地用户标识符(LUIDs)。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SUB_AUTHORITY</span></td>
<td><span style="font-size: 16px">1335</span></td>
<td><span style="font-size: 16px">对于该特别用法,安全 ID 的次级授权部分无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ACL</span></td>
<td><span style="font-size: 16px">1336</span></td>
<td><span style="font-size: 16px">访问控制列表(ACL)结构无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SID</span></td>
<td><span style="font-size: 16px">1337</span></td>
<td><span style="font-size: 16px">安全 ID 结构无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SECURITY_DESCR</span></td>
<td><span style="font-size: 16px">1338</span></td>
<td><span style="font-size: 16px">安全描述符结构无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_INHERITANCE_ACL</span></td>
<td><span style="font-size: 16px">1340</span></td>
<td><span style="font-size: 16px">无法创建固有的访问控制列表(ACL)或访问控制项目(ACE)。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVER_DISABLED</span></td>
<td><span style="font-size: 16px">1341</span></td>
<td><span style="font-size: 16px">服务器当前已禁用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVER_NOT_DISABLED</span></td>
<td><span style="font-size: 16px">1342</span></td>
<td><span style="font-size: 16px">服务器当前已启用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ID_AUTHORITY</span></td>
<td><span style="font-size: 16px">1343</span></td>
<td><span style="font-size: 16px">所提供的值是无效的标识符颁发机构的值。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ALLOTTED_SPACE_EXCEEDED</span></td>
<td><span style="font-size: 16px">1344</span></td>
<td><span style="font-size: 16px">无更多可用的内存以更新安全信息。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_GROUP_ATTRIBUTES</span></td>
<td><span style="font-size: 16px">1345</span></td>
<td><span style="font-size: 16px">指定的特性无效,或不与组的特性兼容。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_IMPERSONATION_LEVEL</span></td>
<td><span style="font-size: 16px">1346</span></td>
<td><span style="font-size: 16px">指定的模拟级别无效,或所提供的模拟级别无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANT_OPEN_ANONYMOUS</span></td>
<td><span style="font-size: 16px">1347</span></td>
<td><span style="font-size: 16px">无法打开匿名级安全令牌。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_VALIDATION_CLASS</span></td>
<td><span style="font-size: 16px">1348</span></td>
<td><span style="font-size: 16px">请求的验证信息类别无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_TOKEN_TYPE</span></td>
<td><span style="font-size: 16px">1349</span></td>
<td><span style="font-size: 16px">令牌的类型对其尝试使用的方法不适当。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SECURITY_ON_OBJECT</span></td>
<td><span style="font-size: 16px">1350</span></td>
<td><span style="font-size: 16px">无法在与安全性无关联的对象上运行安全性操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANT_ACCESS_DOMAIN_INFO</span></td>
<td><span style="font-size: 16px">1351</span></td>
<td><span style="font-size: 16px">未能从域控制器读取配置信息,或者因为机器不可使用,或者是访问被拒绝。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SERVER_STATE</span></td>
<td><span style="font-size: 16px">1352</span></td>
<td><span style="font-size: 16px">安全帐户管理器(SAM)或本地安全颁发机构(LSA)服务器处于运行安全操作的错误状态。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_DOMAIN_STATE</span></td>
<td><span style="font-size: 16px">1353</span></td>
<td><span style="font-size: 16px">域处于运行安全操作的错误状态。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_DOMAIN_ROLE</span></td>
<td><span style="font-size: 16px">1354</span></td>
<td><span style="font-size: 16px">该操作只能在主要域控制器执行。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SUCH_DOMAIN</span></td>
<td><span style="font-size: 16px">1355</span></td>
<td><span style="font-size: 16px">指定的域不存在,或无法联系。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DOMAIN_EXISTS</span></td>
<td><span style="font-size: 16px">1356</span></td>
<td><span style="font-size: 16px">指定的域已存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DOMAIN_LIMIT_EXCEEDED</span></td>
<td><span style="font-size: 16px">1357</span></td>
<td><span style="font-size: 16px">试图超出每服务器域个数的限制。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INTERNAL_DB_CORRUPTION</span></td>
<td><span style="font-size: 16px">1358</span></td>
<td><span style="font-size: 16px">无法完成请求操作,因为磁盘上的严重媒体失败或数据结构损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INTERNAL_ERROR</span></td>
<td><span style="font-size: 16px">1359</span></td>
<td><span style="font-size: 16px">出现了内部错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_GENERIC_NOT_MAPPED</span></td>
<td><span style="font-size: 16px">1360</span></td>
<td><span style="font-size: 16px">通用访问类型包含于已映射到非通用类型的访问掩码中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_DESCRIPTOR_FORMAT</span></td>
<td><span style="font-size: 16px">1361</span></td>
<td><span style="font-size: 16px">安全描述符格式不正确(绝对或自相关的)。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_LOGON_PROCESS</span></td>
<td><span style="font-size: 16px">1362</span></td>
<td><span style="font-size: 16px">请求的操作只准登录过程使用。该调用过程并未被记录为登录过程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOGON_SESSION_EXISTS</span></td>
<td><span style="font-size: 16px">1363</span></td>
<td><span style="font-size: 16px">无法使用已在使用中的标识启动新的会话。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SUCH_PACKAGE</span></td>
<td><span style="font-size: 16px">1364</span></td>
<td><span style="font-size: 16px">特定的身份验证程序包未知。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_LOGON_SESSION_STATE</span></td>
<td><span style="font-size: 16px">1365</span></td>
<td><span style="font-size: 16px">登录会话并非处于与请求操作一致的状态中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOGON_SESSION_COLLISION</span></td>
<td><span style="font-size: 16px">1366</span></td>
<td><span style="font-size: 16px">登录会话标识已在使用中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_LOGON_TYPE</span></td>
<td><span style="font-size: 16px">1367</span></td>
<td><span style="font-size: 16px">登录请求包含无效的登录类型值。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANNOT_IMPERSONATE</span></td>
<td><span style="font-size: 16px">1368</span></td>
<td><span style="font-size: 16px">在使用命名管道读取数据之前,无法经由该管道模拟。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RXACT_INVALID_STATE</span></td>
<td><span style="font-size: 16px">1369</span></td>
<td><span style="font-size: 16px">注册表子树的事务处理状态与请求状态不一致。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RXACT_COMMIT_FAILURE</span></td>
<td><span style="font-size: 16px">1370</span></td>
<td><span style="font-size: 16px">安全性数据库内部出现损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SPECIAL_ACCOUNT</span></td>
<td><span style="font-size: 16px">1371</span></td>
<td><span style="font-size: 16px">无法在内置帐户上运行此操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SPECIAL_GROUP</span></td>
<td><span style="font-size: 16px">1372</span></td>
<td><span style="font-size: 16px">无法在内置特殊组上运行此操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SPECIAL_USER</span></td>
<td><span style="font-size: 16px">1373</span></td>
<td><span style="font-size: 16px">无法在内置特殊用户上运行此操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MEMBERS_PRIMARY_GROUP</span></td>
<td><span style="font-size: 16px">1374</span></td>
<td><span style="font-size: 16px">无法从组中删除用户,因为当前组为用户的主要组。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOKEN_ALREADY_IN_USE</span></td>
<td><span style="font-size: 16px">1375</span></td>
<td><span style="font-size: 16px">令牌已作为主要令牌使用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SUCH_ALIAS</span></td>
<td><span style="font-size: 16px">1376</span></td>
<td><span style="font-size: 16px">指定的本地组不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MEMBER_NOT_IN_ALIAS</span></td>
<td><span style="font-size: 16px">1377</span></td>
<td><span style="font-size: 16px">指定的帐户名不是本地组的成员。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MEMBER_IN_ALIAS</span></td>
<td><span style="font-size: 16px">1378</span></td>
<td><span style="font-size: 16px">指定的帐户名已是本地组的成员。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ALIAS_EXISTS</span></td>
<td><span style="font-size: 16px">1379</span></td>
<td><span style="font-size: 16px">指定的本地组已存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOGON_NOT_GRANTED</span></td>
<td><span style="font-size: 16px">1380</span></td>
<td><span style="font-size: 16px">登录失败: 未授予用户在此计算机上的请求登录类型。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_SECRETS</span></td>
<td><span style="font-size: 16px">1381</span></td>
<td><span style="font-size: 16px">已超过在单一系统中可保存机密的最大个数。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SECRET_TOO_LONG</span></td>
<td><span style="font-size: 16px">1382</span></td>
<td><span style="font-size: 16px">机密的长度超过允许的最大长度。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INTERNAL_DB_ERROR</span></td>
<td><span style="font-size: 16px">1383</span></td>
<td><span style="font-size: 16px">本地安全颁发机构数据库内部包含不一致性。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_CONTEXT_IDS</span></td>
<td><span style="font-size: 16px">1384</span></td>
<td><span style="font-size: 16px">在尝试登录的过程中,用户的安全上下文积累了过多的安全标识。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOGON_TYPE_NOT_GRANTED</span></td>
<td><span style="font-size: 16px">1385</span></td>
<td><span style="font-size: 16px">登录失败: 未授予用户在此计算机上的请求登录类型。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NT_CROSS_ENCRYPTION_REQUIRED</span></td>
<td><span style="font-size: 16px">1386</span></td>
<td><span style="font-size: 16px">更改用户密码时需要交叉加密密码。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SUCH_MEMBER</span></td>
<td><span style="font-size: 16px">1387</span></td>
<td><span style="font-size: 16px">该成员不存在,因此不能将其添加到本地组中或从本地组删除。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_MEMBER</span></td>
<td><span style="font-size: 16px">1388</span></td>
<td><span style="font-size: 16px">无法将新成员加入到本地组中,因为成员的帐户类型错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TOO_MANY_SIDS</span></td>
<td><span style="font-size: 16px">1389</span></td>
<td><span style="font-size: 16px">已指定过多的安全标识。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LM_CROSS_ENCRYPTION_REQUIRED</span></td>
<td><span style="font-size: 16px">1390</span></td>
<td><span style="font-size: 16px">更改此用户密码时需要交叉加密密码。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_INHERITANCE</span></td>
<td><span style="font-size: 16px">1391</span></td>
<td><span style="font-size: 16px">表明 ACL 未包含任何可承继的组件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FILE_CORRUPT</span></td>
<td><span style="font-size: 16px">1392</span></td>
<td><span style="font-size: 16px">文件或目录损坏且无法读取。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DISK_CORRUPT</span></td>
<td><span style="font-size: 16px">1393</span></td>
<td><span style="font-size: 16px">磁盘结构损坏且无法读取。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_USER_SESSION_KEY</span></td>
<td><span style="font-size: 16px">1394</span></td>
<td><span style="font-size: 16px">没有指定登录会话的用户会话密钥。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LICENSE_QUOTA_EXCEEDED</span></td>
<td><span style="font-size: 16px">1395</span></td>
<td><span style="font-size: 16px">正在访问的服务有连接数目授权限制。这时候已经无法再连接,原因是已经到了可接受的连接数目上限。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_WINDOW_HANDLE</span></td>
<td><span style="font-size: 16px">1400</span></td>
<td><span style="font-size: 16px">无效的窗口句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_MENU_HANDLE</span></td>
<td><span style="font-size: 16px">1401</span></td>
<td><span style="font-size: 16px">无效的菜单句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_CURSOR_HANDLE</span></td>
<td><span style="font-size: 16px">1402</span></td>
<td><span style="font-size: 16px">无效的光标句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ACCEL_HANDLE</span></td>
<td><span style="font-size: 16px">1403</span></td>
<td><span style="font-size: 16px">无效的加速器表句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_HOOK_HANDLE</span></td>
<td><span style="font-size: 16px">1404</span></td>
<td><span style="font-size: 16px">无效的挂钩句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_DWP_HANDLE</span></td>
<td><span style="font-size: 16px">1405</span></td>
<td><span style="font-size: 16px">无效的多重窗口位置结构句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TLW_WITH_WSCHILD</span></td>
<td><span style="font-size: 16px">1406</span></td>
<td><span style="font-size: 16px">无法创建最上层子窗口。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CANNOT_FIND_WND_CLASS</span></td>
<td><span style="font-size: 16px">1407</span></td>
<td><span style="font-size: 16px">找不到窗口类别。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WINDOW_OF_OTHER_THREAD</span></td>
<td><span style="font-size: 16px">1408</span></td>
<td><span style="font-size: 16px">无效窗口;它属于另一线程。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HOTKEY_ALREADY_REGISTERED</span></td>
<td><span style="font-size: 16px">1409</span></td>
<td><span style="font-size: 16px">热键已注册。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CLASS_ALREADY_EXISTS</span></td>
<td><span style="font-size: 16px">1410</span></td>
<td><span style="font-size: 16px">类别已存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CLASS_DOES_NOT_EXIST</span></td>
<td><span style="font-size: 16px">1411</span></td>
<td><span style="font-size: 16px">类别不存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CLASS_HAS_WINDOWS</span></td>
<td><span style="font-size: 16px">1412</span></td>
<td><span style="font-size: 16px">类别仍有打开的窗口。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_INDEX</span></td>
<td><span style="font-size: 16px">1413</span></td>
<td><span style="font-size: 16px">无效索引。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ICON_HANDLE</span></td>
<td><span style="font-size: 16px">1414</span></td>
<td><span style="font-size: 16px">无效的图标句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRIVATE_DIALOG_INDEX</span></td>
<td><span style="font-size: 16px">1415</span></td>
<td><span style="font-size: 16px">使用专用 DIALOG 窗口字词。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LISTBOX_ID_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1416</span></td>
<td><span style="font-size: 16px">找不到列表框标识。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_WILDCARD_CHARACTERS</span></td>
<td><span style="font-size: 16px">1417</span></td>
<td><span style="font-size: 16px">找不到通配字符。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CLIPBOARD_NOT_OPEN</span></td>
<td><span style="font-size: 16px">1418</span></td>
<td><span style="font-size: 16px">线程没有打开的剪贴板。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HOTKEY_NOT_REGISTERED</span></td>
<td><span style="font-size: 16px">1419</span></td>
<td><span style="font-size: 16px">没有注册热键。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WINDOW_NOT_DIALOG</span></td>
<td><span style="font-size: 16px">1420</span></td>
<td><span style="font-size: 16px">窗口不是合法的对话窗口。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CONTROL_ID_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1421</span></td>
<td><span style="font-size: 16px">找不到控件 ID。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_COMBOBOX_MESSAGE</span></td>
<td><span style="font-size: 16px">1422</span></td>
<td><span style="font-size: 16px">因为没有编辑控制,所以组合框的消息无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WINDOW_NOT_COMBOBOX</span></td>
<td><span style="font-size: 16px">1423</span></td>
<td><span style="font-size: 16px">窗口不是组合框。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_EDIT_HEIGHT</span></td>
<td><span style="font-size: 16px">1424</span></td>
<td><span style="font-size: 16px">高度必须小于 256。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DC_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1425</span></td>
<td><span style="font-size: 16px">无效的设备上下文(DC)句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_HOOK_FILTER</span></td>
<td><span style="font-size: 16px">1426</span></td>
<td><span style="font-size: 16px">无效的挂接程序类型。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_FILTER_PROC</span></td>
<td><span style="font-size: 16px">1427</span></td>
<td><span style="font-size: 16px">无效的挂接程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HOOK_NEEDS_HMOD</span></td>
<td><span style="font-size: 16px">1428</span></td>
<td><span style="font-size: 16px">没有模块句柄无法设置非本机的挂接。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_GLOBAL_ONLY_HOOK</span></td>
<td><span style="font-size: 16px">1429</span></td>
<td><span style="font-size: 16px">此挂接程序只可整体设置。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_JOURNAL_HOOK_SET</span></td>
<td><span style="font-size: 16px">1430</span></td>
<td><span style="font-size: 16px">日志挂接程序已安装。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HOOK_NOT_INSTALLED</span></td>
<td><span style="font-size: 16px">1431</span></td>
<td><span style="font-size: 16px">挂接程序尚未安装。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_LB_MESSAGE</span></td>
<td><span style="font-size: 16px">1432</span></td>
<td><span style="font-size: 16px">单一选择列表框的无效消息。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SETCOUNT_ON_BAD_LB</span></td>
<td><span style="font-size: 16px">1433</span></td>
<td><span style="font-size: 16px">LB_SETCOUNT 发送到非被动的列表框。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LB_WITHOUT_TABSTOPS</span></td>
<td><span style="font-size: 16px">1434</span></td>
<td><span style="font-size: 16px">此列表框不支持 Tab 键宽度。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DESTROY_OBJECT_OF_OTHER_THREAD</span></td>
<td><span style="font-size: 16px">1435</span></td>
<td><span style="font-size: 16px">无法毁坏由另一个线程创建的对象。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CHILD_WINDOW_MENU</span></td>
<td><span style="font-size: 16px">1436</span></td>
<td><span style="font-size: 16px">子窗口没有菜单。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SYSTEM_MENU</span></td>
<td><span style="font-size: 16px">1437</span></td>
<td><span style="font-size: 16px">窗口没有系统菜单。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_MSGBOX_STYLE</span></td>
<td><span style="font-size: 16px">1438</span></td>
<td><span style="font-size: 16px">无效的消息对话框样式。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SPI_VALUE</span></td>
<td><span style="font-size: 16px">1439</span></td>
<td><span style="font-size: 16px">无效的系统范围内的(SPI_*)参数。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SCREEN_ALREADY_LOCKED</span></td>
<td><span style="font-size: 16px">1440</span></td>
<td><span style="font-size: 16px">已锁定屏幕。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HWNDS_HAVE_DIFF_PARENT</span></td>
<td><span style="font-size: 16px">1441</span></td>
<td><span style="font-size: 16px">多重窗口位置结构中窗口的所有句柄必须具有相同的上层。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_CHILD_WINDOW</span></td>
<td><span style="font-size: 16px">1442</span></td>
<td><span style="font-size: 16px">窗口不是子窗口。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_GW_COMMAND</span></td>
<td><span style="font-size: 16px">1443</span></td>
<td><span style="font-size: 16px">无效的 GW_* 命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_THREAD_ID</span></td>
<td><span style="font-size: 16px">1444</span></td>
<td><span style="font-size: 16px">无效的线程标识。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NON_MDICHILD_WINDOW</span></td>
<td><span style="font-size: 16px">1445</span></td>
<td><span style="font-size: 16px">无法处理非多重文档接口(MDI)窗口中的消息。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_POPUP_ALREADY_ACTIVE</span></td>
<td><span style="font-size: 16px">1446</span></td>
<td><span style="font-size: 16px">弹出式菜单已经激活。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SCROLLBARS</span></td>
<td><span style="font-size: 16px">1447</span></td>
<td><span style="font-size: 16px">窗口没有滚动条。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SCROLLBAR_RANGE</span></td>
<td><span style="font-size: 16px">1448</span></td>
<td><span style="font-size: 16px">滚动条范围不可大于 MAXLONG。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SHOWWIN_COMMAND</span></td>
<td><span style="font-size: 16px">1449</span></td>
<td><span style="font-size: 16px">无法以指定的方式显示或删除窗口。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_SYSTEM_RESOURCES</span></td>
<td><span style="font-size: 16px">1450</span></td>
<td><span style="font-size: 16px">系统资源不足,无法完成请求的服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NONPAGED_SYSTEM_RESOURCES</span></td>
<td><span style="font-size: 16px">1451</span></td>
<td><span style="font-size: 16px">系统资源不足,无法完成请求的服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PAGED_SYSTEM_RESOURCES</span></td>
<td><span style="font-size: 16px">1452</span></td>
<td><span style="font-size: 16px">系统资源不足,无法完成请求的服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WORKING_SET_QUOTA</span></td>
<td><span style="font-size: 16px">1453</span></td>
<td><span style="font-size: 16px">配额不足,无法完成请求的服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PAGEFILE_QUOTA</span></td>
<td><span style="font-size: 16px">1454</span></td>
<td><span style="font-size: 16px">配额不足,无法完成请求的服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_COMMITMENT_LIMIT</span></td>
<td><span style="font-size: 16px">1455</span></td>
<td><span style="font-size: 16px">页面文件太小,无法完成操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_MENU_ITEM_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1456</span></td>
<td><span style="font-size: 16px">找不到菜单项。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_KEYBOARD_HANDLE</span></td>
<td><span style="font-size: 16px">1457</span></td>
<td><span style="font-size: 16px">键盘布局句柄无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_HOOK_TYPE_NOT_ALLOWED</span></td>
<td><span style="font-size: 16px">1458</span></td>
<td><span style="font-size: 16px">不允许使用挂钩类型。</span></td>
</tr>
<tr>
<td nowrap="nowrap"><span style="font-size: 16px">ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION</span></td>
<td><span style="font-size: 16px">1459</span></td>
<td><span style="font-size: 16px">该操作需要交互式窗口工作站。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TIMEOUT</span></td>
<td><span style="font-size: 16px">1460</span></td>
<td><span style="font-size: 16px">由于超时时间已过,该操作返回。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EVENTLOG_FILE_CORRUPT</span></td>
<td><span style="font-size: 16px">1500</span></td>
<td><span style="font-size: 16px">事件日志文件损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EVENTLOG_CANT_START</span></td>
<td><span style="font-size: 16px">1501</span></td>
<td><span style="font-size: 16px">无法打开事件日志文件,事件日志服务没有启动。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_LOG_FILE_FULL</span></td>
<td><span style="font-size: 16px">1502</span></td>
<td><span style="font-size: 16px">事件日志文件已满。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_EVENTLOG_FILE_CHANGED</span></td>
<td><span style="font-size: 16px">1503</span></td>
<td><span style="font-size: 16px">事件日志文件已在读取间更改。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_STRING_BINDING</span></td>
<td><span style="font-size: 16px">1700</span></td>
<td><span style="font-size: 16px">字符串绑定无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_WRONG_KIND_OF_BINDING</span></td>
<td><span style="font-size: 16px">1701</span></td>
<td><span style="font-size: 16px">绑定句柄的类型不正确。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_BINDING</span></td>
<td><span style="font-size: 16px">1702</span></td>
<td><span style="font-size: 16px">绑定句柄无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_PROTSEQ_NOT_SUPPORTED</span></td>
<td><span style="font-size: 16px">1703</span></td>
<td><span style="font-size: 16px">不支持 RPC 协议序列。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_RPC_PROTSEQ</span></td>
<td><span style="font-size: 16px">1704</span></td>
<td><span style="font-size: 16px">RPC 协议序列无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_STRING_UUID</span></td>
<td><span style="font-size: 16px">1705</span></td>
<td><span style="font-size: 16px">字符串通用唯一标识(UUID)无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_ENDPOINT_FORMAT</span></td>
<td><span style="font-size: 16px">1706</span></td>
<td><span style="font-size: 16px">终结点格式无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_NET_ADDR</span></td>
<td><span style="font-size: 16px">1707</span></td>
<td><span style="font-size: 16px">网络地址无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_ENDPOINT_FOUND</span></td>
<td><span style="font-size: 16px">1708</span></td>
<td><span style="font-size: 16px">找不到终结点。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_TIMEOUT</span></td>
<td><span style="font-size: 16px">1709</span></td>
<td><span style="font-size: 16px">超时值无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_OBJECT_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1710</span></td>
<td><span style="font-size: 16px">找不到对象通用唯一标识(UUID)。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_ALREADY_REGISTERED</span></td>
<td><span style="font-size: 16px">1711</span></td>
<td><span style="font-size: 16px">对象通用唯一标识(UUID)已注册。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_TYPE_ALREADY_REGISTERED</span></td>
<td><span style="font-size: 16px">1712</span></td>
<td><span style="font-size: 16px">类型通用唯一标识(UUID)已注册。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_ALREADY_LISTENING</span></td>
<td><span style="font-size: 16px">1713</span></td>
<td><span style="font-size: 16px">RPC 服务器已在侦听。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_PROTSEQS_REGISTERED</span></td>
<td><span style="font-size: 16px">1714</span></td>
<td><span style="font-size: 16px">未登记任何协议序列。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NOT_LISTENING</span></td>
<td><span style="font-size: 16px">1715</span></td>
<td><span style="font-size: 16px">RPC 服务器未在侦听。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNKNOWN_MGR_TYPE</span></td>
<td><span style="font-size: 16px">1716</span></td>
<td><span style="font-size: 16px">管理程序类型未知。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNKNOWN_IF</span></td>
<td><span style="font-size: 16px">1717</span></td>
<td><span style="font-size: 16px">接口未知。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_BINDINGS</span></td>
<td><span style="font-size: 16px">1718</span></td>
<td><span style="font-size: 16px">没有绑定。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_PROTSEQS</span></td>
<td><span style="font-size: 16px">1719</span></td>
<td><span style="font-size: 16px">没有协议序列。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_CANT_CREATE_ENDPOINT</span></td>
<td><span style="font-size: 16px">1720</span></td>
<td><span style="font-size: 16px">无法创建终结点。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_OUT_OF_RESOURCES</span></td>
<td><span style="font-size: 16px">1721</span></td>
<td><span style="font-size: 16px">资源不足,无法完成该操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_SERVER_UNAVAILABLE</span></td>
<td><span style="font-size: 16px">1722</span></td>
<td><span style="font-size: 16px">RPC 服务器不可用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_SERVER_TOO_BUSY</span></td>
<td><span style="font-size: 16px">1723</span></td>
<td><span style="font-size: 16px">RPC 服务器太忙,不能完成该操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_NETWORK_OPTIONS</span></td>
<td><span style="font-size: 16px">1724</span></td>
<td><span style="font-size: 16px">网络选项无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_CALL_ACTIVE</span></td>
<td><span style="font-size: 16px">1725</span></td>
<td><span style="font-size: 16px">该线程中没有远程过程调用活动。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_CALL_FAILED</span></td>
<td><span style="font-size: 16px">1726</span></td>
<td><span style="font-size: 16px">远程过程调用失败。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_CALL_FAILED_DNE</span></td>
<td><span style="font-size: 16px">1727</span></td>
<td><span style="font-size: 16px">远程过程调用失败且未运行。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_PROTOCOL_ERROR</span></td>
<td><span style="font-size: 16px">1728</span></td>
<td><span style="font-size: 16px">远程过程调用(RPC)协议出错。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNSUPPORTED_TRANS_SYN</span></td>
<td><span style="font-size: 16px">1730</span></td>
<td><span style="font-size: 16px">RPC 服务器不支持传送语法。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNSUPPORTED_TYPE</span></td>
<td><span style="font-size: 16px">1732</span></td>
<td><span style="font-size: 16px">不支持通用唯一标识(UUID)类型。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_TAG</span></td>
<td><span style="font-size: 16px">1733</span></td>
<td><span style="font-size: 16px">标识无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_BOUND</span></td>
<td><span style="font-size: 16px">1734</span></td>
<td><span style="font-size: 16px">数组绑定无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_ENTRY_NAME</span></td>
<td><span style="font-size: 16px">1735</span></td>
<td><span style="font-size: 16px">绑定不包含登录项名字。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_NAME_SYNTAX</span></td>
<td><span style="font-size: 16px">1736</span></td>
<td><span style="font-size: 16px">名称语法无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNSUPPORTED_NAME_SYNTAX</span></td>
<td><span style="font-size: 16px">1737</span></td>
<td><span style="font-size: 16px">不支持该名称语法。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UUID_NO_ADDRESS</span></td>
<td><span style="font-size: 16px">1739</span></td>
<td><span style="font-size: 16px">没有可用来创建通用唯一标识(UUID)的网络地址。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_DUPLICATE_ENDPOINT</span></td>
<td><span style="font-size: 16px">1740</span></td>
<td><span style="font-size: 16px">终结点重复。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNKNOWN_AUTHN_TYPE</span></td>
<td><span style="font-size: 16px">1741</span></td>
<td><span style="font-size: 16px">未知的验证类型。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_MAX_CALLS_TOO_SMALL</span></td>
<td><span style="font-size: 16px">1742</span></td>
<td><span style="font-size: 16px">调用的最大个数太小。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_STRING_TOO_LONG</span></td>
<td><span style="font-size: 16px">1743</span></td>
<td><span style="font-size: 16px">字符串太长。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_PROTSEQ_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1744</span></td>
<td><span style="font-size: 16px">找不到 RPC 协议顺序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_PROCNUM_OUT_OF_RANGE</span></td>
<td><span style="font-size: 16px">1745</span></td>
<td><span style="font-size: 16px">过程号超出范围。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_BINDING_HAS_NO_AUTH</span></td>
<td><span style="font-size: 16px">1746</span></td>
<td><span style="font-size: 16px">绑定不包含任何验证信息。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNKNOWN_AUTHN_SERVICE</span></td>
<td><span style="font-size: 16px">1747</span></td>
<td><span style="font-size: 16px">未知的验证服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNKNOWN_AUTHN_LEVEL</span></td>
<td><span style="font-size: 16px">1748</span></td>
<td><span style="font-size: 16px">未知的验证级别。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_AUTH_IDENTITY</span></td>
<td><span style="font-size: 16px">1749</span></td>
<td><span style="font-size: 16px">安全上下文无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNKNOWN_AUTHZ_SERVICE</span></td>
<td><span style="font-size: 16px">1750</span></td>
<td><span style="font-size: 16px">未知的授权服务。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">EPT_S_INVALID_ENTRY</span></td>
<td><span style="font-size: 16px">1751</span></td>
<td><span style="font-size: 16px">项目无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">EPT_S_CANT_PERFORM_OP</span></td>
<td><span style="font-size: 16px">1752</span></td>
<td><span style="font-size: 16px">服务器终结点无法运行操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">EPT_S_NOT_REGISTERED</span></td>
<td><span style="font-size: 16px">1753</span></td>
<td><span style="font-size: 16px">终结点映射器中没有更多的终结点可用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NOTHING_TO_EXPORT</span></td>
<td><span style="font-size: 16px">1754</span></td>
<td><span style="font-size: 16px">未导出任何接口。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INCOMPLETE_NAME</span></td>
<td><span style="font-size: 16px">1755</span></td>
<td><span style="font-size: 16px">项目名不完整。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_VERS_OPTION</span></td>
<td><span style="font-size: 16px">1756</span></td>
<td><span style="font-size: 16px">版本选项无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_MORE_MEMBERS</span></td>
<td><span style="font-size: 16px">1757</span></td>
<td><span style="font-size: 16px">没有其他成员。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NOT_ALL_OBJS_UNEXPORTED</span></td>
<td><span style="font-size: 16px">1758</span></td>
<td><span style="font-size: 16px">没有内容未导出。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INTERFACE_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1759</span></td>
<td><span style="font-size: 16px">接口没有找到。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_ENTRY_ALREADY_EXISTS</span></td>
<td><span style="font-size: 16px">1760</span></td>
<td><span style="font-size: 16px">项目已存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_ENTRY_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1761</span></td>
<td><span style="font-size: 16px">找不到项目。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NAME_SERVICE_UNAVAILABLE</span></td>
<td><span style="font-size: 16px">1762</span></td>
<td><span style="font-size: 16px">名称服务不可用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_NAF_ID</span></td>
<td><span style="font-size: 16px">1763</span></td>
<td><span style="font-size: 16px">网络地址族无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_CANNOT_SUPPORT</span></td>
<td><span style="font-size: 16px">1764</span></td>
<td><span style="font-size: 16px">不支持请求的操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_CONTEXT_AVAILABLE</span></td>
<td><span style="font-size: 16px">1765</span></td>
<td><span style="font-size: 16px">没有安全上下文可用来允许模仿。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INTERNAL_ERROR</span></td>
<td><span style="font-size: 16px">1766</span></td>
<td><span style="font-size: 16px">远程过程调用(RPC)中发生内部错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_ZERO_DIVIDE</span></td>
<td><span style="font-size: 16px">1767</span></td>
<td><span style="font-size: 16px">RPC 服务器试图以零除整数。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_ADDRESS_ERROR</span></td>
<td><span style="font-size: 16px">1768</span></td>
<td><span style="font-size: 16px">RPC 服务器出现寻址错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_FP_DIV_ZERO</span></td>
<td><span style="font-size: 16px">1769</span></td>
<td><span style="font-size: 16px">RPC 服务器上的浮点操作导至以零做除数。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_FP_UNDERFLOW</span></td>
<td><span style="font-size: 16px">1770</span></td>
<td><span style="font-size: 16px">RPC 服务器上发生浮点下溢。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_FP_OVERFLOW</span></td>
<td><span style="font-size: 16px">1771</span></td>
<td><span style="font-size: 16px">RPC 服务器上发生浮点溢出。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_NO_MORE_ENTRIES</span></td>
<td><span style="font-size: 16px">1772</span></td>
<td><span style="font-size: 16px">自动句柄绑定的可用 RPC 服务器列表已用完。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_SS_CHAR_TRANS_OPEN_FAIL</span></td>
<td><span style="font-size: 16px">1773</span></td>
<td><span style="font-size: 16px">无法打开字符翻译表文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_SS_CHAR_TRANS_SHORT_FILE</span></td>
<td><span style="font-size: 16px">1774</span></td>
<td><span style="font-size: 16px">包含字符转换表的文件小于 512 字节。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_SS_IN_NULL_CONTEXT</span></td>
<td><span style="font-size: 16px">1775</span></td>
<td><span style="font-size: 16px">在远程过程调用时,将空的上下文句柄从客户端传递到主机。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_SS_CONTEXT_DAMAGED</span></td>
<td><span style="font-size: 16px">1777</span></td>
<td><span style="font-size: 16px">在远程过程调用时,上下文句柄已更改。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_SS_HANDLES_MISMATCH</span></td>
<td><span style="font-size: 16px">1778</span></td>
<td><span style="font-size: 16px">传送给远程过程调用的绑定句柄不匹配。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_SS_CANNOT_GET_CALL_HANDLE</span></td>
<td><span style="font-size: 16px">1779</span></td>
<td><span style="font-size: 16px">承接体无法获得远程过程调用句柄。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_NULL_REF_POINTER</span></td>
<td><span style="font-size: 16px">1780</span></td>
<td><span style="font-size: 16px">向占位程序传送了空的索引指针。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_ENUM_VALUE_OUT_OF_RANGE</span></td>
<td><span style="font-size: 16px">1781</span></td>
<td><span style="font-size: 16px">枚举值越界。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_BYTE_COUNT_TOO_SMALL</span></td>
<td><span style="font-size: 16px">1782</span></td>
<td><span style="font-size: 16px">字节计数太小。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_BAD_STUB_DATA</span></td>
<td><span style="font-size: 16px">1783</span></td>
<td><span style="font-size: 16px">占位程序接收到错误数据。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_USER_BUFFER</span></td>
<td><span style="font-size: 16px">1784</span></td>
<td><span style="font-size: 16px">提供给请求操作的用户缓冲区无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNRECOGNIZED_MEDIA</span></td>
<td><span style="font-size: 16px">1785</span></td>
<td><span style="font-size: 16px">磁盘媒体无法识别。可能未被格式化。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_TRUST_LSA_SECRET</span></td>
<td><span style="font-size: 16px">1786</span></td>
<td><span style="font-size: 16px">工作站没有信任机密。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_TRUST_SAM_ACCOUNT</span></td>
<td><span style="font-size: 16px">1787</span></td>
<td><span style="font-size: 16px">服务器上的安全数据库没有此工作站信任关系的计算机帐户。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TRUSTED_DOMAIN_FAILURE</span></td>
<td><span style="font-size: 16px">1788</span></td>
<td><span style="font-size: 16px">主域和受信域间的信任关系失败。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TRUSTED_RELATIONSHIP_FAILURE</span></td>
<td><span style="font-size: 16px">1789</span></td>
<td><span style="font-size: 16px">此工作站和主域间的信任关系失败。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TRUST_FAILURE</span></td>
<td><span style="font-size: 16px">1790</span></td>
<td><span style="font-size: 16px">网络登录失败。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_CALL_IN_PROGRESS</span></td>
<td><span style="font-size: 16px">1791</span></td>
<td><span style="font-size: 16px">此线程的远程过程调用已在进行中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NETLOGON_NOT_STARTED</span></td>
<td><span style="font-size: 16px">1792</span></td>
<td><span style="font-size: 16px">试图登录,但是网络登录服务没有启动。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ACCOUNT_EXPIRED</span></td>
<td><span style="font-size: 16px">1793</span></td>
<td><span style="font-size: 16px">用户帐户已过期。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REDIRECTOR_HAS_OPEN_HANDLES</span></td>
<td><span style="font-size: 16px">1794</span></td>
<td><span style="font-size: 16px">重定向程序正使用中,不能卸装。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINTER_DRIVER_ALREADY_INSTALLED</span></td>
<td><span style="font-size: 16px">1795</span></td>
<td><span style="font-size: 16px">指定的打印机驱动程序已安装。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNKNOWN_PORT</span></td>
<td><span style="font-size: 16px">1796</span></td>
<td><span style="font-size: 16px">指定的端口未知。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNKNOWN_PRINTER_DRIVER</span></td>
<td><span style="font-size: 16px">1797</span></td>
<td><span style="font-size: 16px">未知的打印机驱动程序。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNKNOWN_PRINTPROCESSOR</span></td>
<td><span style="font-size: 16px">1798</span></td>
<td><span style="font-size: 16px">未知的打印机处理器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_SEPARATOR_FILE</span></td>
<td><span style="font-size: 16px">1799</span></td>
<td><span style="font-size: 16px">指定的分隔页文件无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PRIORITY</span></td>
<td><span style="font-size: 16px">1800</span></td>
<td><span style="font-size: 16px">指定的优先级无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PRINTER_NAME</span></td>
<td><span style="font-size: 16px">1801</span></td>
<td><span style="font-size: 16px">打印机名无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINTER_ALREADY_EXISTS</span></td>
<td><span style="font-size: 16px">1802</span></td>
<td><span style="font-size: 16px">打印机已存在。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PRINTER_COMMAND</span></td>
<td><span style="font-size: 16px">1803</span></td>
<td><span style="font-size: 16px">打印机命令无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_DATATYPE</span></td>
<td><span style="font-size: 16px">1804</span></td>
<td><span style="font-size: 16px">指定的数据类型无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_ENVIRONMENT</span></td>
<td><span style="font-size: 16px">1805</span></td>
<td><span style="font-size: 16px">指定的环境无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_MORE_BINDINGS</span></td>
<td><span style="font-size: 16px">1806</span></td>
<td><span style="font-size: 16px">没有更多的绑定。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT</span></td>
<td><span style="font-size: 16px">1807</span></td>
<td><span style="font-size: 16px">所用帐户为域间信任帐户。请使用您的全局用户帐户或本地用户帐户来访问这台服务器。</span></td>
</tr>
<tr>
<td nowrap="nowrap"><span style="font-size: 16px">ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT</span></td>
<td><span style="font-size: 16px">1808</span></td>
<td><span style="font-size: 16px">所用帐户是一个计算机帐户。使用您的全局用户帐户或本地用户帐户来访问此服务器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOLOGON_SERVER_TRUST_ACCOUNT</span></td>
<td><span style="font-size: 16px">1809</span></td>
<td><span style="font-size: 16px">已使用的帐户为服务器信任帐户。使用您的全局用户帐户或本地用户帐户来访问此服务器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DOMAIN_TRUST_INCONSISTENT</span></td>
<td><span style="font-size: 16px">1810</span></td>
<td><span style="font-size: 16px">指定域的名称或安全标识(SID)与该域的信任信息不一致。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SERVER_HAS_OPEN_HANDLES</span></td>
<td><span style="font-size: 16px">1811</span></td>
<td><span style="font-size: 16px">服务器在使用中且无法卸载。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RESOURCE_DATA_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1812</span></td>
<td><span style="font-size: 16px">指定的映像文件不包含资源区域。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RESOURCE_TYPE_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1813</span></td>
<td><span style="font-size: 16px">找不到映像文件中指定的资源类型。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RESOURCE_NAME_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1814</span></td>
<td><span style="font-size: 16px">找不到映像文件中指定的资源名。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RESOURCE_LANG_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1815</span></td>
<td><span style="font-size: 16px">找不到映像文件中指定的资源语言标识。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NOT_ENOUGH_QUOTA</span></td>
<td><span style="font-size: 16px">1816</span></td>
<td><span style="font-size: 16px">配额不足,无法处理此命令。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_INTERFACES</span></td>
<td><span style="font-size: 16px">1817</span></td>
<td><span style="font-size: 16px">未登记任何接口。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_CALL_CANCELLED</span></td>
<td><span style="font-size: 16px">1818</span></td>
<td><span style="font-size: 16px">远程过程调用被取消。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_BINDING_INCOMPLETE</span></td>
<td><span style="font-size: 16px">1819</span></td>
<td><span style="font-size: 16px">绑定句柄不包含所有需要的信息。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_COMM_FAILURE</span></td>
<td><span style="font-size: 16px">1820</span></td>
<td><span style="font-size: 16px">在远程过程调用过程中通信失败。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UNSUPPORTED_AUTHN_LEVEL</span></td>
<td><span style="font-size: 16px">1821</span></td>
<td><span style="font-size: 16px">请求的验证等级不被支持。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NO_PRINC_NAME</span></td>
<td><span style="font-size: 16px">1822</span></td>
<td><span style="font-size: 16px">未登记任何主名称。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NOT_RPC_ERROR</span></td>
<td><span style="font-size: 16px">1823</span></td>
<td><span style="font-size: 16px">指定的错误不是有效的 Windows RPC 错误码。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_UUID_LOCAL_ONLY</span></td>
<td><span style="font-size: 16px">1824</span></td>
<td><span style="font-size: 16px">已经分配只在这台计算机上有效的 UUID。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_SEC_PKG_ERROR</span></td>
<td><span style="font-size: 16px">1825</span></td>
<td><span style="font-size: 16px">出现了特定的安全程序包错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_NOT_CANCELLED</span></td>
<td><span style="font-size: 16px">1826</span></td>
<td><span style="font-size: 16px">线程未取消。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_INVALID_ES_ACTION</span></td>
<td><span style="font-size: 16px">1827</span></td>
<td><span style="font-size: 16px">无效的编码/解码句柄操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_WRONG_ES_VERSION</span></td>
<td><span style="font-size: 16px">1828</span></td>
<td><span style="font-size: 16px">系列程序包的不兼容版本。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_WRONG_STUB_VERSION</span></td>
<td><span style="font-size: 16px">1829</span></td>
<td><span style="font-size: 16px">RPC 占位程序版本不兼容。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_INVALID_PIPE_OBJECT</span></td>
<td><span style="font-size: 16px">1830</span></td>
<td><span style="font-size: 16px">RPC 管道对象无效或已损坏。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_INVALID_PIPE_OPERATION</span></td>
<td><span style="font-size: 16px">1831</span></td>
<td><span style="font-size: 16px">试图在 RPC 管道对象上进行无效操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_X_WRONG_PIPE_VERSION</span></td>
<td><span style="font-size: 16px">1832</span></td>
<td><span style="font-size: 16px">不支持该版本的 RPC 管道。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_GROUP_MEMBER_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1898</span></td>
<td><span style="font-size: 16px">找不到该组成员。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">EPT_S_CANT_CREATE</span></td>
<td><span style="font-size: 16px">1899</span></td>
<td><span style="font-size: 16px">无法创建终结点映射表数据库项。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_INVALID_OBJECT</span></td>
<td><span style="font-size: 16px">1900</span></td>
<td><span style="font-size: 16px">对象通用唯一标识(UUID)为 nil UUID。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_TIME</span></td>
<td><span style="font-size: 16px">1901</span></td>
<td><span style="font-size: 16px">指定的时间无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_FORM_NAME</span></td>
<td><span style="font-size: 16px">1902</span></td>
<td><span style="font-size: 16px">指定的格式名称无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_FORM_SIZE</span></td>
<td><span style="font-size: 16px">1903</span></td>
<td><span style="font-size: 16px">指定的格式大小无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ALREADY_WAITING</span></td>
<td><span style="font-size: 16px">1904</span></td>
<td><span style="font-size: 16px">指定的打印机句柄正等候在</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINTER_DELETED</span></td>
<td><span style="font-size: 16px">1905</span></td>
<td><span style="font-size: 16px">已删除指定的打印机。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PRINTER_STATE</span></td>
<td><span style="font-size: 16px">1906</span></td>
<td><span style="font-size: 16px">打印机的状态无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PASSWORD_MUST_CHANGE</span></td>
<td><span style="font-size: 16px">1907</span></td>
<td><span style="font-size: 16px">用户首次登录之前必须更改密码。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_DOMAIN_CONTROLLER_NOT_FOUND</span></td>
<td><span style="font-size: 16px">1908</span></td>
<td><span style="font-size: 16px">找不到此域的域控制器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_ACCOUNT_LOCKED_OUT</span></td>
<td><span style="font-size: 16px">1909</span></td>
<td><span style="font-size: 16px">引用的帐户当前已锁定,且可能无法登录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">OR_INVALID_OXID</span></td>
<td><span style="font-size: 16px">1910</span></td>
<td><span style="font-size: 16px">没有发现指定的此对象导出者</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">OR_INVALID_OID</span></td>
<td><span style="font-size: 16px">1911</span></td>
<td><span style="font-size: 16px">没有发现指定的对象。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">OR_INVALID_SET</span></td>
<td><span style="font-size: 16px">1912</span></td>
<td><span style="font-size: 16px">没有发现指定的对象解析器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">RPC_S_SEND_INCOMPLETE</span></td>
<td><span style="font-size: 16px">1913</span></td>
<td><span style="font-size: 16px">一些待发数据仍停留在请求缓冲区内。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_NO_BROWSER_SERVERS_FOUND</span></td>
<td><span style="font-size: 16px">6118</span></td>
<td><span style="font-size: 16px">此工作组的服务器列表当前无法使用</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PIXEL_FORMAT</span></td>
<td><span style="font-size: 16px">2000</span></td>
<td><span style="font-size: 16px">无效的像素格式。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_BAD_DRIVER</span></td>
<td><span style="font-size: 16px">2001</span></td>
<td><span style="font-size: 16px">指定的驱动程序无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_WINDOW_STYLE</span></td>
<td><span style="font-size: 16px">2002</span></td>
<td><span style="font-size: 16px">窗口样式或类别属性对此操作无效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_METAFILE_NOT_SUPPORTED</span></td>
<td><span style="font-size: 16px">2003</span></td>
<td><span style="font-size: 16px">不支持请求的图元操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_TRANSFORM_NOT_SUPPORTED</span></td>
<td><span style="font-size: 16px">2004</span></td>
<td><span style="font-size: 16px">不支持请求的变换操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CLIPPING_NOT_SUPPORTED</span></td>
<td><span style="font-size: 16px">2005</span></td>
<td><span style="font-size: 16px">不支持请求的剪切操作。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_UNKNOWN_PRINT_MONITOR</span></td>
<td><span style="font-size: 16px">3000</span></td>
<td><span style="font-size: 16px">指定了未知的打印监视器。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINTER_DRIVER_IN_USE</span></td>
<td><span style="font-size: 16px">3001</span></td>
<td><span style="font-size: 16px">指定的打印机驱动程序当前正在使用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SPOOL_FILE_NOT_FOUND</span></td>
<td><span style="font-size: 16px">3002</span></td>
<td><span style="font-size: 16px">找不到缓冲文件。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SPL_NO_STARTDOC</span></td>
<td><span style="font-size: 16px">3003</span></td>
<td><span style="font-size: 16px">未发送 StartDocPrinter 调用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SPL_NO_ADDJOB</span></td>
<td><span style="font-size: 16px">3004</span></td>
<td><span style="font-size: 16px">未发送 AddJob 调用。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED</span></td>
<td><span style="font-size: 16px">3005</span></td>
<td><span style="font-size: 16px">指定的打印处理器已经安装。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINT_MONITOR_ALREADY_INSTALLED</span></td>
<td><span style="font-size: 16px">3006</span></td>
<td><span style="font-size: 16px">指定的打印监视器已经安装。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INVALID_PRINT_MONITOR</span></td>
<td><span style="font-size: 16px">3007</span></td>
<td><span style="font-size: 16px">该指定的打印监视器不具备所要求的功能。 </span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINT_MONITOR_IN_USE</span></td>
<td><span style="font-size: 16px">3008</span></td>
<td><span style="font-size: 16px">该指定的打印监视器正在使用中。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_PRINTER_HAS_JOBS_QUEUED</span></td>
<td><span style="font-size: 16px">3009</span></td>
<td><span style="font-size: 16px">当打印机有作业排成队列时此操作请求是不允许的。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SUCCESS_REBOOT_REQUIRED</span></td>
<td><span style="font-size: 16px">3010</span></td>
<td><span style="font-size: 16px">请求的操作成功。直到重新启动系统前更改将不会生效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_SUCCESS_RESTART_REQUIRED</span></td>
<td><span style="font-size: 16px">3011</span></td>
<td><span style="font-size: 16px">请求的操作成功。直到重新启动服务前更改将不会生效。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_WINS_INTERNAL</span></td>
<td><span style="font-size: 16px">4000</span></td>
<td><span style="font-size: 16px">WINS 在处理命令时遇到错误。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_CAN_NOT_DEL_LOCAL_WINS</span></td>
<td><span style="font-size: 16px">4001</span></td>
<td><span style="font-size: 16px">本地的 WINS 不能删除。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_STATIC_INIT</span></td>
<td><span style="font-size: 16px">4002</span></td>
<td><span style="font-size: 16px">文件导入操作失败。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_INC_BACKUP</span></td>
<td><span style="font-size: 16px">4003</span></td>
<td><span style="font-size: 16px">备份操作失败。是否先前已作过完整备份?</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_FULL_BACKUP</span></td>
<td><span style="font-size: 16px">4004</span></td>
<td><span style="font-size: 16px">备份操作失败。请检查您备份数据库的目录。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_REC_NON_EXISTENT</span></td>
<td><span style="font-size: 16px">4005</span></td>
<td><span style="font-size: 16px">WINS 数据库中没有这个名称。</span></td>
</tr>
<tr>
<td><span style="font-size: 16px">ERROR_RPL_NOT_ALLOWED</span></td>
<td><span style="font-size: 16px">4006</span></td>
<td><span style="font-size: 16px">不允许复制一个尚未配置的伙伴。</span></td>
</tr>
</tbody>
</table>
<p><span style="font-size: 16px">&nbsp;</span></p>
<p><span style="color: rgba(136, 136, 136, 1); font-size: 12px">创建时间:2020.01.03  更新时间:2020.02.04</span></p>
<p>&nbsp;</p>

</div>
<div id="MySignature" role="contentinfo">
    博客园 滔Roy https://www.cnblogs.com/guorongtao 希望内容对你有所帮助,谢谢!<br><br>
来源:https://www.cnblogs.com/guorongtao/p/12144657.html
頁: [1]
查看完整版本: Delphi GetLastError - 取最后的错误