你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS之網絡請求及各類錯誤代碼含義總結(包含AFN錯誤碼大全)

iOS之網絡請求及各類錯誤代碼含義總結(包含AFN錯誤碼大全)

編輯:IOS開發綜合

轉自http://blog.csdn.net/wangyanchang21/article/details/50932191

 

在很多時候都會遇到錯誤, 還會帶有一些 Error Code , 比如在各種網絡請求, 文件操作, cookie 錯誤等各種錯誤的代碼和錯誤代碼對應的含義. 以下目錄為 SOCKS4 Errors, SOCKS5 Errors, FTP Errors, HTTP Errors, CFURLConnection & CFURLProtocol Errors, File Errors, SSL Errors, Download and File I/O Errors, Cookie errors, C.netServices Errors等各種類型錯誤代碼。

 

一般使用 AFN中將 error 打印出來, 根據CFURLConnection & CFURLProtocol的 Errors code和  HTTP  status code.比如:Error Domain=com.alamofire.error.serialization.response Code=-1011 "Request failed: internal server error (500)" ,-1011為 error code, 500為 status code.

 

推薦一個 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)句柄。

error code(錯誤代碼)=1426是無效的掛接程序類型。

error code(錯誤代碼)=1427是無效的掛接程序。

error code(錯誤代碼)=1428是沒有模塊句柄無法設置非本機的掛接。

error code(錯誤代碼)=1429是此掛接程序只可整體設置。

error code(錯誤代碼)=1430是Journal Hook程序已安裝。

error code(錯誤代碼)=1431是掛接程序尚未安裝。

error code(錯誤代碼)=1432是單一選擇列表框的無效消息。

error code(錯誤代碼)=1433是LB_SETCOUNT發送到非被動的列表框。

error code(錯誤代碼)=1434是此列表框不支持Tab 鍵寬度。

error code(錯誤代碼)=1435是無法毀壞由另一個線程創建的對象。

error code(錯誤代碼)=1436是子窗口沒有菜單。

error code(錯誤代碼)=1437是窗口沒有系統菜單。

error code(錯誤代碼)=1438是無效的消息對話框樣式。

error code(錯誤代碼)=1439是無效的系統范圍內的(SPI_*) 參數。

error code(錯誤代碼)=1440是已鎖定屏幕。

error code(錯誤代碼)=1441是多重窗口位置結構中窗口的所有句柄必須具有相同的上層。

error code(錯誤代碼)=1442是窗口不是子窗口。

error code(錯誤代碼)=1443是無效的GW_* 命令。

error code(錯誤代碼)=1444是無效的線程標識。

error code(錯誤代碼)=1445是無法處理非多重文檔界面(MDI) 窗口中的消息。

error code(錯誤代碼)=1446是彈出式菜單已經激活。

error code(錯誤代碼)=1447是窗口沒有滾動條。

error code(錯誤代碼)=1448是滾動條范圍不可大於MAXLONG。

error code(錯誤代碼)=1449是無法以指定的方式顯示或刪除窗口。

error code(錯誤代碼)=1450是系統資源不足,無法完成請求的服務。

error code(錯誤代碼)=1451是系統資源不足,無法完成請求的服務。

error code(錯誤代碼)=1452是系統資源不足,無法完成請求的服務。

error code(錯誤代碼)=1453是配額不足,無法完成請求的服務。

error code(錯誤代碼)=1454是配額不足,無法完成請求的服務。

error code(錯誤代碼)=1455是頁面文件太小,無法完成操作。

error code(錯誤代碼)=1456是找不到菜單項。

error code(錯誤代碼)=1457是鍵盤布局句柄無效。

error code(錯誤代碼)=1458是不允許使用掛鉤類型。

error code(錯誤代碼)=1459是該操作需要交互式窗口工作站。

error code(錯誤代碼)=1460是由於超時時間已過,該操作error code(錯誤代碼)=。

error code(錯誤代碼)=1461是無效監視器句柄。

error code(錯誤代碼)=1500是事件日志文件損壞。

error code(錯誤代碼)=1501是無法打開事件日志文件,事件日志服務沒有啟動。

error code(錯誤代碼)=1502是事件日志文件已滿。

error code(錯誤代碼)=1503是事件日志文件已在讀取間更改。

error code(錯誤代碼)=1601是無法訪問Windows 安裝服務。請與技術支持人員聯系,確認 Windows安裝服務是否注冊正確。

error code(錯誤代碼)=1602是用戶取消了安裝。

error code(錯誤代碼)=1603是安裝時發生嚴重錯誤

error code(錯誤代碼)=1604是安裝已掛起,未完成。

error code(錯誤代碼)=1605是這個操作只對當前安裝的產品有效。

error code(錯誤代碼)=1606是功能ID 未注冊。

error code(錯誤代碼)=1607是組件ID 並未注冊。

error code(錯誤代碼)=1608是未知屬性。

error code(錯誤代碼)=1609是句柄處於不正確的狀態。

error code(錯誤代碼)=1610是這個產品的配置數據已損壞。請與技術支持人員聯系。

error code(錯誤代碼)=1611是組件限制語不存在。

error code(錯誤代碼)=1612是這個產品的安裝來源無法使用。請驗證來源是否存在,是否可以訪問。

error code(錯誤代碼)=1613是Windows安裝服務無法安裝這個安裝程序包。您必須安裝含有 Windows 安裝服務新版本的 Windows Service Park。

error code(錯誤代碼)=1614是沒有卸載產品。

error code(錯誤代碼)=1615是SQL查詢語法不正確或不被支持。

error code(錯誤代碼)=1616是記錄字符域不存在。

error code(錯誤代碼)=1617是設備已被刪除.

error code(錯誤代碼)=1618是正在進行另一個安裝操作。請在繼續這個安裝操作之前完成那個操作。

error code(錯誤代碼)=1619是未能打開這個安裝程序包。請驗證程序包是否存在,是否可以訪問;或者與應用程序供應商聯系,驗證這是否是有效的Windows 安裝服務程序包。

error code(錯誤代碼)=1620是未能打開這個安裝程序包。請與應用程序供應商聯系,驗證這是否是有效的Windows 安裝服務程序包。

error code(錯誤代碼)=1621是啟動Windows 安裝服務用戶界面時有錯誤。請與技術支持人員聯系。

error code(錯誤代碼)=1622是打開安裝日志文件的錯誤。請驗證指定的日志文件位置是否存在,是否可以寫入。

error code(錯誤代碼)=1623是安裝程序包的語言不受系統支持。

error code(錯誤代碼)=1624是應用變換時的錯誤。請驗證指定的變換路徑是否有效。

error code(錯誤代碼)=1625是系統策略禁止這個安裝。請與系統管理員聯系。

error code(錯誤代碼)=1626是無法執行函數。

error code(錯誤代碼)=1627是執行期間,函數出了問題。

error code(錯誤代碼)=1628是指定了無效的或未知的表格。

error code(錯誤代碼)=1629是提供的數據類型不對。

error code(錯誤代碼)=1630是這個類型的數據不受支持。

error code(錯誤代碼)=1631是Windows安裝服務未能啟動。請與技術支持人員聯系。

error code(錯誤代碼)=1632是臨時文件夾已滿或無法使用。請驗證臨時文件夾是否存在,是否可以寫入。

error code(錯誤代碼)=1633是這個處理器類型不支持該安裝程序包。請與產品供應商聯系。

error code(錯誤代碼)=1634是組件沒有在這台計算機上使用。

error code(錯誤代碼)=1635是無法打開修補程序包。請驗證修補程序包是否存在,是否可以訪問;或者與應用程序供應商聯系,驗證這是否是Windows 安裝服務的修補程序包。

error code(錯誤代碼)=1636是無法打開修補程序包。請與應用程序供應商聯系,驗證這是否是Windows 安裝服務的修補程序包。

error code(錯誤代碼)=1637是Windows安裝服務無法處理這個插入程序包。您必須安裝含有 Windows 安裝服務新版本的 Windows Service Pack。

error code(錯誤代碼)=1638是已安裝這個產品的另一個版本。這個版本的安裝無法繼續。要配置或刪除這個產品的現有版本,請用“控制面板”上的“添加/刪除程序”。

error code(錯誤代碼)=1639是無效的命令行參數。有關詳細的命令行幫助,請查閱Windows 安裝服務的 SDK。

error code(錯誤代碼)=1640是在終端服務遠程會話期間,只有管理員有添加、刪除或配置服務器軟件的權限。如果您要在服務器上安裝或配置軟件,請與網絡管理員聯系。

error code(錯誤代碼)=1641是要求的操作已成功結束。要使改動生效,必須重新啟動系統。

error code(錯誤代碼)=1642是Windows安裝服務無法安裝升級修補程序,因為被升級的程序可能會丟失或是升級修補程序可能更新此程序的一個不同版本。請確認要被升級的程序在您的計算機上且您的升級修補程序是正確的。

error code(錯誤代碼)=1700是串綁定無效。

error code(錯誤代碼)=1701是綁定句柄類型不正確。

error code(錯誤代碼)=1702是綁定句柄無效。

error code(錯誤代碼)=1703是不支持RPC 協議序列。

error code(錯誤代碼)=1704是RPC協議序列無效。

error code(錯誤代碼)=1705是字符串通用唯一標識(UUID) 無效。

error code(錯誤代碼)=1706是終結點格式無效。

error code(錯誤代碼)=1707是網絡地址無效。

error code(錯誤代碼)=1708是找不到終結點。

error code(錯誤代碼)=1709是超時值無效。

error code(錯誤代碼)=1710是找不到對象通用唯一標識(UUID)。

error code(錯誤代碼)=1711是對象通用唯一標識(UUID)已注冊。

error code(錯誤代碼)=1712是類型通用唯一標識(UUID)已注冊。

error code(錯誤代碼)=1713是RPC服務器已在偵聽。

error code(錯誤代碼)=1714是未登記任何協議序列。

error code(錯誤代碼)=1715是RPC服務器未在偵聽。

error code(錯誤代碼)=1716是未知的管理器類型。

error code(錯誤代碼)=1717是未知的界面。

error code(錯誤代碼)=1718是沒有任何鏈接。

error code(錯誤代碼)=1719是無任何協議順序。

error code(錯誤代碼)=1720是無法創建終結點。

error code(錯誤代碼)=1721是資源不足,無法完成此操作。

error code(錯誤代碼)=1722是RPC服務器不可用。

error code(錯誤代碼)=1723是RPC服務器過忙以致無法完成此操作。

error code(錯誤代碼)=1724是網絡選項無效。

error code(錯誤代碼)=1725是在此線程中,沒有使用中的遠程過程調用。

error code(錯誤代碼)=1726是遠程過程調用失敗。

error code(錯誤代碼)=1727是遠程過程調用失敗且未運行。

error code(錯誤代碼)=1728是遠程過程調用(RPC)協議出錯。

error code(錯誤代碼)=1730是RPC服務器不支持傳送語法。

error code(錯誤代碼)=1732是不支持通用唯一標識(UUID)類型。

error code(錯誤代碼)=1733是標記無效。

error code(錯誤代碼)=1734是數組邊界無效。

error code(錯誤代碼)=1735是鏈接不包含項目名稱。

error code(錯誤代碼)=1736是名稱語法無效。

error code(錯誤代碼)=1737是不支持名稱語法。

error code(錯誤代碼)=1739是沒有可用來創建通用唯一標識(UUID)的網絡地址。

error code(錯誤代碼)=1740是終結點是一份備份。

error code(錯誤代碼)=1741是未知的驗證類型。

error code(錯誤代碼)=1742是調用的最大個數太小。

error code(錯誤代碼)=1743是字符串太長。

error code(錯誤代碼)=1744是找不到RPC 協議順序。

error code(錯誤代碼)=1745是過程號超出范圍。

error code(錯誤代碼)=1746是綁定不包含任何驗證信息。

error code(錯誤代碼)=1747是未知的驗證服務。

error code(錯誤代碼)=1748是未知的驗證級別。

error code(錯誤代碼)=1749是安全上下文無效。

error code(錯誤代碼)=1750是未知的授權服務。

error code(錯誤代碼)=1751是項目無效。

error code(錯誤代碼)=1752是服務器終結點無法運行操作。

error code(錯誤代碼)=1753是終結點映射表中無更多的可用終結點。

error code(錯誤代碼)=1754是未導出任何界面。

error code(錯誤代碼)=1755是項目名稱不完整。

error code(錯誤代碼)=1756是版本選項無效。

error code(錯誤代碼)=1757是沒有其他成員。

error code(錯誤代碼)=1758是沒有內容未導出。

error code(錯誤代碼)=1759是接口沒有找到。

error code(錯誤代碼)=1760是項目已存在。

error code(錯誤代碼)=1761是找不到項目。

error code(錯誤代碼)=1762是無可用的名稱服務。

error code(錯誤代碼)=1763是網絡地址族無效。

error code(錯誤代碼)=1764是不支持請求的操作。

error code(錯誤代碼)=1765是無可用的安全上下文以允許模擬。

error code(錯誤代碼)=1766是遠程過程調用(RPC)中發生內部錯誤。

error code(錯誤代碼)=1767是RPC服務器試圖以零除整數。

error code(錯誤代碼)=1768是RPC服務器中發生地址錯誤。

error code(錯誤代碼)=1769是RPC服務器上的浮點操作導至以零做除數。

error code(錯誤代碼)=1770是RPC服務器上發生浮點下溢。

error code(錯誤代碼)=1771是RPC服務器上發生浮點上溢。

error code(錯誤代碼)=1772是自動句柄綁定的可用RPC 服務器列表已用完。

error code(錯誤代碼)=1773是無法打開字符翻譯表文件。

error code(錯誤代碼)=1774是包含字符翻譯表的文件少於512字節。

error code(錯誤代碼)=1775是在遠程過程調用時,將空的上下文句柄從客戶傳遞到主機。

error code(錯誤代碼)=1777是在遠程過程調用時,上下文句柄已更改。

error code(錯誤代碼)=1778是傳遞到遠程過程調用的綁定句柄不相符。

error code(錯誤代碼)=1779是承接體無法獲得遠程過程調用句柄。

error code(錯誤代碼)=1780是傳遞空引用指針到承接體。

error code(錯誤代碼)=1781是列舉值超出范圍。

error code(錯誤代碼)=1782是字節計數太小。

error code(錯誤代碼)=1783是承接體接收到壞數據。

error code(錯誤代碼)=1784是提供給請求操作的用戶緩沖區無效。

error code(錯誤代碼)=1785是磁盤媒體無法識別。可能未被格式化。

error code(錯誤代碼)=1786是工作站沒有信任機密。

error code(錯誤代碼)=1787是服務器上的安全數據庫沒有此工作站信任關系的計算機帳戶。

error code(錯誤代碼)=1788是主域和受信域間的信任關系失敗。

error code(錯誤代碼)=1789是此工作站和主域間的信任關系失敗。

error code(錯誤代碼)=1790是網絡登錄失敗。

error code(錯誤代碼)=1791是此線程的遠程過程調用已在進行中。

error code(錯誤代碼)=1792是試圖登錄,但是網絡登錄服務沒有啟動。

error code(錯誤代碼)=1793是用戶帳戶到期。

error code(錯誤代碼)=1794是轉發程序已被占用且無法卸載。

error code(錯誤代碼)=1795是指定的打印機驅動程序已安裝。

error code(錯誤代碼)=1796是指定的端口未知。

error code(錯誤代碼)=1797是未知的打印機驅動程序。

error code(錯誤代碼)=1798是未知的打印機處理器。

error code(錯誤代碼)=1799是指定的分隔頁文件無效。

error code(錯誤代碼)=1800是指定的優先級無效。

error code(錯誤代碼)=1801是打印機名無效。

error code(錯誤代碼)=1802是打印機已存在。

error code(錯誤代碼)=1803是打印機命令無效。

error code(錯誤代碼)=1804是指定的數據類型無效。

error code(錯誤代碼)=1805是指定的環境無效。

error code(錯誤代碼)=1806是沒有更多的綁定。

error code(錯誤代碼)=1807是所用帳戶為域間信任帳戶。請使用您的全局用戶帳戶或本地用戶帳戶來訪問這台服務器。

error code(錯誤代碼)=1808是所用帳戶是一個計算機帳戶。使用您的全局用戶帳戶或本地用戶帳戶來訪問此服務器。

error code(錯誤代碼)=1809是已使用的帳戶為服務器信任帳戶。使用您的全局用戶帳戶或本地用戶帳戶來訪問此服務器。

error code(錯誤代碼)=1810是指定域的名稱或安全標識(SID)與該域的信任信息不一致。

error code(錯誤代碼)=1811是服務器在使用中且無法卸載。

error code(錯誤代碼)=1812是指定的映像文件不包含資源區域。

error code(錯誤代碼)=1813是找不到映像文件中指定的資源類型。

error code(錯誤代碼)=1814是找不到映像文件中指定的資源名。

error code(錯誤代碼)=1815是找不到映像文件中指定的資源語言標識。

error code(錯誤代碼)=1816是配額不足,無法處理此命令。

error code(錯誤代碼)=1817是未登記任何界面。

error code(錯誤代碼)=1818是遠程過程調用被取消。

error code(錯誤代碼)=1819是綁定句柄不包含所有需要的信息。

error code(錯誤代碼)=1820是在遠程過程調用過程中通訊失敗。

error code(錯誤代碼)=1821是不支持請求的驗證級別。

error code(錯誤代碼)=1822是未登記任何主名稱。

error code(錯誤代碼)=1823是指定的錯誤不是有效的Windows RPC 錯誤碼。

error code(錯誤代碼)=1824是已配置一個只在這部計算機上有效的UUID。

error code(錯誤代碼)=1825是發生一個安全包特有的錯誤。

error code(錯誤代碼)=1826是線程未取消。

error code(錯誤代碼)=1827是無效的編碼/解碼句柄操作。

error code(錯誤代碼)=1828是序列化包裝的版本不兼容。

error code(錯誤代碼)=1829是RPC承接體的版本不兼容。

error code(錯誤代碼)=1830是RPC管道對象無效或已損壞。

error code(錯誤代碼)=1831是試圖在RPC 管道物件上進行無效操作。

error code(錯誤代碼)=1832是不被支持的RPC 管道版本。

error code(錯誤代碼)=1898是找不到該組成員。

error code(錯誤代碼)=1899是無法創建終結點映射表數據庫項。

error code(錯誤代碼)=1900是對象通用唯一標識(UUID) 為 nil UUID。

error code(錯誤代碼)=1901是指定的時間無效。

error code(錯誤代碼)=1902是指定的格式名稱無效。

error code(錯誤代碼)=1903是指定的格式大小無效。

error code(錯誤代碼)=1904是指定的打印機句柄正等候在

error code(錯誤代碼)=1905是已刪除指定的打印機。

error code(錯誤代碼)=1906是打印機的狀態無效。

error code(錯誤代碼)=1907是在第一次登錄之前,必須更改用戶密碼。

error code(錯誤代碼)=1908是找不到此域的域控制器。

error code(錯誤代碼)=1909是引用的帳戶當前已鎖定,且可能無法登錄。

error code(錯誤代碼)=1910是沒有發現指定的此對象導出者

error code(錯誤代碼)=1911是沒有發現指定的對象。

error code(錯誤代碼)=1912是沒有發現指定的對象解析器。

error code(錯誤代碼)=1913是一些待發數據仍停留在請求緩沖區內。

error code(錯誤代碼)=1914是無效的異步遠程過程調用句柄。

error code(錯誤代碼)=1915是這個操作的異步RPC 調用句柄不正確。

error code(錯誤代碼)=1916是RPC管道對象已經關閉。

error code(錯誤代碼)=1917是在RPC 調用完成之前全部的管道都已處理完成。

error code(錯誤代碼)=1918是沒有其他可用的數據來自RPC 管道。

error code(錯誤代碼)=1919是這個機器沒有可用的站點名。

error code(錯誤代碼)=1920是系統無法訪問此文件。

error code(錯誤代碼)=1921是系統無法辨識文件名。

error code(錯誤代碼)=1922是項目不是所要的類型。

error code(錯誤代碼)=1923是無法將所有對象的UUID 導出到指定的項。

error code(錯誤代碼)=1924是無法將界面導出到指定的項。

error code(錯誤代碼)=1925是無法添加指定的配置文件項。

error code(錯誤代碼)=1926是無法添加指定的配置文件元素。

error code(錯誤代碼)=1927是無法刪除指定的配置文件元素。

error code(錯誤代碼)=1928是無法添加組元素。

error code(錯誤代碼)=1929是無法刪除組元素。

error code(錯誤代碼)=2000是無效的像素格式。

error code(錯誤代碼)=2001是指定的驅動程序無效。

error code(錯誤代碼)=2002是窗口樣式或類別屬性對此操作無效。

error code(錯誤代碼)=2003是不支持請求的圖元操作。

error code(錯誤代碼)=2004是不支持請求的變換操作。

error code(錯誤代碼)=2005是不支持請求的剪切操作。

error code(錯誤代碼)=2010是指定的顏色管理模塊無效。

error code(錯誤代碼)=2011是制定的顏色文件配置無效。

error code(錯誤代碼)=2012是找不到指定的標識。

error code(錯誤代碼)=2013是找不到所需的標識。

error code(錯誤代碼)=2014是指定的標識已經存在。

error code(錯誤代碼)=2015是指定的顏色文件配置與任何設備都不相關。

error code(錯誤代碼)=2016是找不到該指定的顏色文件配置

error code(錯誤代碼)=2017是指定的顏色空間無效。

error code(錯誤代碼)=2018是圖像顏色管理沒有啟動。

error code(錯誤代碼)=2019是在刪除該顏色傳輸時有一個錯誤。

error code(錯誤代碼)=2020是該指定的顏色傳輸無效。

error code(錯誤代碼)=2021是該指定的變換與位圖的顏色空間不匹配。

error code(錯誤代碼)=2022是該指定的命名顏色索引在配置文件中不存在。

error code(錯誤代碼)=2102是沒有安裝工作站驅動程序。

error code(錯誤代碼)=2103是無法定位服務器。

error code(錯誤代碼)=2104是發生內部錯誤,網絡無法訪問共享內存段。

error code(錯誤代碼)=2105是網絡資源不足。

error code(錯誤代碼)=2106是工作站不支持這項操作。

error code(錯誤代碼)=2107是設備沒有連接。

error code(錯誤代碼)=2108是網絡連接已成功,但需要提示用戶輸入一個不同於原始指定的密碼。

error code(錯誤代碼)=2114是沒有啟動服務器服務。

error code(錯誤代碼)=2115是隊列空。

error code(錯誤代碼)=2116是設備或目錄不存在。

error code(錯誤代碼)=2117是無法在重定向的資源上執行這項操作。

error code(錯誤代碼)=2118是名稱已經共享。

error code(錯誤代碼)=2119是服務器當前無法提供所需的資源。

error code(錯誤代碼)=2121是額外要求的項目超過允許的上限。

error code(錯誤代碼)=2122是對等服務只支持兩個同時操作的用戶 。

error code(錯誤代碼)=2123是API error code(錯誤代碼)=緩沖區太小。

error code(錯誤代碼)=2127是遠程API 錯誤。

error code(錯誤代碼)=2131是打開或讀取配置文件時出錯。

error code(錯誤代碼)=2136是發生一般網絡錯誤。

error code(錯誤代碼)=2137是工作站服務的狀態不一致。重新啟動工作站服務之前,請先重新啟動計算機。

error code(錯誤代碼)=2138是工作站服務沒有啟動。

error code(錯誤代碼)=2139是所需信息不可用。

error code(錯誤代碼)=2140是發生Windows 2000 內部錯誤。

error code(錯誤代碼)=2141是服務器沒有設置事務處理。

error code(錯誤代碼)=2142是遠程服務器不支持請求的API。

error code(錯誤代碼)=2143是事件名無效。

error code(錯誤代碼)=2144是網絡上已經有此計算機名。請更名後重新啟動。

error code(錯誤代碼)=2146是配置信息中找不到指定的組件。

error code(錯誤代碼)=2147是配置信息中找不到指定的參數。

error code(錯誤代碼)=2149是配置文件中有一個命令行太長。

error code(錯誤代碼)=2150是打印機不存在。

error code(錯誤代碼)=2151是打印作業不存在。

error code(錯誤代碼)=2152是打印機目標找不到。

error code(錯誤代碼)=2153是打印機目標已經存在。

error code(錯誤代碼)=2154是打印機隊列已經存在。

error code(錯誤代碼)=2155是無法添加其它的打印機。

error code(錯誤代碼)=2156是無法添加其它的打印作業。

error code(錯誤代碼)=2157是無法添加其它的打印機目標。

error code(錯誤代碼)=2158是此打印機目標處於空閒中,不接受控制操作。

error code(錯誤代碼)=2159是此“打印機目標請求”包含無效的控制函數。

error code(錯誤代碼)=2160是打印處理程序沒有響應。

error code(錯誤代碼)=2161是後台處理程序沒有運行。

error code(錯誤代碼)=2162是打印目標當前的狀況,無法執行這項操作。

error code(錯誤代碼)=2163是打印機隊列當前的狀況,無法執行這項操作。

error code(錯誤代碼)=2164是打印作業當前的狀況,無法執行這項操作。

error code(錯誤代碼)=2165是無法為後台處理程序分配內存。

error code(錯誤代碼)=2166是設備驅動程序不存在。

error code(錯誤代碼)=2167是打印處理程序不支持這種數據類型。

error code(錯誤代碼)=2168是沒有安裝打印處理程序。

error code(錯誤代碼)=2180是鎖定服務數據庫。

error code(錯誤代碼)=2181是服務表已滿。

error code(錯誤代碼)=2182是請求的服務已經啟動。

error code(錯誤代碼)=2183是這項服務沒有響應控制操作。

error code(錯誤代碼)=2184是服務仍未啟動。

error code(錯誤代碼)=2185是服務名無效。

error code(錯誤代碼)=2186是服務沒有響應控制功能。

error code(錯誤代碼)=2187是服務控制處於忙碌狀態。

error code(錯誤代碼)=2188是配置文件包含無效的服務程序名。

error code(錯誤代碼)=2189是在當前的狀況下無法控制服務。

error code(錯誤代碼)=2190是服務異常終止。

error code(錯誤代碼)=2191是這項服務無法接受請求的"暫停" 或"停止" 操作。

error code(錯誤代碼)=2192是服務控制“計劃程序”在“計劃表”中找不到服務名。

error code(錯誤代碼)=2193是無法讀取服務控制計劃程序管道。

error code(錯誤代碼)=2194是無法創建新服務的線程。

error code(錯誤代碼)=2200是此工作站已經登錄到局域網。

error code(錯誤代碼)=2201是工作站沒有登錄到局域網。

error code(錯誤代碼)=2202是指定的用戶名無效。

error code(錯誤代碼)=2203是密碼參數無效。

error code(錯誤代碼)=2204是登錄處理器沒有添加消息別名。

error code(錯誤代碼)=2205是登錄處理器沒有添加消息別名。

error code(錯誤代碼)=2206是注銷處理器沒有刪除消息別名。

error code(錯誤代碼)=2207是注銷處理器沒有刪除消息別名。

error code(錯誤代碼)=2209是暫停網絡登錄。

error code(錯誤代碼)=2210是中心登錄服務器發生沖突。

error code(錯誤代碼)=2211是服務器沒有設置正確的用戶路徑。

error code(錯誤代碼)=2212是加載或運行登錄腳本時出錯。

error code(錯誤代碼)=2214是沒有指定登錄服務器,計算機的登錄狀態是單機操作。

error code(錯誤代碼)=2215是登錄服務器找不到。

error code(錯誤代碼)=2216是此計算機已經有一個登錄域。

error code(錯誤代碼)=2217是登錄服務器無法驗證登錄。

error code(錯誤代碼)=2219是安全數據庫找不到。

error code(錯誤代碼)=2220是組名找不到。

error code(錯誤代碼)=2221是用戶名找不到。

error code(錯誤代碼)=2222是資源名找不到。

error code(錯誤代碼)=2223是組已經存在。

error code(錯誤代碼)=2224是帳戶已經存在。

error code(錯誤代碼)=2225是資源使用權限清單已經存在。

error code(錯誤代碼)=2226是此操作只能在該域的主域控制器上執行。

error code(錯誤代碼)=2227是安全數據庫沒有啟動。

error code(錯誤代碼)=2228是用戶帳戶數據庫中的名稱太多。

error code(錯誤代碼)=2229是磁盤I/O 失敗。

error code(錯誤代碼)=2230是已經超過每個資源64 個項目的限制。

error code(錯誤代碼)=2231是不得刪除帶會話的用戶。

error code(錯誤代碼)=2232是上層目錄找不到。

error code(錯誤代碼)=2233是無法添加到安全數據庫會話高速緩存段。

error code(錯誤代碼)=2234是這項操作不能在此特殊的組上執行。

error code(錯誤代碼)=2235是用戶帳戶數據庫會話高速緩存沒有記錄此用戶。

error code(錯誤代碼)=2236是用戶已經屬於此組。

error code(錯誤代碼)=2237是用戶不屬於此組。

error code(錯誤代碼)=2238是此用戶帳戶尚未定義。

error code(錯誤代碼)=2239是此用戶帳戶已過期。

error code(錯誤代碼)=2240是此用戶不得從此工作站登錄網絡。

error code(錯誤代碼)=2241是這時候不允許用戶登錄網絡。

error code(錯誤代碼)=2242是此用戶的密碼已經過期。

error code(錯誤代碼)=2243是此用戶的密碼無法更改。

error code(錯誤代碼)=2244是現在無法使用此密碼。

error code(錯誤代碼)=2245是密碼不滿足密碼策略的需要。檢查最小密碼長度、密碼復雜性和密碼歷史的需求。

error code(錯誤代碼)=2246是此用戶的密碼最近才啟用,現在不能更改。

error code(錯誤代碼)=2247是安全數據庫已損壞。

error code(錯誤代碼)=2248是不需要更新此副本復制的網絡/本地安全數據庫。

error code(錯誤代碼)=2249是此副本復制的數據庫已過時;請同步處理其中的數據。

error code(錯誤代碼)=2250是此網絡連接不存在。

error code(錯誤代碼)=2251是此asg_type 無效。

error code(錯誤代碼)=2252是此設備當前正在共享中。

error code(錯誤代碼)=2270是計算機名無法作為消息別名添加。網絡上可能已經有此名稱。

error code(錯誤代碼)=2271是信使服務已經啟動。

error code(錯誤代碼)=2272是信使服務啟動失敗。

error code(錯誤代碼)=2273是網絡上找不到此消息別名。

error code(錯誤代碼)=2274是此消息別名已經轉發出去。

error code(錯誤代碼)=2275是已經添加了此消息別名,但是仍被轉發。

error code(錯誤代碼)=2276是此消息別名已在本地存在。

error code(錯誤代碼)=2277是添加的消息別名已經超過數目上限。

error code(錯誤代碼)=2278是無法刪除計算機名。

error code(錯誤代碼)=2279是消息無法轉發回到同一個工作站。

error code(錯誤代碼)=2280是域消息處理器出錯。

error code(錯誤代碼)=2281是消息已經發送出去,但是收件者已經暫停信使服務。

error code(錯誤代碼)=2282是消息已經發送出去,但尚未收到。

error code(錯誤代碼)=2283是消息別名當前正在使用中。請稍候片刻再試。

error code(錯誤代碼)=2284是信使服務尚未啟動。

error code(錯誤代碼)=2285是該名稱不在本地計算機上。

error code(錯誤代碼)=2286是網絡上找不到轉發的消息別名。

error code(錯誤代碼)=2287是遠程通訊站的消息別名表已經滿了。

error code(錯誤代碼)=2288是此別名的消息當前沒有在轉發中。

error code(錯誤代碼)=2289是廣播的消息被截斷。

error code(錯誤代碼)=2294是設備名無效。

error code(錯誤代碼)=2295是寫入出錯。

error code(錯誤代碼)=2297是網絡上的消息別名重復。

error code(錯誤代碼)=2298是此消息別名會在稍後刪除。

error code(錯誤代碼)=2299是沒有從所有的網絡刪除消息別名。

error code(錯誤代碼)=2300是這項操作無法在使用多種網絡的計算機上執行。

error code(錯誤代碼)=2310是此共享的資源不存在。

error code(錯誤代碼)=2311是設備沒有共享。

error code(錯誤代碼)=2312是帶此計算機名的會話不存在。

error code(錯誤代碼)=2314是沒有用此識別號打開的文件。

error code(錯誤代碼)=2315是執行遠程管理命令失敗。

error code(錯誤代碼)=2316是打開遠程臨時文件失敗。

error code(錯誤代碼)=2317是從遠程管理命令error code(錯誤代碼)=的數據已經被截斷成64K。

error code(錯誤代碼)=2318是此設備無法同時共享為後台處理資源和非後台處理資源。

error code(錯誤代碼)=2319是服務器清單中的信息可能不正確

error code(錯誤代碼)=2320是計算機在此域未處於活動狀態

error code(錯誤代碼)=2321是在刪除共享之前,需要將該共享從分布式文件系統中刪除。

error code(錯誤代碼)=2331是無法在此設備執行這項操作

error code(錯誤代碼)=2332是此設備無法共享。

error code(錯誤代碼)=2333是此設備未打開。

error code(錯誤代碼)=2334是此設備名清單無效。

error code(錯誤代碼)=2335是隊列優先級無效。

error code(錯誤代碼)=2337是沒有任何共享的通訊設備。

error code(錯誤代碼)=2338是指定的隊列不存在。

error code(錯誤代碼)=2340是此設備清單無效。

error code(錯誤代碼)=2341是請求的設備無效。

error code(錯誤代碼)=2342是後台處理程序正在使用此設備。

error code(錯誤代碼)=2343是此設備已經被當成通訊設備來使用。

error code(錯誤代碼)=2351是此計算機名無效。

error code(錯誤代碼)=2354是指定的字符串及前綴太長。

error code(錯誤代碼)=2356是此路徑組成部分無效。

error code(錯誤代碼)=2357是無法判斷輸入類型。

error code(錯誤代碼)=2362是類型緩沖區不夠大。

error code(錯誤代碼)=2370是配置文件不得超過64K。

error code(錯誤代碼)=2371是初始偏移量越界。

error code(錯誤代碼)=2372是系統無法刪除當前到網絡資源的連接。

error code(錯誤代碼)=2373是系統無法分析此文件中的命令行。

error code(錯誤代碼)=2374是加載配置文件時出錯。

error code(錯誤代碼)=2375是保存配置文件時出錯,只部份地保存了配置文件。

error code(錯誤代碼)=2378是此日志文件在前後兩次讀取之間已經發生變化。

error code(錯誤代碼)=2380是資源路徑不可以是目錄。

error code(錯誤代碼)=2381是資源路徑無效。

error code(錯誤代碼)=2382是目標路徑無效。

error code(錯誤代碼)=2383是源路徑及目標路徑分屬不同的服務器。

error code(錯誤代碼)=2385是請求的Run 服務器現在暫停。

error code(錯誤代碼)=2389是與Run 服務器通訊時出錯。

error code(錯誤代碼)=2391是啟動後台處理時出錯。

error code(錯誤代碼)=2392是找不到您連接的共享資源。

error code(錯誤代碼)=2400是LAN適配器號碼無效。

error code(錯誤代碼)=2401是此網絡連接有文件打開或請求掛起。

error code(錯誤代碼)=2402是使用中的連接仍存在。

error code(錯誤代碼)=2403是此共享名或密碼無效。

error code(錯誤代碼)=2404是設備正由活動進程使用,無法斷開。

error code(錯誤代碼)=2405是此驅動器號已在本地使用。

error code(錯誤代碼)=2430是指定的客戶已經在指定的事件注冊。

error code(錯誤代碼)=2431是警報表已滿。

error code(錯誤代碼)=2432是發出的警報名稱無效或不存在。

error code(錯誤代碼)=2433是警報接收者無效。

error code(錯誤代碼)=2434是用戶的登錄時間長短不再合法。所以已經刪除用戶與該服務器的會話。

error code(錯誤代碼)=2440是日志文件中沒有請求的記錄號。

error code(錯誤代碼)=2450是用戶帳戶數據庫沒有正確配置。

error code(錯誤代碼)=2451是當Netlogon 服務正在運行時,不允許執行這項操作。

error code(錯誤代碼)=2452是這項操作無法在最後的管理帳戶上執行。

error code(錯誤代碼)=2453是找不到此域的域控制器。

error code(錯誤代碼)=2454是無法設置此用戶的登錄信息。

error code(錯誤代碼)=2455是Netlogon服務尚未啟動。

error code(錯誤代碼)=2456是無法添加到用戶帳戶數據庫。

error code(錯誤代碼)=2457是此服務器的時鐘與主域控制器的時鐘不一致。

error code(錯誤代碼)=2458是檢測到密碼不匹配。

error code(錯誤代碼)=2460是服務器識別碼沒有指定有效的服務器。

error code(錯誤代碼)=2461是會話標識沒有指定有效的會話。

error code(錯誤代碼)=2462是連接識別碼沒有指定有效的連接。

error code(錯誤代碼)=2463是可用服務器表中無法再加上其它項。

error code(錯誤代碼)=2464是服務器已經到了支持的會話數目上限。

error code(錯誤代碼)=2465是服務器已經到了支持的連接數目上限。

error code(錯誤代碼)=2466是服務器打開的文件到了上限,無法打開更多文件。

error code(錯誤代碼)=2467是這台服務器沒有登記替換的服務器。

error code(錯誤代碼)=2470是請用低級的API (遠程管理協議)。

error code(錯誤代碼)=2480是UPS服務無法訪問 UPS 驅動程序。

error code(錯誤代碼)=2481是UPS服務設置錯誤。

error code(錯誤代碼)=2482是UPS服務無法訪問指定通訊端口 (Comm Port)。

error code(錯誤代碼)=2483是UPS顯示線路中斷或電池不足,服務沒有啟動。

error code(錯誤代碼)=2484是UPS服務無法執行系統關機的操作。

error code(錯誤代碼)=2500是下面的程序error code(錯誤代碼)=一個MS-DOS 錯誤碼:

error code(錯誤代碼)=2501是下面的程序需要更多的內存:

error code(錯誤代碼)=2502是下面程序調用了不支持的MS-DOS 函數:

error code(錯誤代碼)=2503是工作站無法啟動。

error code(錯誤代碼)=2504是下面的文件已損壞。

error code(錯誤代碼)=2505是啟動塊定義文件中沒有指定引導程序。

error code(錯誤代碼)=2506是NetBIOS error code(錯誤代碼)=錯誤: NCB及 SMB 數據轉儲。

error code(錯誤代碼)=2507是磁盤I/O 錯誤。

error code(錯誤代碼)=2508是無法替換映像參數。

error code(錯誤代碼)=2509是跨越磁盤扇區范圍的映像參數太多。

error code(錯誤代碼)=2510是不是從用/S 格式化的 MS-DOS軟盤產生的映像。

error code(錯誤代碼)=2511是稍後會從遠程重新啟動。

error code(錯誤代碼)=2512是無法調用遠程啟動服務器。

error code(錯誤代碼)=2513是無法連接到遠程啟動服務器。

error code(錯誤代碼)=2514是無法打開遠程啟動服務器上的映像文件。

error code(錯誤代碼)=2515是正在連接到遠程啟動服務器...

error code(錯誤代碼)=2516是正在連接到遠程啟動服務器...

error code(錯誤代碼)=2517是遠程啟動服務已經停止,請檢測錯誤記錄文件,查明出錯的原因。

error code(錯誤代碼)=2518是遠程啟動失敗,請檢查錯誤日志文件,查明出錯的原因。

error code(錯誤代碼)=2519是不允許第二個遠程啟動(Remoteboot) 資源連接。

error code(錯誤代碼)=2550是浏覽服務設置成MaintainServerList=No。

error code(錯誤代碼)=2610是因為沒有網卡與這項服務一起啟動,所以無法啟動服務。

error code(錯誤代碼)=2611是因為注冊表中的啟動信息不正確,所以無法啟動服務。

error code(錯誤代碼)=2612是無法啟動服務,原因是它的數據庫找不到或損壞。

error code(錯誤代碼)=2613是因為找不到RPLFILES 共享的資源,所以無法啟動服務。

error code(錯誤代碼)=2614是因為找不到RPLUSER 組,所以無法啟動服務。

error code(錯誤代碼)=2615是無法枚舉服務記錄。

error code(錯誤代碼)=2616是工作站記錄信息已損壞。

error code(錯誤代碼)=2617是工作站記錄找不到。

error code(錯誤代碼)=2618是其它的工作站正在使用此工作站名。

error code(錯誤代碼)=2619是配置文件記錄已損壞。

error code(錯誤代碼)=2620是配置文件記錄找不到。

error code(錯誤代碼)=2621是其它的配置文件正在使用此名稱。

error code(錯誤代碼)=2622是有很多工作站正在使用此配置文件。

error code(錯誤代碼)=2623是配置記錄已損壞。

error code(錯誤代碼)=2624是配置記錄找不到。

error code(錯誤代碼)=2625是適配器識別記錄已損壞。

error code(錯誤代碼)=2626是內部服務出錯。

error code(錯誤代碼)=2627是供應商識別記錄已損壞。

error code(錯誤代碼)=2628是啟動塊記錄已損壞。

error code(錯誤代碼)=2629是找不到此工作站的用戶帳戶記錄。

error code(錯誤代碼)=2630是RPLUSER本地組找不到。

error code(錯誤代碼)=2631是找不到啟動塊記錄。

error code(錯誤代碼)=2632是所選的配置文件與此工作站不兼容。

error code(錯誤代碼)=2633是其它的工作站正在使用所選的網卡。

error code(錯誤代碼)=2634是有些配置文件正在使用此配置。

error code(錯誤代碼)=2635是有數個工作站、配置文件或配置正在使用此啟動塊。

error code(錯誤代碼)=2636是服務無法制作遠程啟動數據庫的備份。

error code(錯誤代碼)=2637是找不到適配器記錄。

error code(錯誤代碼)=2638是找不到供應商記錄。

error code(錯誤代碼)=2639是其它供應商記錄正在使用此供應商名稱。

error code(錯誤代碼)=2640是其它的啟動區記錄正在使用啟動名稱或供應商識別記錄。

error code(錯誤代碼)=2641是其它的配置正在使用此配置名稱。

error code(錯誤代碼)=2660是由Dfs 服務所維護的內部數據庫已損壞

error code(錯誤代碼)=2661是內部數據庫中的一條記錄已 損壞

error code(錯誤代碼)=2662是輸入項路徑與卷路徑不匹配

error code(錯誤代碼)=2663是給定卷名已存在

error code(錯誤代碼)=2664是指定的服務器共享已在Dfs 中共享

error code(錯誤代碼)=2665是所顯示的服務器共享不支持所顯示的Dfs 卷

error code(錯誤代碼)=2666是此操作在非葉卷上無效。

error code(錯誤代碼)=2667是此操作在葉卷上無效。

error code(錯誤代碼)=2668是此操作不明確,因為該卷存在多服務器。

error code(錯誤代碼)=2669是無法創建連接點

error code(錯誤代碼)=2670是該服務器不是Dfs 可識別的

error code(錯誤代碼)=2671是指定的重命名目標路徑無效。

error code(錯誤代碼)=2672是指定Dfs 卷脫線

error code(錯誤代碼)=2673是指定的服務器不為此卷服務

error code(錯誤代碼)=2674是檢測到Dfs 名中的環路

error code(錯誤代碼)=2675是在基於服務器的Dfs 上不支持該操作

error code(錯誤代碼)=2676是這個卷已經受該指定服務器共享支持

error code(錯誤代碼)=2677是無法刪除這個卷的上一個服務器共享支持

error code(錯誤代碼)=2678是Inter-Dfs卷不支持該操作

error code(錯誤代碼)=2679是Dfs服務的內部狀態已經變得不一致

error code(錯誤代碼)=2680是Dfs服務已經安裝在指定的服務器上

error code(錯誤代碼)=2681是被協調的Dfs 數據是一樣的

error code(錯誤代碼)=2682是無法刪除Dfs 根目錄卷 - 如需要請卸載 Dfs

error code(錯誤代碼)=2683是該共享的子目錄或父目錄已經存在在一個Dfs 中

error code(錯誤代碼)=2690是Dfs內部錯誤

error code(錯誤代碼)=2691是這台機器已經加入域 。

error code(錯誤代碼)=2692是這個機器目前未加入域。

error code(錯誤代碼)=2693是這台機器是域控制器,而且無法從域中退出。

error code(錯誤代碼)=2694是目標域控制器不支持在OU 中創建的機器帳戶。

error code(錯誤代碼)=2695是指定的工作組名無效

error code(錯誤代碼)=2696是指定的計算機名與域控制器上使用的默認語言不兼容。

error code(錯誤代碼)=2697是找不到指定的計算機帳戶。

error code(錯誤代碼)=2999是這是NERR 范圍內的最後一個錯誤。

error code(錯誤代碼)=3000是指定了未知的打印監視器。

error code(錯誤代碼)=3001是指定的打印機驅動程序當前正在使用。

error code(錯誤代碼)=3002是找不到緩沖文件。

error code(錯誤代碼)=3003是未發送StartDocPrinter 調用。

error code(錯誤代碼)=3004是未發送AddJob 調用。

error code(錯誤代碼)=3005是指定的打印處理器已經安裝。

error code(錯誤代碼)=3006是指定的打印監視器已經安裝。

error code(錯誤代碼)=3007是該指定的打印監視器不具備所要求的功能。 

error code(錯誤代碼)=3008是該指定的打印監視器正在使用中。

error code(錯誤代碼)=3009是當打印機有作業排成隊列時此操作請求是不允許的。

error code(錯誤代碼)=3010是請求的操作成功。直到重新啟動系統前更改將不會生效。

error code(錯誤代碼)=3011是請求的操作成功。直到重新啟動服務前更改將不會生效。

error code(錯誤代碼)=3012是找不到打印機。

error code(錯誤代碼)=3023是用戶指定的關機命令文件,它的配置有問題。不過UPS 服務已經啟動。

error code(錯誤代碼)=3029是因為用戶帳戶數據庫(NET.ACC) 找不到或損壞,而且也沒有可用的備份數據庫,所以不能啟動本地安全機制。系統不安全!

error code(錯誤代碼)=3037是@I *登錄小時數

error code(錯誤代碼)=3039是已經超過一個目錄中文件的副本復制的限制。

error code(錯誤代碼)=3040是已經超過副本復制的目錄樹深度限制。

error code(錯誤代碼)=3046是無法登錄。用戶當前已經登錄,同時參數TRYUSER設置為 NO。

error code(錯誤代碼)=3052是命令行或配置文件中沒有提供必要的參數。

error code(錯誤代碼)=3054是無法滿足資源的請求。

error code(錯誤代碼)=3055是系統配置有問題。

error code(錯誤代碼)=3056是系統出錯。

error code(錯誤代碼)=3057是發生內部一致性的錯誤。

error code(錯誤代碼)=3058是配置文件或命令行的選項不明確。

error code(錯誤代碼)=3059是配置文件或命令行的參數重復。

error code(錯誤代碼)=3060是服務沒有響應控制,DosKillProc函數已經停止服務。

error code(錯誤代碼)=3061是運行服務程序時出錯。

error code(錯誤代碼)=3062是無法啟動次級服務。

error code(錯誤代碼)=3064是文件有問題。

error code(錯誤代碼)=3070是內存

error code(錯誤代碼)=3071是磁盤空間

error code(錯誤代碼)=3072是線程

error code(錯誤代碼)=3073是過程

error code(錯誤代碼)=3074是安全性失敗。

error code(錯誤代碼)=3075是LAN Manager根目錄不正確或找不到。

error code(錯誤代碼)=3076是未安裝網絡軟件。

error code(錯誤代碼)=3077是服務器未啟動。

error code(錯誤代碼)=3078是服務器無法訪問用戶帳戶數據庫(NET.ACC)。

error code(錯誤代碼)=3079是LANMAN樹中安裝的文件不兼容。

error code(錯誤代碼)=3080是LANMANLOGS目錄無效。

error code(錯誤代碼)=3081是指定的域無法使用。

error code(錯誤代碼)=3082是另一計算機正將此計算機名當作消息別名使用。

error code(錯誤代碼)=3083是宣布服務器名失敗。

error code(錯誤代碼)=3084是用戶帳戶數據庫沒有正確配置。

error code(錯誤代碼)=3085是服務器沒有運行用戶級安全功能。

error code(錯誤代碼)=3087是工作站設置不正確。

error code(錯誤代碼)=3088是查看您的錯誤日志文件以了解詳細信息。

error code(錯誤代碼)=3089是無法寫入此文件。

error code(錯誤代碼)=3090是ADDPAK文件損壞。請刪除 LANMANNETPROGADDPAK.SER後重新應用所有的ADDPAK。

error code(錯誤代碼)=3091是因為沒有運行CACHE.EXE,所以無法啟動 LM386服務器。

error code(錯誤代碼)=3092是安全數據庫中找不到這台計算機的帳戶。

error code(錯誤代碼)=3093是這台計算機不是SERVERS 組的成員。

error code(錯誤代碼)=3094是SERVERS組沒有在本地安全數據庫中。

error code(錯誤代碼)=3095是此Windows NT 計算機被設置為某個組的成員,並不是域的成員。此種配置下不需要運行Netlogon 服務。

error code(錯誤代碼)=3096是找不到此域的Windows NT 域控制器。

error code(錯誤代碼)=3098是服務無法與主域控制器進行驗證。

error code(錯誤代碼)=3099是安全數據庫文件創建日期或序號有問題。

error code(錯誤代碼)=3100是因為網絡軟件出錯,所以無法執行操作。

error code(錯誤代碼)=3102是這項服務無法長期鎖定網絡控制塊(NCB) 的段。錯誤碼就是相關數據。

error code(錯誤代碼)=3103是這項服務無法解除網絡控制塊(NCB) 段的長期鎖定。錯誤碼就是相關數據。

error code(錯誤代碼)=3106是收到意外的網絡控制塊(NCB)。NCB 就是相關數據。

error code(錯誤代碼)=3107是網絡沒有啟動。

error code(錯誤代碼)=3108是NETWKSTA.SYS的 DosDevIoctl 或DosFsCtl 調用失敗。顯示的數據為以下格式:DWORD值代表調用 Ioctl 或 FsCtl 的 CS:IP WORD 錯誤代碼WORD Ioctl 或 FsCtl 號

error code(錯誤代碼)=3111是發生意外的NetBIOS 錯誤。錯誤碼就是相關數據。

error code(錯誤代碼)=3112是收到的服務器消息塊(SMB) 無效。SMB 就是相關數據。

error code(錯誤代碼)=3114是因為緩沖區溢出,所以錯誤日志文件中部份的項目丟失。

error code(錯誤代碼)=3120是控制網絡緩沖區以外資源用量的初始化參數被設置大小,因此需要的內存太多。

error code(錯誤代碼)=3121是服務器無法增加內存段的大小。

error code(錯誤代碼)=3124是服務器啟動失敗。三個chdev參數必須同時為零或者同時不為零。

error code(錯誤代碼)=3129是服務器無法更新AT 計劃文件。文件損壞。

error code(錯誤代碼)=3130是服務器調用NetMakeLMFileName 時出錯。錯誤碼就是相關數據。

error code(錯誤代碼)=3132是無法長期鎖定服務器緩沖區。請檢查交換磁盤的可用空間,然後重新啟動系統以啟動服務器。

error code(錯誤代碼)=3140是因為多次連續出現網絡控制塊(NCB) 錯誤,所以停止服務。最後一個壞的 NCB以原始數據形式出現。

error code(錯誤代碼)=3141是因為消息服務器共享的數據段被鎖住,所以消息服務器已經停止運行。

error code(錯誤代碼)=3151是因為VIO 調用出錯,所以無法彈出顯示消息。錯誤碼就是相關數據。

error code(錯誤代碼)=3152是收到的服務器消息塊(SMB) 無效。SMB 就是相關數據。

error code(錯誤代碼)=3160是工作站信息段大於64K。大小如下(以DWORD 值的格式):

error code(錯誤代碼)=3161是工作站無法取得計算機的名稱號碼。

error code(錯誤代碼)=3162是工作站無法初始化Async NetBIOS 線程。錯誤碼就是相關數據。

error code(錯誤代碼)=3163是工作站無法打開最前面的共享段。錯誤碼就是相關數據。

error code(錯誤代碼)=3164是工作站主機表已滿。

error code(錯誤代碼)=3165是收到的郵筒服務器消息塊(SMB) 有問題,SMB 就是相關數據。

error code(錯誤代碼)=3166是工作站啟動用戶帳戶數據庫時出錯。錯誤碼就是相關數據。

error code(錯誤代碼)=3167是工作站響應SSI 重新驗證請求時出錯。函數碼及錯誤碼就是相關數據。

error code(錯誤代碼)=3174是服務器無法讀取AT 計劃文件。

error code(錯誤代碼)=3175是服務器發現錯誤的AT 計劃記錄。

error code(錯誤代碼)=3176是服務器找不到AT 計劃文件,所以創建一個計劃文件。

error code(錯誤代碼)=3185是因為用戶帳戶數據庫(NET.ACC) 找不到或損壞,而且也沒有可用的備份數據庫,所以不能啟動本地安全機制。系統不安全!

error code(錯誤代碼)=3204是服務器無法創建線程。CONFIG.SYS中的 THREADS 參數必須加大。

error code(錯誤代碼)=3213是已經超過一個目錄中文件的副本復制的限制。

error code(錯誤代碼)=3214是已經超過副本復制的目錄樹深度限制。

error code(錯誤代碼)=3215是郵筒中收到的消息無法識別。

error code(錯誤代碼)=3217是無法登錄。用戶當前已經登錄,同時參數TRYUSER設置為 NO。

error code(錯誤代碼)=3230是檢測到服務器的電源中斷。

error code(錯誤代碼)=3231是UPS服務已經關掉服務器。

error code(錯誤代碼)=3232是UPS服務沒有完成執行用戶指定的關機命令文件。

error code(錯誤代碼)=3233是無法打開UPS 驅動程序。錯誤碼就是相關數據。

error code(錯誤代碼)=3234是電源已經恢復。

error code(錯誤代碼)=3235是用戶指定的關機命令文件有問題。

error code(錯誤代碼)=3256是該項服務的動態鏈接庫發生無法修復的錯誤。

error code(錯誤代碼)=3257是系統error code(錯誤代碼)=意外的錯誤碼。錯誤碼就是相關數據。

error code(錯誤代碼)=3258是容錯錯誤日志文件- LANROOTLOGSFT.LOG超過 64K。

error code(錯誤代碼)=3259是容錯錯誤日志文件- LANROOTLOGSFT.LOG,在被打開時就已設置更新進度位,這表示上次使用錯誤日志時,系統死機。

error code(錯誤代碼)=3301是Remote IPC

error code(錯誤代碼)=3302是Remote Admin

error code(錯誤代碼)=3303是Logon server share

error code(錯誤代碼)=3304是網絡出錯。

error code(錯誤代碼)=3400是內存不足,無法啟動工作站服務。

error code(錯誤代碼)=3401是讀取LAMAN.INI 文件的 NETWORKS項目出錯。

error code(錯誤代碼)=3404是LAMAN.INI文件中的 NETWORKS 項目太多。

error code(錯誤代碼)=3408是程序無法用在此操作系統。

error code(錯誤代碼)=3409是已經安裝轉發程序。

error code(錯誤代碼)=3411是安裝NETWKSTA.SYS 時出錯。請按 ENTER繼續。

error code(錯誤代碼)=3412是求解程序鏈接問題。

error code(錯誤代碼)=3419是您已經打開文件或設備,強制斷開會造成數據丟失。

error code(錯誤代碼)=3420是內部用的默認共享

error code(錯誤代碼)=3421是信使服務

error code(錯誤代碼)=3500是命令成功完成。

error code(錯誤代碼)=3501是使用的選項無效。

error code(錯誤代碼)=3503是命令包含無效的參數個數。

error code(錯誤代碼)=3504是命令運行完畢,但發生一個或多個錯誤。

error code(錯誤代碼)=3505是使用的選項數值不正確。

error code(錯誤代碼)=3510是命令使用了沖突的選項。

error code(錯誤代碼)=3512是軟件需要新版的操作系統。

error code(錯誤代碼)=3513是數據多於Windows 2000 所能夠error code(錯誤代碼)=的。

error code(錯誤代碼)=3515是此命令只能用在Windows 2000 域控制器。

error code(錯誤代碼)=3516是這個指令不能用於一個Windows 2000 域控制器。

error code(錯誤代碼)=3520是已經啟動以下Windows 2000 服務:

error code(錯誤代碼)=3525是停止工作站服務也會同時停止服務器服務 。

error code(錯誤代碼)=3526是工作站有打開的文件。

error code(錯誤代碼)=3533是服務正在啟動或停止中,請稍候片刻後再試一次。

error code(錯誤代碼)=3534是服務沒有報告任何錯誤。

error code(錯誤代碼)=3535是正在控制設備時出錯。

error code(錯誤代碼)=3660是這些工作站在這台服務器上有會話:

error code(錯誤代碼)=3661是這些工作站有會話打開了此台服務器上的文件:

error code(錯誤代碼)=3666是消息別名已經轉發出去。

error code(錯誤代碼)=3670是您有以下的遠程連接:

error code(錯誤代碼)=3671是繼續運行會取消連接。

error code(錯誤代碼)=3676是會記錄新的網絡連接。

error code(錯誤代碼)=3677是不記錄新的網絡連接。

error code(錯誤代碼)=3678是保存配置文件時出錯,原先記錄的網絡連接狀態沒有更改。

error code(錯誤代碼)=3679是讀取配置文件時出錯。

error code(錯誤代碼)=3682是沒有啟動任何網絡服務。

error code(錯誤代碼)=3683是清單是空的。

error code(錯誤代碼)=3689是工作站服務已經在運行中,Windows 2000會忽略工作站的命令選項。

error code(錯誤代碼)=3694是在打印作業正在後台處理到隊列時,無法刪除共享的隊列。

error code(錯誤代碼)=3710是打開幫助文件時出錯。

error code(錯誤代碼)=3711是幫助文件是空的。

error code(錯誤代碼)=3712是幫助文件已經損壞。

error code(錯誤代碼)=3714是這是專為那些安裝舊版軟件的系統提供的操作。

error code(錯誤代碼)=3716是設備類型未知。

error code(錯誤代碼)=3717是日志文件已經損壞。

error code(錯誤代碼)=3718是程序文件名後必須以.EXE 結束。

error code(錯誤代碼)=3719是找不到匹配的共享,因此沒有刪除。

error code(錯誤代碼)=3720是用戶記錄中的“單位/星期”的值不正確。

error code(錯誤代碼)=3725是刪除共享時出錯。

error code(錯誤代碼)=3726是用戶名無效。

error code(錯誤代碼)=3727是密碼無效。

error code(錯誤代碼)=3728是密碼不匹配。

error code(錯誤代碼)=3729是永久連接沒有完全還原。

error code(錯誤代碼)=3730是計算機名或域名錯誤。

error code(錯誤代碼)=3732是無法設置該資源的默認權限。

error code(錯誤代碼)=3734是沒有輸入正確的密碼。

error code(錯誤代碼)=3735是沒有輸入正確的名稱。

error code(錯誤代碼)=3736是該資源無法共享。

error code(錯誤代碼)=3737是權限字符串包含無效的權限。

error code(錯誤代碼)=3738是您只能在打印機或通訊設備上執行這項操作。

error code(錯誤代碼)=3743是服務器沒有設置遠程管理的功能。

error code(錯誤代碼)=3752是這台服務器上沒有用戶的會話。

error code(錯誤代碼)=3756是響應無效。

error code(錯誤代碼)=3757是沒有提供有效的響應。

error code(錯誤代碼)=3758是提供的目標清單與打印機隊列目標清單不匹配。

error code(錯誤代碼)=3761是指定的時間范圍中結束的時間比開始的時間早。

error code(錯誤代碼)=3764是提供的時間不是整點。

error code(錯誤代碼)=3765是12與 24 小時格式不能混用。

error code(錯誤代碼)=3767是提供的日期格式無效。

error code(錯誤代碼)=3768是提供的日期范圍無效。

error code(錯誤代碼)=3769是提供的時間范圍無效。

error code(錯誤代碼)=3770是NET USER的參數無效。請檢查最短的密碼長度和/或提供參數。

error code(錯誤代碼)=3771是ENABLESCRIPT的值必須是 YES。

error code(錯誤代碼)=3773是提供的國家(地區)代碼無效。

error code(錯誤代碼)=3774是用戶已經創建成功,但是無法添加到USERS本地組中。

error code(錯誤代碼)=3775是提供的用戶上下文無效。

error code(錯誤代碼)=3777是文件發送功能已不再支持。

error code(錯誤代碼)=3778是您可能沒有指定ADMIN$ 及 IPC$ 共享的路徑。

error code(錯誤代碼)=3784是只有磁盤共享可以標記為可以緩存。

 

【iOS之網絡請求及各類錯誤代碼含義總結(包含AFN錯誤碼大全)】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved