Solution
For bitlocker specific details, from an elevated Powershell prompt type Get-BitLockerVolume or optionally add | fl * at the end for more details.
To see if a disk is read-only, in Powershel, run the following command
Get-Disk | ? { $_.IsReadOnly -eq $True } or just do Get-Disk | fl * and look for isReadOnly
To see if a disk is read-only, in Powershel, run the following command
Get-Disk | ? { $_.IsReadOnly -eq $True } or just do Get-Disk | fl * and look for isReadOnly
- Joined
- Jul 4, 2015
- Messages
- 8,998
For bitlocker specific details, from an elevated Powershell prompt type Get-BitLockerVolume or optionally add | fl * at the end for more details.
To see if a disk is read-only, in Powershel, run the following command
Get-Disk | ? { $_.IsReadOnly -eq $True } or just do Get-Disk | fl * and look for isReadOnly
To see if a disk is read-only, in Powershel, run the following command
Get-Disk | ? { $_.IsReadOnly -eq $True } or just do Get-Disk | fl * and look for isReadOnly
Similar threads
- Article
- Replies
- 0
- Views
- 11