Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
DataONTAP PowerShell Toolkit Get Disk Encryption Status
2017-09-15
11:57 AM
3,196 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
I'm using DataONTAP Powershell Toolkit. Can someone please tell me how to get the status of disk encryption? We are encryted at the disk level, not the volume level.
I ran the cmd Get-NcDiskEncryptStatus and got some outputm but can someone please explain to me what each output means?
Thanks in advanced.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Man page can explain to you what each output means. but I use below to find if there is any NSE disk without data or FIPS keys. get-ncdiskencrypt | Where-Object {$_.datakeyid -eq "0x0" -or $_.fipskeyid -eq "0x0"} | Select-Object DiskName
