powershell PowerShell:Get-OSBitness

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowerShell:Get-OSBitness相关的知识,希望对你有一定的参考价值。

function Get-OSBitness {
	[CmdletBinding(SupportsShouldProcess=$True,DefaultParameterSetName="None")]
	PARAM()
	[int](Get-WmiObject -Class Win32_Processor | Select -ExpandProperty AddressWidth | Select -First 1)
}

以上是关于powershell PowerShell:Get-OSBitness的主要内容,如果未能解决你的问题,请参考以下文章

powershell PowerShell:Get-Handles

powershell PowerShell:Get-MicrosoftUpdates

powershell PowerShell:Get-NetPrefixPolicy

powershell PowerShell:Get-FileHash

powershell PowerShell:Get-ComparableVersion

powershell PowerShell:Get-OSBitness