碰見一個很奇葩的問題, 某些手機在設置了不知什麼後, 某些 APP 死活 HTTPS 請求失敗, 例如以 UMeng 統計HTTP 請求失敗為例, Log如下: UMLOG: (Error Applog) Error Domain=NSURLErrorDomain Code=-1202 "此伺服器的 ...
碰見一個很奇葩的問題, 某些手機在設置了不知什麼後, 某些 APP 死活 HTTPS 請求失敗, 例如以 UMeng 統計HTTP 請求失敗為例, Log如下:
UMLOG: (Error Applog) Error Domain=NSURLErrorDomain Code=-1202 "此伺服器的證書無效。您可能正在連接到一個偽裝成“alogs.umeng.com”的伺服器,這會威脅到您的機密信息的安全。" UserInfo={NSLocalizedDescription=此伺服器的證書無效。您可能正在連接到一個偽裝成“alogs.umeng.com”的伺服器,這會威脅到您的機密信息的安全。, NSLocalizedRecoverySuggestion=您仍要連接此伺服器嗎?, _kCFStreamErrorDomainKey=3, NSUnderlyingError=0x17d4e9f0 {Error Domain=kCFErrorDomainCFNetwork Code=-1202 "此伺服器的證書無效。您可能正在連接到一個偽裝成“alogs.umeng.com”的伺服器,這會威脅到您的接此伺服器嗎?, _kCFStreamErrorDomainKey=3, NSUnderlyingError=0x17d4e9f0 {Error Domain=kCFErrorDomainCFNetwork Code=-1202 "此伺服器的證書無效。您可能正在連接到一個偽裝成“alogs.umeng.com”的伺服器,這會威脅到您的\346機密信息的安全。" UserInfo={NSLocalizedDescription=此伺服器的證書無效。您可能正在連接到一個偽裝成“alogs.umeng.com”的伺服器,這會威脅到您的機密信息的安全。, _kCFNetworkCFStreamSSLErrorOriginalValue=-9814, _kCFStreamPropertySSLClientCertificateState=0, NSLocalizedRecoverySuggestion=您仍要連接此伺服器嗎?, _kCFStreamErrorCodeKey=-9814, kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x17e8ee10>, _kCFStreamErrorDomainKey=3, kCFStreamPropertySSLPeerCertificates=(
"<cert(0x180c6c00) s: *.tanx.com i: GlobalSign Organization Validation CA - SHA256 - G2>",
"<cert(0x18848e00) s: GlobalSign Organization Validation CA - SHA256 - G2 i: GlobalSign Root CA>"
), NSErrorFailingURLStringKey=https://alogs.umeng.com/app_logs, NSErrorFailingURLKey=https://alogs.umeng.com/app_logs}}, _kCFStreamErrorCodeKey=-9814, NSErrorFailingURLStringKey=https://alogs.umeng.com/app_logs, NSErrorPeerCertificateChainKey=(
"<cert(0x180c6c00) s: *.tanx.com i: GlobalSign Organization Validation CA - SHA256 - G2>",
"<cert(0x18848e00) s: GlobalSign Organization Validation CA - SHA256 - G2 i: GlobalSign Root CA>"
備註: 功能變數名稱是沒有問題的, 符合 ATS 要求.
解決方案: 還原手機的所有出廠設置, 且單獨還原網路設置還不行.
推薦一個 status code 查詢的網址: List of HTTP status codes
Code |
Description |
-1 NSURLErrorUnknown |
|
1 kCFHostErrorHostNotFound |
“Indicates that the DNS lookup failed.” |
2 kCFHostErrorUnknown |
“An unknown error occurred (a name server failure, for example). For additional information, query the kCFGetAddrInfoFailureKey to get the value returned from getaddrinfo; lookup in netdb.h” |
100 kCFSOCKSErrorUnknownClientVersion |
“The SOCKS server rejected access because it does not support connections with the requested SOCKS version.Query kCFSOCKSStatusCodeKey to recover the status code returned by the server.” |
101 kCFSOCKSErrorUnsupportedServerVersion |
“The version of SOCKS requested by the server is not supported. Query kCFSOCKSStatusCodeKey to recover the status code returned by the server.
Query the kCFSOCKSVersionKey to find the version requested by the server.” |
SOCKS4 Errors
110 kCFSOCKS4ErrorRequestFailed |
“Request rejected or failed by the server.” |
111 kCFSOCKS4ErrorIdentdFailed |
“Request rejected because SOCKS server cannot connect to identd on the client.” |
112 kCFSOCKS4ErrorIdConflict |
“Request rejected because the client program and identd report different user-ids.” |
113 kCFSOCKS4ErrorUnknownStatusCode |
“The status code returned by the server is unknown.” |
SOCKS5 Errors
120 kCFSOCKS5ErrorBadState |
“The stream is not in a state that allows the requested operation.” |
121 kCFSOCKS5ErrorBadResponseAddr |
“The address type returned is not supported.” |
122 kCFSOCKS5ErrorBadCredentials |
“The SOCKS server refused the client connection because of bad login credentials.” |
123 kCFSOCKS5ErrorUnsupportedNegotiationMethod |
“The requested method is not supported. Query kCFSOCKSNegotiationMethodKey to find the method requested.” |
124 kCFSOCKS5ErrorNoAcceptableMethod |
“The client and server could not find a mutually agreeable authentication method.” |
FTP Errors
200 kCFFTPErrorUnexpectedStatusCode |
“The server returned an unexpected status code. Query the kCFFTPStatusCodeKey to get the status code returned by the server” |
HTTP Errors
300 kCFErrorHTTPAuthenticationTypeUnsupported |
“The client and server could not agree on a supported authentication type.” |
301 kCFErrorHTTPBadCredentials |
“The credentials provided for an authenticated connection were rejected by the server.” |
302 kCFErrorHTTPConnectionLost |
“The connection to the server was dropped. This usually indicates a highly overloaded server.” |
303 kCFErrorHTTPParseFailure |
“The HTTP server response could not be parsed.” |
304 kCFErrorHTTPRedirectionLoopDetected |
“Too many HTTP redirects occurred before reaching a page that did not redirect the client to another page. This usually indicates a redirect loop.” |
305 kCFErrorHTTPBadURL |
“The requested URL could not be retrieved.” |
306 kCFErrorHTTPProxyConnectionFailure |
“A connection could not be established to the HTTP proxy.” |
307 kCFErrorHTTPBadProxyCredentials |
“The authentication credentials provided for logging into the proxy were rejected.” |
308 kCFErrorPACFileError |
“An error occurred with the proxy autoconfiguration file.” |
309 kCFErrorPACFileAuth |
“The authentication credentials provided by the proxy autoconfiguration file were rejected.” |
310 kCFErrorHTTPSProxyConnectionFailure |
“A connection could not be established to the HTTPS proxy.” |
311 kCFStreamErrorHTTPSProxyFailureUnexpectedResponseToCONNECTMethod |
“The HTTPS proxy returned an unexpected status code, such as a 3xx redirect.” |
CFURLConnection & CFURLProtocol Errors
-998 kCFURLErrorUnknown |
“An unknown error occurred.” |
-999 kCFURLErrorCancelled NSURLErrorCancelled |
“The connection was cancelled.” |
-1000 kCFURLErrorBadURL NSURLErrorBadURL |
“The connection failed due to a malformed URL.” |
-1001 kCFURLErrorTimedOut NSURLErrorTimedOut |
“The connection timed out.” |
-1002 kCFURLErrorUnsupportedURL NSURLErrorUnsupportedURL |
“The connection failed due to an unsupported URL scheme.” |
-1003 kCFURLErrorCannotFindHost NSURLErrorCannotFindHost |
“The connection failed because the host could not be found.” |
-1004 kCFURLErrorCannotConnectToHost NSURLErrorCannotConnectToHost |
“The connection failed because a connection cannot be made to the host.” |
-1005 kCFURLErrorNetworkConnectionLost NSURLErrorNetworkConnectionLost |
“The connection failed because the network connection was lost.” |
-1006 kCFURLErrorDNSLookupFailed NSURLErrorDNSLookupFailed |
“The connection failed because the DNS lookup failed.” |
-1007 kCFURLErrorHTTPTooManyRedirects NSURLErrorHTTPTooManyRedirects |
“The HTTP connection failed due to too many redirects.” |
-1008 kCFURLErrorResourceUnavailable NSURLErrorResourceUnavailable |
“The connection’s resource is unavailable.” |
-1009 kCFURLErrorNotConnectedToInternet NSURLErrorNotConnectedToInternet |
“The connection failed because the device is not connected to the internet.” |
-1010 kCFURLErrorRedirectToNonExistentLocation NSURLErrorRedirectToNonExistentLocation |
“The connection was redirected to a nonexistent location.” |
-1011 kCFURLErrorBadServerResponse NSURLErrorBadServerResponse |
“The connection received an invalid server response.” |
-1012 kCFURLErrorUserCancelledAuthentication NSURLErrorUserCancelledAuthentication |
“The connection failed because the user cancelled required authentication.” |
-1013 kCFURLErrorUserAuthenticationRequired NSURLErrorUserAuthenticationRequired |
“The connection failed because authentication is required.” |
-1014 kCFURLErrorZeroByteResource NSURLErrorZeroByteResource |
“The resource retrieved by the connection is zero bytes.” |
-1015 kCFURLErrorCannotDecodeRawData NSURLErrorCannotDecodeRawData |
“The connection cannot decode data encoded with a known content encoding.” |
-1016 kCFURLErrorCannotDecodeContentData NSURLErrorCannotDecodeContentData |
“The connection cannot decode data encoded with an unknown content encoding.” |
-1017 kCFURLErrorCannotParseResponse NSURLErrorCannotParseResponse |
“The connection cannot parse the server’s response.” |
-1018 kCFURLErrorInternationalRoamingOff |
“The connection failed because international roaming is disabled on the device.” |
-1019 kCFURLErrorCallIsActive |
“The connection failed because a call is active.” |
-1020 kCFURLErrorDataNotAllowed |
“The connection failed because data use is currently not allowed on the device.” |
-1021 kCFURLErrorRequestBodyStreamExhausted |
“The connection failed because its request’s body stream was exhausted.” |
File Errors
-1100 kCFURLErrorFileDoesNotExist NSURLErrorFileDoesNotExist |
“The file operation failed because the file does not exist.” |
-1101 kCFURLErrorFileIsDirectory NSURLErrorFileIsDirectory |
“The file operation failed because the file is a directory.” |
-1102 kCFURLErrorNoPermissionsToReadFile NSURLErrorNoPermissionsToReadFile |
“The file operation failed because it does not have permission to read the file.” |
-1103 kCFURLErrorDataLengthExceedsMaximum NSURLErrorDataLengthExceedsMaximum |
“The file operation failed because the file is too large.” |
SSL Errors
-1200 kCFURLErrorSecureConnectionFailed NSURLErrorSecureConnectionFailed |
“The secure connection failed for an unknown reason.” |
-1201 kCFURLErrorServerCertificateHasBadDate NSURLErrorServerCertificateHasBadDate |
“The secure connection failed because the server’s certificate has an invalid date.” |
-1202 kCFURLErrorServerCertificateUntrusted NSURLErrorServerCertificateUntrusted |
“The secure connection failed because the server’s certificate is not trusted.” |
-1203 kCFURLErrorServerCertificateHasUnknownRoot NSURLErrorServerCertificateHasUnknownRoot |
“The secure connection failed because the server’s certificate has an unknown root.” |
-1204 kCFURLErrorServerCertificateNotYetValid NSURLErrorServerCertificateNotYetValid |
“The secure connection failed because the server’s certificate is not yet valid.” |
-1205 kCFURLErrorClientCertificateRejected NSURLErrorClientCertificateRejected |
“The secure connection failed because the client’s certificate was rejected.” |
-1206 kCFURLErrorClientCertificateRequired NSURLErrorClientCertificateRequired |
“The secure connection failed because the server requires a client certificate.” |
Download and File I/O Errors
-2000 kCFURLErrorCannotLoadFromNetwork NSURLErrorCannotLoadFromNetwork |
“The connection failed because it is being required to return a cached resource, but one is not available.” |
-3000 kCFURLErrorCannotCreateFile NSURLErrorCannotCreateFile |
“The file cannot be created.” |
-3001 kCFURLErrorCannotOpenFile NSURLErrorCannotOpenFile |
“The file cannot be opened.” |
-3002 kCFURLErrorCannotCloseFile NSURLErrorCannotCloseFile |
“The file cannot be closed.” |
-3003 kCFURLErrorCannotWriteToFile NSURLErrorCannotWriteToFile |
“The file cannot be written.” |
-3004 kCFURLErrorCannotRemoveFile NSURLErrorCannotRemoveFile |
“The file cannot be removed.” |
-3005 kCFURLErrorCannotMoveFile NSURLErrorCannotMoveFile |
“The file cannot be moved.” |
-3006 kCFURLErrorDownloadDecodingFailedMidStream NSURLErrorDownloadDecodingFailedMidStream |
“The download failed because decoding of the downloaded data failed mid-stream.” |
-3007 kCFURLErrorDownloadDecodingFailedToComplete NSURLErrorDownloadDecodingFailedToComplete |
“The download failed because decoding of the downloaded data failed to complete.” |
Cookie errors
-4000 kCFHTTPCookieCannotParseCookieFile |
“The cookie file cannot be parsed.” |
CFNetServices Errors
-72000L kCFNetServiceErrorUnknown |
“An unknown error occurred.” |
-72001L kCFNetServiceErrorCollision |
“An attempt was made to use a name that is already in use.” |
-72002L kCFNetServiceErrorNotFound |
“Not used.” |
-72003L kCFNetServiceErrorInProgress |
“A new search could not be started because a search is already in progress.” |
-72004L kCFNetServiceErrorBadArgument |
“A required argument was not provided or was not valid.” |
-72005L kCFNetServiceErrorCancel |
“The search or service was cancelled.” |
-72006L kCFNetServiceErrorInvalid |
“Invalid data was passed to a CFNetServices function.” |
-72007L kCFNetServiceErrorTimeout |
“A search failed because it timed out.” |
-73000L kCFNetServiceErrorDNSServiceFailure |
“An error from DNS discovery; look at kCFDNSServiceFailureKey to get the error number and interpret using dnssd.h” |
error code(錯誤代碼)=0是操作成功完成。
error code(錯誤代碼)=1是功能錯誤。
error code(錯誤代碼)=2是系統找不到指定的文件。
error code(錯誤代碼)=3是系統找不到指定的路徑。
error code(錯誤代碼)=4是系統無法打開文件。
error code(錯誤代碼)=5是拒絕訪問。
error code(錯誤代碼)=6是句柄無效。
error code(錯誤代碼)=7是存儲控制塊被損壞。
error code(錯誤代碼)=8是存儲空間不足,無法處理此命令。
error code(錯誤代碼)=9是存儲控制塊地址無效。
error code(錯誤代碼)=10是環境錯誤。
error code(錯誤代碼)=11是試圖載入格式錯誤的程式。
error code(錯誤代碼)=12是訪問碼無效。
error code(錯誤代碼)=13是數據無效。
error code(錯誤代碼)=14是存儲器不足,無法完成此操作。
error code(錯誤代碼)=15是系統找不到指定的驅動器。
error code(錯誤代碼)=16是無法刪除目錄。
error code(錯誤代碼)=17是系統無法將文件移到不同的驅動器。
error code(錯誤代碼)=18是沒有更多文件。
error code(錯誤代碼)=19是介質受寫入保護。
error code(錯誤代碼)=20是系統找不到指定的設備。
error code(錯誤代碼)=21是設備未就緒。
error code(錯誤代碼)=22是設備不識別此命令。
error code(錯誤代碼)=23是數據錯誤(迴圈冗餘檢查)。
error code(錯誤代碼)=24是程式發出命令,但命令長度不正確。
error code(錯誤代碼)=25是驅動器無法找出磁碟上特定區域或磁軌的位置。
error code(錯誤代碼)=26是無法訪問指定的磁碟或軟盤。
error code(錯誤代碼)=27是驅動器找不到請求的扇區。
error code(錯誤代碼)=28是印表機缺紙。
error code(錯誤代碼)=29是系統無法寫入指定的設備。
error code(錯誤代碼)=30是系統無法從指定的設備上讀取。
error code(錯誤代碼)=31是連到系統上的設備沒有發揮作用。
error code(錯誤代碼)=32是進程無法訪問文件,因為另一個程式正在使用此文件。
error code(錯誤代碼)=33是進程無法訪問文件,因為另一個程式已鎖定文件的一部分。
error code(錯誤代碼)=36是用來共用的打開文件過多。
error code(錯誤代碼)=38是到達文件結尾。
error code(錯誤代碼)=39是磁碟已滿。
error code(錯誤代碼)=50是不支持網路請求。
error code(錯誤代碼)=51是遠程電腦不可用 。
error code(錯誤代碼)=52是在網路上已有重覆的名稱。
error code(錯誤代碼)=53是找不到網路路徑。
error code(錯誤代碼)=54是網路忙。
error code(錯誤代碼)=55是指定的網路資源或設備不再可用。
error code(錯誤代碼)=56是已到達網路BIOS 命令限制。
error code(錯誤代碼)=57是網路適配器硬體出錯。
error code(錯誤代碼)=58是指定的伺服器無法運行請求的操作。
error code(錯誤代碼)=59是發生意外的網路錯誤。
error code(錯誤代碼)=60是遠程適配器不相容。
error code(錯誤代碼)=61是印表機隊列已滿。
error code(錯誤代碼)=62是無法在伺服器上獲得用於保存待列印文件的空間。
error code(錯誤代碼)=63是刪除等候列印的文件。
error code(錯誤代碼)=64是指定的網路名不再可用。
error code(錯誤代碼)=65是拒絕網路訪問。
error code(錯誤代碼)=66是網路資源類型錯誤。
error code(錯誤代碼)=67是找不到網路名。
error code(錯誤代碼)=68是超過本地電腦網卡的名稱限制。
error code(錯誤代碼)=69是超出網路BIOS 會話限制。
error code(錯誤代碼)=70是遠程伺服器已暫停,或正在啟動過程中。
error code(錯誤代碼)=71是當前已無法再同此遠程電腦連接,因為已達到電腦的連接數目極限。
error code(錯誤代碼)=72是已暫停指定的印表機或磁碟設備。
error code(錯誤代碼)=80是文件存在。
error code(錯誤代碼)=82是無法創建目錄或文件。
error code(錯誤代碼)=83是INT 24失敗。
error code(錯誤代碼)=84是無法取得處理此請求的存儲空間。
error code(錯誤代碼)=85是本地設備名已在使用中。
error code(錯誤代碼)=86是指定的網路密碼錯誤。
error code(錯誤代碼)=87是參數錯誤。
error code(錯誤代碼)=88是網路上發生寫入錯誤。
error code(錯誤代碼)=89是系統無法在此時啟動另一個進程。
error code(錯誤代碼)=100是無法創建另一個系統信號燈。
error code(錯誤代碼)=101是另一個進程擁有獨占的信號燈。
error code(錯誤代碼)=102是已設置信號燈且無法關閉。
error code(錯誤代碼)=103是無法再設置信號燈。
error code(錯誤代碼)=104是無法在中斷時請求獨占的信號燈。
error code(錯誤代碼)=105是此信號燈的前一個所有權已結束。
error code(錯誤代碼)=107是程式停止,因為替代的軟盤未插入。
error code(錯誤代碼)=108是磁碟在使用中,或被另一個進程鎖定。
error code(錯誤代碼)=109是管道已結束。
error code(錯誤代碼)=110是系統無法打開指定的設備或文件。
error code(錯誤代碼)=111是文件名太長。
error code(錯誤代碼)=112是磁碟空間不足。
error code(錯誤代碼)=113是無法再獲得內部文件的標識。
error code(錯誤代碼)=114是目標內部文件的標識不正確。
error code(錯誤代碼)=117是應用程式製作的IOCTL 調用錯誤。
error code(錯誤代碼)=118是驗證寫入的切換參數值錯誤。
error code(錯誤代碼)=119是系統不支持請求的命令。
error code(錯誤代碼)=120是此功能只被此系統支持。
error code(錯誤代碼)=121是信號燈超時時間已到。
error code(錯誤代碼)=122是傳遞到系統調用的數據區太小。
error code(錯誤代碼)=123是文件名、目錄名或捲標語法不正確。
error code(錯誤代碼)=124是系統調用級別錯誤。
error code(錯誤代碼)=125是磁碟沒有捲標。
error code(錯誤代碼)=126是找不到指定的模塊。
error code(錯誤代碼)=127是找不到指定的程式。
error code(錯誤代碼)=128是沒有等候的子進程。
error code(錯誤代碼)=130是試圖使用操作(而非原始磁碟I/O)的已打開磁碟分區的文件句柄。
error code(錯誤代碼)=131是試圖移動文件指針到文件開頭之前。
error code(錯誤代碼)=132是無法在指定的設備或文件上設置文件指針。
error code(錯誤代碼)=133是包含先前加入驅動器的驅動器無法使用JOIN 或 SUBST 命令。
error code(錯誤代碼)=134是試圖在已被合併的驅動器上使用JOIN 或 SUBST 命令。
error code(錯誤代碼)=135是試圖在已被合併的驅動器上使用JOIN 或 SUBST 命令。
error code(錯誤代碼)=136是系統試圖解除未合併驅動器的JOIN。
error code(錯誤代碼)=137是系統試圖解除未替代驅動器的SUBST。
error code(錯誤代碼)=138是系統試圖將驅動器合併到合併驅動器上的目錄。
error code(錯誤代碼)=139是系統試圖將驅動器替代為替代驅動器上的目錄。
error code(錯誤代碼)=140是系統試圖將驅動器合併到替代驅動器上的目錄。
error code(錯誤代碼)=141是系統試圖替代驅動器為合併驅動器上的目錄。
error code(錯誤代碼)=142是系統無法在此時運行JOIN 或 SUBST。
error code(錯誤代碼)=143是系統無法將驅動器合併到或替代為相同驅動器上的目錄。
error code(錯誤代碼)=144是目錄並非根目錄下的子目錄。
error code(錯誤代碼)=145是目錄非空。
error code(錯誤代碼)=146是指定的路徑已在替代中使用。
error code(錯誤代碼)=147是資源不足,無法處理此命令。
error code(錯誤代碼)=148是指定的路徑無法在此時使用。
error code(錯誤代碼)=149是企圖將驅動器合併或替代為驅動器上目錄是上一個替代的目標的驅動器。
error code(錯誤代碼)=150是系統跟蹤信息未在CONFIG.SYS 文件中指定,或不允許跟蹤。
error code(錯誤代碼)=151是為DosMuxSemWait 指定的信號燈事件個數錯誤。
error code(錯誤代碼)=152是DosMuxSemWait不可運行。已設置過多的信號燈。
error code(錯誤代碼)=153是DosMuxSemWait清單錯誤。
error code(錯誤代碼)=154是輸入的捲標超過目標文件系統的長度限制
error code(錯誤代碼)=155是無法創建另一個線程。
error code(錯誤代碼)=156是接收進程已拒絕此信號。
error code(錯誤代碼)=157是段已被放棄且無法鎖定。
error code(錯誤代碼)=158是段已解除鎖定。
error code(錯誤代碼)=159是線程標識的地址錯誤。
error code(錯誤代碼)=160是傳遞到DosExecPgm 的參數字元串錯誤。
error code(錯誤代碼)=161是指定的路徑無效。
error code(錯誤代碼)=162是信號已暫停。
error code(錯誤代碼)=164是無法在系統中創建更多的線程。
error code(錯誤代碼)=167是無法鎖定文件區域。
error code(錯誤代碼)=170是請求的資源在使用中。
error code(錯誤代碼)=173是對於提供取消區域進行鎖定的請求不明顯。
error code(錯誤代碼)=174是文件系統不支持鎖定類型的最小單元更改。
error code(錯誤代碼)=180是系統檢測出錯誤的段號。
error code(錯誤代碼)=183是當文件已存在時,無法創建該文件。
error code(錯誤代碼)=186是傳遞的標誌錯誤。
error code(錯誤代碼)=187是找不到指定的系統信號燈名稱。
error code(錯誤代碼)=196是操作系統無法運行此應用程式。
error code(錯誤代碼)=197是操作系統當前的配置不能運行此應用程式。
error code(錯誤代碼)=199是操作系統無法運行此應用程式。
error code(錯誤代碼)=200是代碼段不可大於或等於64K。
error code(錯誤代碼)=203是操作系統找不到已輸入的環境選項。
error code(錯誤代碼)=205是命令子樹中的進程沒有信號處理程式。
error code(錯誤代碼)=206是文件名或擴展名太長。
error code(錯誤代碼)=207是第2 環堆棧已被占用。
error code(錯誤代碼)=208是沒有正確輸入文件名通配符* 或 ?,或指定過多的文件名通配符。
error code(錯誤代碼)=209是正在發送的信號錯誤。
error code(錯誤代碼)=210是無法設置信號處理程式。
error code(錯誤代碼)=212是段已鎖定且無法重新分配。
error code(錯誤代碼)=214是連到該程式或動態鏈接模塊的動態鏈接模塊太多。
error code(錯誤代碼)=215是無法嵌套調用LoadModule。
error code(錯誤代碼)=230是管道狀態無效。
error code(錯誤代碼)=231是所有的管道實例都在使用中。
error code(錯誤代碼)=232是管道正在關閉中。
error code(錯誤代碼)=233是管道的另一端上無任何進程。
error code(錯誤代碼)=234是更多數據可用。
error code(錯誤代碼)=240是取消會話。
error code(錯誤代碼)=254是指定的擴展屬性名無效。
error code(錯誤代碼)=255是擴展屬性不一致。
error code(錯誤代碼)=258是等待的操作過時。
error code(錯誤代碼)=259是沒有可用的數據了。
error code(錯誤代碼)=266是無法使用複製功能。
error code(錯誤代碼)=267是目錄名無效。
error code(錯誤代碼)=275是擴展屬性在緩衝區中不適用。
error code(錯誤代碼)=276是裝在文件系統上的擴展屬性文件已損壞。
error code(錯誤代碼)=277是擴展屬性表格文件已滿。
error code(錯誤代碼)=278是指定的擴展屬性句柄無效。
error code(錯誤代碼)=282是裝入的文件系統不支持擴展屬性。
error code(錯誤代碼)=288是企圖釋放並非呼叫方所擁有的多用戶終端運行程式。
error code(錯誤代碼)=298是發向信號燈的請求過多。
error code(錯誤代碼)=299是僅完成部分的ReadProcessMemoty 或 WriteProcessMemory請求。
error code(錯誤代碼)=300是操作鎖定請求被拒絕。
error code(錯誤代碼)=301是系統接收了一個無效的操作鎖定確認。
error code(錯誤代碼)=487是試圖訪問無效的地址。
error code(錯誤代碼)=534是算術結果超過32 位。
error code(錯誤代碼)=535是管道的另一端有一進程。
error code(錯誤代碼)=536是等候打開管道另一端的進程。
error code(錯誤代碼)=994是拒絕訪問擴展屬性。
error code(錯誤代碼)=995是由於線程退出或應用程式請求,已放棄I/O 操作。
error code(錯誤代碼)=996是重疊I/O 事件不在信號狀態中。
error code(錯誤代碼)=997是重疊I/O 操作在進行中。
error code(錯誤代碼)=998是記憶體分配訪問無效。
error code(錯誤代碼)=999是錯誤運行頁內操作。
error code(錯誤代碼)=1001是遞歸太深;棧溢出。
error code(錯誤代碼)=1002是視窗無法在已發送的消息上操作。
error code(錯誤代碼)=1003是無法完成此功能。
error code(錯誤代碼)=1004是無效標誌。
error code(錯誤代碼)=1005是此捲不包含可識別的文件系統。請確定所有請求的文件系統驅動程式已載入,且此捲未損壞。
error code(錯誤代碼)=1006是文件所在的捲已被外部改變,因此打開的文件不再有效。
error code(錯誤代碼)=1007是無法在全屏幕模式下運行請求的操作。
error code(錯誤代碼)=1008是試圖引用不存在的令牌。
error code(錯誤代碼)=1009是配置註冊表資料庫損壞。
error code(錯誤代碼)=1010是配置註冊表項無效。
error code(錯誤代碼)=1011是無法打開配置註冊表項。
error code(錯誤代碼)=1012是無法讀取配置註冊表項。
error code(錯誤代碼)=1013是無法寫入配置註冊表項。
error code(錯誤代碼)=1014是註冊表資料庫中的某一文件必須使用記錄或替代複製來恢復。恢覆成功完成。
error code(錯誤代碼)=1015是註冊表損壞。包含註冊表數據的某一文件結構損壞,或系統的文件記憶體映像損壞,或因為替代副本、日誌缺少或損壞而無法恢覆文件。
error code(錯誤代碼)=1016是由註冊表啟動的I/O 操作恢復失敗。註冊表無法讀入、寫出或清除任意一個包含註冊表系統映像的文件。
error code(錯誤代碼)=1017是系統試圖載入或還原文件到註冊表,但指定的文件並非註冊表文件格式。
error code(錯誤代碼)=1018是試圖在標記為刪除的註冊表項上運行不合法的操作。
error code(錯誤代碼)=1019是系統無法配置註冊表日誌中所請求的空間。
error code(錯誤代碼)=1020是無法在已有子項或值的註冊表項中創建符號鏈接。
error code(錯誤代碼)=1021是無法在易變父項下創建穩定子項。
error code(錯誤代碼)=1022是通知更改請求正在完成中,且信息並未error code(錯誤代碼)=到呼叫方的緩衝區中。當前呼叫方必須枚舉文件來查找更改。
error code(錯誤代碼)=1051是已發送停止控制到服務,該服務被其它正在運行的服務所依賴。
error code(錯誤代碼)=1052是請求的控制項對此服務無效
error code(錯誤代碼)=1053是服務並未及時響應啟動或控制請求。
error code(錯誤代碼)=1054是無法創建此服務的線程。
error code(錯誤代碼)=1055是鎖定服務資料庫。
error code(錯誤代碼)=1056是服務的實例已在運行中。
error code(錯誤代碼)=1057是帳戶名無效或不存在,或者密碼對於指定的帳戶名無效。
error code(錯誤代碼)=1058是無法啟動服務,原因可能是它被禁用或與它相關聯的設備沒有啟動。
error code(錯誤代碼)=1059是指定了迴圈服務依存。
error code(錯誤代碼)=1060是指定的服務並未以已安裝的服務存在。
error code(錯誤代碼)=1061是服務無法在此時接受控制信息。
error code(錯誤代碼)=1062是服務未啟動。
error code(錯誤代碼)=1063是服務進程無法連接到服務控制器上。
error code(錯誤代碼)=1064是當處理控制請求時,在服務中發生異常。
error code(錯誤代碼)=1065是指定的資料庫不存在。
error code(錯誤代碼)=1066是服務已error code(錯誤代碼)=特定的服務錯誤碼。
error code(錯誤代碼)=1067是進程意外終止。
error code(錯誤代碼)=1068是依存服務或組無法啟動。
error code(錯誤代碼)=1069是由於登錄失敗而無法啟動服務。
error code(錯誤代碼)=1070是啟動後,服務停留在啟動暫停狀態。
error code(錯誤代碼)=1071是指定的服務資料庫鎖定無效。
error code(錯誤代碼)=1072是指定的服務已標記為刪除。
error code(錯誤代碼)=1073是指定的服務已存在。
error code(錯誤代碼)=1074是系統當前以最新的有效配置運行。
error code(錯誤代碼)=1075是依存服務不存在,或已被標記為刪除。
error code(錯誤代碼)=1076是已接受使用當前引導作為最後的有效控制設置。
error code(錯誤代碼)=1077是上次啟動之後,仍未嘗試引導服務。
error code(錯誤代碼)=1078是名稱已用作服務名或服務顯示名。
error code(錯誤代碼)=1079是此服務的帳戶不同於運行於同一進程上的其它服務的帳戶。
error code(錯誤代碼)=1080是只能為Win32 服務設置失敗操作,不能為驅動程式設置。
error code(錯誤代碼)=1081是這個服務所運行的處理和服務控制管理器相同。所以,如果服務處理程式意外中止的話,服務控制管理器無法進行任何操作。
error code(錯誤代碼)=1082是這個服務尚未設置恢復程式。
error code(錯誤代碼)=1083是配置成在該可執行程式中運行的這個服務不能執行該服務。
error code(錯誤代碼)=1100是已達磁帶的實際結尾。
error code(錯誤代碼)=1101是磁帶訪問已達文件標記。
error code(錯誤代碼)=1102是已達磁帶或磁碟分區的開頭。
error code(錯誤代碼)=1103是磁帶訪問已達一組文件的結尾。
error code(錯誤代碼)=1104是磁帶上不再有任何數據。
error code(錯誤代碼)=1105是磁帶無法分區。
error code(錯誤代碼)=1106是在訪問多捲分區的新磁帶時,當前的塊大小不正確。
error code(錯誤代碼)=1107是當載入磁帶時,找不到分區信息。
error code(錯誤代碼)=1108是無法鎖定媒體彈出功能。
error code(錯誤代碼)=1109是無法卸載介質。
error code(錯誤代碼)=1110是驅動器中的介質可能已更改。
error code(錯誤代碼)=1111是複位I/O 匯流排。
error code(錯誤代碼)=1112是驅動器中沒有媒體。
error code(錯誤代碼)=1113是在多位元組的目標代碼頁中,沒有此Unicode 字元可以映射到的字元。
error code(錯誤代碼)=1114是動態鏈接庫(DLL) 初始化常式失敗。
error code(錯誤代碼)=1115是系統關機正在進行。
error code(錯誤代碼)=1116是因為沒有任何進行中的關機過程,所以無法中斷系統關機。
error code(錯誤代碼)=1117是因為I/O 設備錯誤,所以無法運行此項請求。
error code(錯誤代碼)=1118是沒有串列設備被初始化成功。串列驅動程式將卸載。
error code(錯誤代碼)=1119是無法打開正在與其他設備共用中斷請求(IRQ)的設備。至少有一個使用該IRQ 的其他設備已打開。
error code(錯誤代碼)=1120是序列I/O 操作已由另一個串列口的寫入完成。(IOCTL_SERIAL_XOFF_COUNTER已達零。)
error code(錯誤代碼)=1121是因為已過超時時間,所以串列I/O 操作完成。(IOCTL_SERIAL_XOFF_COUNTER未達零。)
error code(錯誤代碼)=1122是在軟盤上找不到ID 地址標記。
error code(錯誤代碼)=1123是軟盤扇區ID 字元域與軟盤控制器磁軌地址不相符。
error code(錯誤代碼)=1124是軟盤控制器報告軟盤驅動程式不能識別的錯誤。
error code(錯誤代碼)=1125是軟盤控制器error code(錯誤代碼)=與其寄存器中不一致的結果。
error code(錯誤代碼)=1126是當訪問硬碟時,重新校準操作失敗,重試仍然失敗。
error code(錯誤代碼)=1127是當訪問硬碟時,磁碟操作失敗,重試仍然失敗。
error code(錯誤代碼)=1128是當訪問硬碟時,即使失敗,仍須複位磁碟控制器。
error code(錯誤代碼)=1129是已達磁帶結尾。
error code(錯誤代碼)=1130是伺服器存儲空間不足,無法處理此命令。
error code(錯誤代碼)=1131是檢測出潛在的死鎖狀態。
error code(錯誤代碼)=1132是指定的基址或文件偏移量沒有適當對齊。
error code(錯誤代碼)=1140是改變系統供電狀態的嘗試被另一應用程式或驅動程式否決。
error code(錯誤代碼)=1141是系統BIOS 改變系統供電狀態的嘗試失敗。
error code(錯誤代碼)=1142是試圖在一文件上創建超過系統允許數額的鏈接。
error code(錯誤代碼)=1150是指定程式要求更新的Windows 版本。
error code(錯誤代碼)=1151是指定程式不是Windows 或 MS-DOS程式。
error code(錯誤代碼)=1152是只能啟動該指定程式的一個實例。
error code(錯誤代碼)=1153是該指定程式適用於舊的Windows 版本。
error code(錯誤代碼)=1154是執行該應用程式所需的庫文件之一被損壞。
error code(錯誤代碼)=1155是沒有應用程式與此操作的指定文件有關聯。
error code(錯誤代碼)=1156是在輸送指令到應用程式的過程中出現錯誤。
error code(錯誤代碼)=1157是執行該應用程式所需的庫文件之一無法找到。
error code(錯誤代碼)=1158是當前程式已使用了Window 管理器對象的系統允許的所有句柄。
error code(錯誤代碼)=1159是消息只能與同步操作一起使用。
error code(錯誤代碼)=1160是指出的源元素沒有媒體。
error code(錯誤代碼)=1161是指出的目標元素已包含媒體。
error code(錯誤代碼)=1162是指出的元素不存在。
error code(錯誤代碼)=1163是指出的元素是未顯示的存儲資源的一部分。
error code(錯誤代碼)=1164是顯示設備需要重新初始化,因為硬體有錯誤。
error code(錯誤代碼)=1165是設備顯示在嘗試進一步操作之前需要清除。
error code(錯誤代碼)=1166是設備顯示它的門仍是打開狀態。
error code(錯誤代碼)=1167是設備沒有連接。
error code(錯誤代碼)=1168是找不到元素。
error code(錯誤代碼)=1169是索引中沒有同指定項相匹配的項。
error code(錯誤代碼)=1170是在對象上不存在指定的屬性集。
error code(錯誤代碼)=1171是傳遞到GetMouseMovePoints 的點不在緩衝區中。
error code(錯誤代碼)=1172是跟蹤(工作站)服務沒運行。
error code(錯誤代碼)=1173是找不到捲ID。
error code(錯誤代碼)=1175是無法刪除要被替換的文件。
error code(錯誤代碼)=1176是無法將替換文件移到要被替換的文件。要被替換的文件保持原來的名稱。
error code(錯誤代碼)=1177是無法將替換文件移到要被替換的文件。要被替換的文件已被重新命名為備份名稱。
error code(錯誤代碼)=1178是捲更改記錄被刪除。
error code(錯誤代碼)=1179是捲更改記錄服務不處於活動中。
error code(錯誤代碼)=1180是找到一份文件,但是可能不是正確的文件。
error code(錯誤代碼)=1181是日誌項從日誌中被刪除。
error code(錯誤代碼)=1200是指定的設備名無效。
error code(錯誤代碼)=1201是設備當前未連接上,但其為一個記錄連接。
error code(錯誤代碼)=1202是企圖記錄先前已被記錄的設備。
error code(錯誤代碼)=1203是無任何網路提供程式接受指定的網路路徑。
error code(錯誤代碼)=1204是指定的網路提供程式名稱無效。
error code(錯誤代碼)=1205是無法打開網路連接配置文件。
error code(錯誤代碼)=1206是網路連接配置文件損壞。
error code(錯誤代碼)=1207是無法枚舉空載體。
error code(錯誤代碼)=1208是發生擴展錯誤。
error code(錯誤代碼)=1209是指定的組名格式無效。
error code(錯誤代碼)=1210是指定的電腦名格式無效。
error code(錯誤代碼)=1211是指定的事件名格式無效。
error code(錯誤代碼)=1212是指定的功能變數名稱格式無效。
error code(錯誤代碼)=1213是指定的服務名格式無效。
error code(錯誤代碼)=1214是指定的網路名格式無效。
error code(錯誤代碼)=1215是指定的共用名格式無效。
error code(錯誤代碼)=1216是指定的密碼格式無效。
error code(錯誤代碼)=1217是指定的消息名格式無效。
error code(錯誤代碼)=1218是指定的消息目標格式無效。
error code(錯誤代碼)=1219是提供的憑據與已存在的憑據集衝突。
error code(錯誤代碼)=1220是企圖創建網路伺服器的會話,但已對該伺服器創建過多的會話。
error code(錯誤代碼)=1221是工作組或功能變數名稱已由網路上的另一部電腦使用。
error code(錯誤代碼)=1222是網路未連接或啟動。
error code(錯誤代碼)=1223是操作已被用戶取消。
error code(錯誤代碼)=1224是請求的操作無法在使用用戶映射區域打開的文件上執行。
error code(錯誤代碼)=1225是遠程系統拒絕網路連接。
error code(錯誤代碼)=1226是網路連接已被適當地關閉了。
error code(錯誤代碼)=1227是網路傳輸終結點已有與其關聯的地址。
error code(錯誤代碼)=1228是地址仍未與網路終結點關聯。
error code(錯誤代碼)=1229是企圖在不存在的網路連接上進行操作。
error code(錯誤代碼)=1230是企圖在使用中的網路連接上進行無效的操作。
error code(錯誤代碼)=1231是不能訪問網路位置。有關網路排除故障的信息,請參閱Windows 幫助。
error code(錯誤代碼)=1232是不能訪問網路位置。有關網路排除故障的信息,請參閱Windows 幫助。
error code(錯誤代碼)=1233是不能訪問網路位置。有關網路排除故障的信息,請參閱Windows 幫助。
error code(錯誤代碼)=1234是沒有任何服務正在遠程系統上的目標網路終結點上操作。
error code(錯誤代碼)=1235是請求被終止。
error code(錯誤代碼)=1236是由本地系統終止網路連接。
error code(錯誤代碼)=1237是操作無法完成。應該重試。
error code(錯誤代碼)=1238是因為已達到此帳戶的最大同時連接數限制,所以無法連接伺服器。
error code(錯誤代碼)=1239是試圖在這個帳戶未被授權的時間內登錄。
error code(錯誤代碼)=1240是此帳戶並未得到從這個工作站登錄的授權。
error code(錯誤代碼)=1241是請求的操作不能使用這個網路地址。
error code(錯誤代碼)=1242是伺服器已經註冊。
error code(錯誤代碼)=1243是指定的服務不存在。
error code(錯誤代碼)=1244是因為用戶還未被驗證,不能執行所要求的操作。
error code(錯誤代碼)=1245是因為用戶還未登錄網路,不能執行所要求的操作。指定的服務不存在。
error code(錯誤代碼)=1246是正在繼續工作。
error code(錯誤代碼)=1247是試圖進行初始操作,但是初始化已完成。
error code(錯誤代碼)=1248是沒有更多的本地設備。
error code(錯誤代碼)=1249是指定的站點不存在。
error code(錯誤代碼)=1250是具有指定名稱的域控制器已經存在。
error code(錯誤代碼)=1251是只有連接到伺服器上時,該操作才受支持。
error code(錯誤代碼)=1252是即使沒有改動,組策略框架也應該調用擴展。
error code(錯誤代碼)=1253是指定的用戶沒有一個有效的配置文件。
error code(錯誤代碼)=1254是Microsoft Small Business Server不支持此操作。
error code(錯誤代碼)=1300是並非所有被引用的特權都指派給呼叫方。
error code(錯誤代碼)=1301是帳戶名和安全標識間的某些映射未完成。
error code(錯誤代碼)=1302是沒有為該帳戶特別設置系統配額限制。
error code(錯誤代碼)=1303是沒有可用的加密密鑰。error code(錯誤代碼)=了一個已知加密密鑰。
error code(錯誤代碼)=1304是密碼太複雜,無法轉換成LAN Manager 密碼。error code(錯誤代碼)=的LAN Manager 密碼為空字元串。
error code(錯誤代碼)=1305是修訂級別未知。
error code(錯誤代碼)=1306是表明兩個修訂級別是不相容的。
error code(錯誤代碼)=1307是這個安全標識不能指派為此對象的所有者。
error code(錯誤代碼)=1308是這個安全標識不能指派為對象的主要組。
error code(錯誤代碼)=1309是當前並未模擬客戶的線程試圖操作模擬令牌。
error code(錯誤代碼)=1310是組可能未被禁用。
error code(錯誤代碼)=1311是當前沒有可用的登錄伺服器來服務登錄請求。
error code(錯誤代碼)=1312是指定的登錄會話不存在。可能已被終止。
error code(錯誤代碼)=1313是指定的特權不存在。
error code(錯誤代碼)=1314是客戶沒有所需的特權。
error code(錯誤代碼)=1315是提供的名稱並非正確的帳戶名形式。
error code(錯誤代碼)=1316是指定的用戶已存在。
error code(錯誤代碼)=1317是指定的用戶不存在。
error code(錯誤代碼)=1318是指定的組已存在。
error code(錯誤代碼)=1319是指定的組不存在。
error code(錯誤代碼)=1320是指定的用戶帳戶已是指定組的成員,或是因為組包含成員所以無法刪除指定的組。
error code(錯誤代碼)=1321是指定的用戶帳戶不是指定組帳戶的成員。
error code(錯誤代碼)=1322是無法禁用或刪除最後剩餘的系統管理帳戶。
error code(錯誤代碼)=1323是無法更新密碼。提供作為當前密碼的值不正確。
error code(錯誤代碼)=1324是無法更新密碼。提供給新密碼的值包含密碼中不允許的值。
error code(錯誤代碼)=1325是無法更新密碼。為新密碼提供的值不符合字元域的長度、複雜性或歷史要求。
error code(錯誤代碼)=1326是登錄失敗:未知的用戶名或錯誤密碼。
error code(錯誤代碼)=1327是登錄失敗:用戶帳戶限制。
error code(錯誤代碼)=1328是登錄失敗:違反帳戶登錄時間限制。
error code(錯誤代碼)=1329是登錄失敗:不允許用戶登錄到此電腦。
error code(錯誤代碼)=1330是登錄失敗:指定的帳戶密碼已過期。
error code(錯誤代碼)=1331是登錄失敗:禁用當前的帳戶。
error code(錯誤代碼)=1332是帳戶名與安全標識間無任何映射完成。
error code(錯誤代碼)=1333是一次請求過多的本地用戶標識符(LUIDs)。
error code(錯誤代碼)=1334是無更多可用的本地用戶標識符(LUIDs)。
error code(錯誤代碼)=1335是對於該特別用法,安全ID 的次級授權部分無效。
error code(錯誤代碼)=1336是訪問控制列表(ACL)結構無效。
error code(錯誤代碼)=1337是安全ID 結構無效。
error code(錯誤代碼)=1338是安全描述符結構無效。
error code(錯誤代碼)=1340是無法創建固有的訪問控制列表(ACL)或訪問控制項目(ACE)。
error code(錯誤代碼)=1341是伺服器當前已禁用。
error code(錯誤代碼)=1342是伺服器當前已啟用。
error code(錯誤代碼)=1343是提供給識別代號頒發機構的值為無效值。
error code(錯誤代碼)=1344是無更多可用的記憶體以更新安全信息。
error code(錯誤代碼)=1345是指定屬性無效,或與整個群體的屬性不相容。
error code(錯誤代碼)=1346是指定的模擬級別無效, 或所提供的模擬級別無效。
error code(錯誤代碼)=1347是無法打開匿名級安全令牌。
error code(錯誤代碼)=1348是請求的驗證信息類別無效。
error code(錯誤代碼)=1349是令牌的類型對其嘗試使用的方法不適當。
error code(錯誤代碼)=1350是無法在與安全性無關聯的對象上運行安全性操作。
error code(錯誤代碼)=1351是未能從域控制器讀取配置信息,或者是因為機器不可使用,或者是訪問被拒絕。
error code(錯誤代碼)=1352是安全帳戶管理器(SAM)或本地安全頒發機構(LSA)伺服器處於運行安全操作的錯誤狀態。
error code(錯誤代碼)=1353是域處於運行安全操作的錯誤狀態。
error code(錯誤代碼)=1354是此操作只對域的主要域控制器可行。
error code(錯誤代碼)=1355是指定的域不存在,或無法聯繫。
error code(錯誤代碼)=1356是指定的域已存在。
error code(錯誤代碼)=1357是試圖超出每伺服器域個數的限制。
error code(錯誤代碼)=1358是無法完成請求操作,因為磁碟上的嚴重介質失敗或數據結構損壞。
error code(錯誤代碼)=1359是出現了內部錯誤。
error code(錯誤代碼)=1360是通用訪問類型包含於已映射到非通用類型的訪問掩碼中。
error code(錯誤代碼)=1361是安全描述符格式不正確(絕對或自相關的)。
error code(錯誤代碼)=1362是請求操作只限制在登錄進程中使用。調用進程未註冊為一個登錄進程。
error code(錯誤代碼)=1363是無法使用已在使用中的標識啟動新的會話。
error code(錯誤代碼)=1364是未知的指定驗證數據包。
error code(錯誤代碼)=1365是登錄會話並非處於與請求操作一致的狀態中。
error code(錯誤代碼)=1366是登錄會話標識已在使用中。
error code(錯誤代碼)=1367是登錄請求包含無效的登錄類型值。
error code(錯誤代碼)=1368是在使用命名管道讀取數據之前,無法經由該管道模擬。
error code(錯誤代碼)=1369是註冊表子樹的事務處理狀態與請求狀態不一致。
error code(錯誤代碼)=1370是安全性資料庫內部出現損壞。
error code(錯誤代碼)=1371是無法在內置帳戶上運行此操作。
error code(錯誤代碼)=1372是無法在內置特殊組上運行此操作。
error code(錯誤代碼)=1373是無法在內置特殊用戶上運行此操作。
error code(錯誤代碼)=1374是無法從組中刪除用戶,因為當前組為用戶的主要組。
error code(錯誤代碼)=1375是令牌已作為主要令牌使用。
error code(錯誤代碼)=1376是指定的本地組不存在。
error code(錯誤代碼)=1377是指定的帳戶名不是本地組的成員。
error code(錯誤代碼)=1378是指定的帳戶名已是本地組的成員。
error code(錯誤代碼)=1379是指定的本地組已存在。
error code(錯誤代碼)=1380是登錄失敗:未授予用戶在此電腦上的請求登錄類型。
error code(錯誤代碼)=1381是已超過在單一系統中可保存機密的最大個數。
error code(錯誤代碼)=1382是機密的長度超過允許的最大長度。
error code(錯誤代碼)=1383是本地安全頒發機構資料庫內部包含不一致性。
error code(錯誤代碼)=1384是在嘗試登錄的過程中,用戶的安全上下文積累了過多的安全標識。
error code(錯誤代碼)=1385是登錄失敗:未授予用戶在此電腦上的請求登錄類型。
error code(錯誤代碼)=1386是更改用戶密碼時需要交叉加密密碼。
error code(錯誤代碼)=1387是由於成員不存在,無法將成員添加到本地組中,也無法從本地組將其刪除。
error code(錯誤代碼)=1388是無法將新成員加入到本地組中,因為成員的帳戶類型錯誤。
error code(錯誤代碼)=1389是已指定過多的安全標識。
error code(錯誤代碼)=1390是更改此用戶密碼時需要交叉加密密碼。
error code(錯誤代碼)=1391是表明ACL 未包含任何可承繼的組件。
error code(錯誤代碼)=1392是文件或目錄損壞且無法讀取。
error code(錯誤代碼)=1393是磁碟結構損壞且無法讀取。
error code(錯誤代碼)=1394是無任何指定登錄會話的用戶會話項。
error code(錯誤代碼)=1395是正在訪問的服務有連接數目標授許可權制。這時候已經無法再連接,原因是已經到達可接受的連接數目上限。
error code(錯誤代碼)=1396是登錄失敗:該目標帳戶名稱不正確。
error code(錯誤代碼)=1397是相互身份驗證失敗。該伺服器在域控制器的密碼過期。
error code(錯誤代碼)=1398是在客戶機和伺服器之間有一個時間差。
error code(錯誤代碼)=1400是無效的視窗句柄。
error code(錯誤代碼)=1401是無效的菜單句柄。
error code(錯誤代碼)=1402是無效的游標句柄。
error code(錯誤代碼)=1403是無效的加速器表句柄。
error code(錯誤代碼)=1404是無效的掛鉤句柄。
error code(錯誤代碼)=1405是無效的多重視窗位置結構句柄。
error code(錯誤代碼)=1406是無法創建最上層子視窗。
error code(錯誤代碼)=1407是找不到視窗類別。
error code(錯誤代碼)=1408是無效視窗;它屬於另一線程。
error code(錯誤代碼)=1409是熱鍵已註冊。
error code(錯誤代碼)=1410是類別已存在。
error code(錯誤代碼)=1411是類別不存在。
error code(錯誤代碼)=1412是類別仍有打開的視窗。
error code(錯誤代碼)=1413是無效索引。
error code(錯誤代碼)=1414是無效的圖標句柄。
error code(錯誤代碼)=1415是使用專用DIALOG 視窗字。
error code(錯誤代碼)=1416是找不到列表框標識。
error code(錯誤代碼)=1417是找不到通配字元。
error code(錯誤代碼)=1418是線程沒有打開的剪貼板。
error code(錯誤代碼)=1419是沒有註冊熱鍵。
error code(錯誤代碼)=1420是視窗不是合法的對話視窗。
error code(錯誤代碼)=1421是找不到控制項ID。
error code(錯誤代碼)=1422是因為沒有編輯控制,所以組合框的消息無效。
error code(錯誤代碼)=1423是視窗不是組合框。
error code(錯誤代碼)=1424是高度必須小於256。
error code(錯誤代碼)=1425是無效的設備上下文(DC)句柄