ONTAP Discussions

DataONTAP PowerShell Toolkit Get Disk Encryption Status

GrumpyPanda
2,553 Views

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

GLENYU5820
2,137 Views
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
Public