2971
Views
0
Helpful
2
Replies
CIMC PowerShell Get Power State

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2020 08:07 PM
I'm trying to get the power state of a UCS C220 M3 server with PowerShell. Questions:
1) What cmdlet I shall use? Shall I use "Get-ImcChassis"?
2) What parameters I shall use with the cmdlet?
Thank you!
Labels:
- Labels:
-
Other UCS Topics
2 Replies 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2020 12:21 AM
Hello @helloguys
You can use the following:
PowerTool C:\> $handle = Connect-Imc <ip-address> -NotDefault PowerTool C:\> Get-ImcRackUnit -Imc $handle AdaptorSecureUpdate : <snip> OperPower : on </snip>
Stay safe,
Sergiu
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2020 10:15 AM
Thank you Sergiu!
