IIS7中的sc-win32-status代码为-2147023901

时间:2014-08-20 18:21:30

标签: iis-7

如果请求失败,我们收到的sc-win32-Status代码为-2147023901。当我们在网上搜索时,我们没有得到太多信息。

请注意问题是否与任何网络问题有关。

1 个答案:

答案 0 :(得分:0)

我猜这个错误真的是995:

ERROR_OPERATION_ABORTED
The I/O operation has been aborted because of either a thread exit or an application request.

某些库将正常的Windows错误代码与DWORD值的高16位中的某些标记组合在一起,这可以隐藏原始数字。如果我看到-2100000000左右的负数错误代码,我这样做:

  1. 转换为十六进制(使用calc.exe或其他)在这种情况下,十进制-2147023901是十六进制0x800703E3。
  2. 取低16位(0x00003E3)
  3. 试着看一下。 For instance, on MSDN
  4. 另一个常用的技巧是查看是否可以通过certutil -error进行解码。从命令行:

    C:\>certutil -error -2147023901
    0x800703e3 (WIN32: 995) -- 2147943395 (-2147023901)
    Error message text: The I/O operation has been aborted because of either a thread exit or an application request.
    CertUtil: -error command completed successfully.