Forum Discussion
Kashish_Goyal
Oct 10, 2023Copper Contributor
Bitlocker encryption
Hi, We have enabled Bitlocker using Intune and used AES 256bit XTS. But when we run manage-bde -status it says the encryption method is XTS-AES 128. Any suggestions on this? Is it a potential Bu...
- Oct 18, 2023Ok, but if you want the intune clients to also have 256Bit... Then you will have to decrypt them and encrypt them again to fix that
Oct 18, 2023
Ok, but if you want the intune clients to also have 256Bit... Then you will have to decrypt them and encrypt them again to fix that
Kashish_Goyal
Oct 18, 2023Copper Contributor
Thanks Harm... Do you have like a documentation or procedure to decrypt Bitlocker. I have done some research, could not get to a point.
Thanks
Thanks
- Oct 23, 2023Did the decryption work out for you?
- Kashish_GoyalNov 03, 2023Copper ContributorHi Harm,
As per my reply earlier, Manual Decryption was working well on machines. However, if I run the script from Intune, it gets failed each time. The script needs needs to be run with elevated privileges and Intune does that any way. In the logs it says Access Denied. Any ideas around it?
Thanks- Nov 03, 2023You could use logging to see what's happening :
Start-Transcript c:\Windows\Temp\decrypt.log
$BLV = Get-BitLockerVolume
Disable-BitLocker -MountPoint
Stop-Transcript
Deploy that to a computer and check the log afterwards. You're running it as System and not as the logged in user?
- Kashish_GoyalOct 24, 2023Copper ContributorHi Harm, I have done some testing today and it seems to be working like a charm.
Thanks so much for your help.
Also, do have any recommendations around setting up Startup PIN using Intune. I have research around bit using admin templates. But then we have to set the PIN using elevated command prompt. This is what I have come around, do you have any other suggestions around it?
Thanks- Oct 24, 2023
Kashish_Goyal Great to hear that it works for you, haven't had customers yet where I did the startup pin. I suggest opening a new topic about this here, enough knowledge here to help you with that 🙂
- Oct 18, 2023
Kashish_Goyal The Easiest to decrypt a 128Bit drive is to push out a script like this:
$BLV = Get-BitLockerVolume Disable-BitLocker -MountPoint $BLV
This decrypts your Bitlocker volume, push this out to a group of computers. But... Exclude that group of computers of Configuration Profiles for encryption and Compliance things because that group won't be compliant anymore. After decryption, you can remove the computer from the group so that it receives the settings again and can be compliant again.