手机
当前位置:查字典教程网 >脚本专栏 >PowerShell >PowerShell 获取系统信息的函数
PowerShell 获取系统信息的函数
摘要:复制代码代码如下:functionGet-SystemInfo{param($ComputerName=$env:COMPUTERNAME)...

复制代码 代码如下:

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

}

运行结果:

PowerShell 获取系统信息的函数1

你可以把结果存在变量中,这样你可以轻松的访问里面的信息

PowerShell 获取系统信息的函数2

【PowerShell 获取系统信息的函数】相关文章:

PowerShell遍历文件、文件夹的方法

PowerShell中实现混淆密码示例

Powershell小技巧之保存服务信息

Powershell小技巧之用变量累积记录错误

PowerShell注册表操作命令总结

探索PowerShell(十一)函数介绍

PowerShell编程中的一些命名规则参考

Powershell 查询 Windows 日志的方法

PowerShell小技巧之True和False的类型转换

Powershell实现捕获系统内置EXE程序的异常

精品推荐
分类导航