• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    PowerShell中查询错误编号信息的2个方法

    有时候,一些本地命令,比如net.exe,在执行过程中,会返回数字编号形式的错误信息。很郁闷的是,我们不知道这些数字代表什么意思。以前,我们可以使用如下的方式去获取数字代表的信息:

    复制代码 代码如下:

    PS> net helpmsg 3534
    The service did not report an error.

    PS> net helpmsg 1
    Incorrect function.

    PS> net helpmsg 4323
    The transport cannot access the medium.


    其实有一个更好的方法,那就是使用winrm.exe,它不仅可以实现上面的功能,而且还要更加强大!同样的,看看对上面三个错误的翻译:
    复制代码 代码如下:

    PS> winrm helpmsg 3534
    The service did not report an error.

    PS> winrm helpmsg 1
    Incorrect function.

    PS> winrm helpmsg 4323
    The transport cannot access the medium.


    OK,看到了吧,结果是一样的。其实,net.exe只能翻译中一个特定规范内的错误信息(具体怎么样一个特定的规范,洪哥也不是很清楚),而winrm.exe则要更加强大,比如它可以转换“特定的远程”错误代码:
    复制代码 代码如下:

    PS> winrm helpmsg 0x80338104
    The WS-Management service cannot process the request. The WMI service returned an 'access denied' error.

    PS> net helpmsg 0x80338104
    The syntax of this command is:
    NET HELPMSG
    message#


    上面可以看出来,winrm.exe正确的翻译出了0x80338104的错误信息,而net.exe没有做到。其实,这个命令可能跟PowerShell没有什么直接的关系,但也算是一个Shell命令吧,我们可以使用它去翻译任何低级的API错误代码,并且坚定的相信它得到的结果。

    您可能感兴趣的文章:
    • PowerShell捕获错误的2种方法(异常捕获命令、错误变量)
    • Powershell小技巧之找出脚本中的错误
    • Powershell小技巧之用变量累积记录错误
    • 浅谈PowerShell 捕获错误
    • Powershell错误处理之what-if
    上一篇:PowerShell中定义多个变量并赋值的例子
    下一篇:PowerShell脚本实现添加、修改任务计划的例子
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    PowerShell中查询错误编号信息的2个方法 PowerShell,中,查询,错误,编号,