手机
当前位置:查字典教程网 >脚本专栏 >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中使用GetType获取变量数据类型

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

PowerShell中把IP转换为长整形数字的方法

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

PowerShell中对函数参数的命名建议

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

探索PowerShell(十一)函数介绍

PowerShell实现统计函数嵌套深度

精品推荐
分类导航