forked from jajp777/powershell-scripts-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Get-ChassisType.ps1
70 lines (70 loc) · 2.94 KB
/
Get-ChassisType.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
function Get-ChassisType {
[CmdletBinding()]
param(
[Parameter(ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)]
[Alias('PSComputerName','DNSHostName','CN','Hostname')]
[System.Object[]]
$ComputerName
) #param
begin {
if (-not ($PSBoundParameters.ContainsKey('ComputerName'))) {
$Computer = $false
} elseif ($PSBoundParameters.ContainsKey('ComputerName')) {
$Computer = $true
} #if
if (-not $Computer) {
$ComputerName = $env:COMPUTERNAME
} #if
} #begin
process {
$ComputerName | ForEach-Object {
$EachComputer = $_
if ($EachComputer -match $env:COMPUTERNAME) {
$SplatArgs = @{ ClassName = 'CIM_Chassis'
Property = 'ChassisTypes'
ErrorAction = [System.Management.Automation.ActionPreference]::SilentlyContinue }
} elseif (-not ($EachComputer -match $env:COMPUTERNAME)) {
$SplatArgs = @{ ComputerName = $EachComputer
ClassName = 'CIM_Chassis'
Property = 'ChassisTypes'
ErrorAction = [System.Management.Automation.ActionPreference]::SilentlyContinue }
} #if
Get-CimInstance @SplatArgs | Select-Object -Property ChassisTypes | ForEach-Object {
New-Object -TypeName psobject -Property @{
ComputerName = $EachComputer
ChassisType = $_ | Select-Object -ExpandProperty ChassisTypes
}
} | ForEach-Object {
$Chassis = switch -Exact ($_.ChassisType) {
0 {'Other'}
1 {'Unknown'}
3 {'Desktop'}
4 {'Low Profile Desktop'}
5 {'Pizza Box'}
6 {'Mini Tower'}
7 {'Tower'}
8 {'Portable'}
9 {'Laptop'}
10 {'Notebook'}
11 {'Hand-held'}
12 {'Docking Station'}
13 {'All-in-one'}
14 {'Sub notebook'}
15 {'Space-saving'}
16 {'Lunch Box'}
17 {'Main System Chassis'}
18 {'Expansion chassis'}
19 {'Sub chassis'}
20 {'Bus Expansion Chassis'}
21 {'Peripheral Chassis'}
22 {'Storage chassis'}
23 {'Rack mount chassis'}
24 {'Sealed-case PC'}
}
Add-Member -InputObject $_ -MemberType NoteProperty -Name Chassis -Value $Chassis
$_ | Select-Object -Property ComputerName,ChassisType,Chassis
} #ForEach ChassisType
} #ForEach ComputerName
} #process
end {} #end
} #function Get-ChassisType