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

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    PowerShell中获取Windows系统序列号的脚本分享

    windows序列号可以直接在注册表中读取,PowerShell要做的只是读出数据后稍作处理,让它更像一个序列号。

    复制代码 代码如下:

    function Get-ProductKey {   
        $map="BCDFGHJKMPQRTVWXY2346789"
        $value = (get-itemproperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").digitalproductid[0x34..0x42] 
        $ProductKey = "" 
        for ($i = 24; $i -ge 0; $i--) {
          $r = 0
          for ($j = 14; $j -ge 0; $j--) {
            $r = ($r * 256) -bxor $value[$j]
            $value[$j] = [math]::Floor([double]($r/24))
            $r = $r % 24
          }
          $ProductKey = $map[$r] + $ProductKey
          if (($i % 5) -eq 0 -and $i -ne 0) {
            $ProductKey = "-" + $ProductKey
          }
        }
        $ProductKey
    }

    输出结果为:

    复制代码 代码如下:

    PS> Get-ProductKey
    VKTXG-GXXY3-W97QP-GP4PV-XXXXX

    您可能感兴趣的文章:
    • Windows Powershell 执行文件和脚本
    • PowerShell脚本中控制Windows DNS服务的方法
    • windows下写的shell脚本在linux执行出错的解决办法
    • linux和windows下的自动ftp脚本(shell bat)
    • 下一代Shell脚本语言,Windows Power Shell!
    • windows下上传shell脚本不能运行的解决方法
    上一篇:PowerShell脚本中查看网卡的高级属性
    下一篇:Powershell实现克隆NTFS文件系统权限
  • 相关文章
  • 

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

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

    PowerShell中获取Windows系统序列号的脚本分享 PowerShell,中,获取,Windows,