源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

PowerShell 获取系统信息的函数

  • 时间:2020-07-08 13:09 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:PowerShell 获取系统信息的函数
[u]复制代码[/u] 代码如下:
function Get-SystemInfo {   param($ComputerName = $env:COMPUTERNAME)   $header = 'Hostname','OSName','OSVersion','OSManufacturer','OSConfiguration','OS Build Type','RegisteredOwner','RegisteredOrganization','Product ID','Original Install Date','System Boot Time','System Manufacturer','System Model','System Type','Processor(s)','BIOS Version','Windows Directory','System Directory','Boot Device','System Locale','Input Locale','Time Zone','Total Physical Memory','Available Physical Memory','Virtual Memory: Max Size','Virtual Memory: Available','Virtual Memory: In Use','Page File Location(s)','Domain','Logon Server','Hotfix(s)','Network Card(s)'   systeminfo.exe /FO CSV /S $ComputerName |     Select-Object -Skip 1 |     ConvertFrom-CSV -Header $header }
运行结果:
[img]http://files.jb51.net/file_images/article/201403/2014321144604423.png?2014221144622[/img]
你可以把结果存在变量中,这样你可以轻松的访问里面的信息
[img]http://files.jb51.net/file_images/article/201403/2014321144646024.png?2014221144657[/img]
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部