There is no interface to do it.
However, you may write a PowerShell script and add it to Task Scheduler, you may use Unlock-BitLocker
command.
Have a look at:
https://learn.microsoft.com/en-us/powershell/module/bitlocker/unlock-bitlocker
Bitlocker on schedule
Hey there,
I wonder If I can unlock my encrypted disks on schedule to fit with my backups configs? I want to unlock my drives to allow windows backup to do its job.
4 answers
Sort by: Most helpful
-
Reza-Ameri 17,001 Reputation points
2022-09-02T16:22:05.527+00:00 -
Matt_Storm 11 Reputation points
2022-09-05T12:09:00.327+00:00 Is it possible to unlock specifics drives at specific times in the week and then locked them again at some other time?
-
Limitless Technology 39,726 Reputation points
2022-09-09T08:21:48.017+00:00 Hello there,
You can create a Powershell script and then run it with the help of Scheduled Task in Task scheduler. Before doing this you should have already set up your group policies so that Bitlocker keys are automatically backed up to Active Directory. The below script will help you in this.
PS C:\> $SecureString = ConvertTo-SecureString "fjuksAS1337" -AsPlainText -Force
PS C:\> Unlock-BitLocker -MountPoint "E:" -Password $SecureStringThis topic describes how BitLocker network unlock works and how to configure it. https://learn.microsoft.com/en-us/windows/security/information-protection/bitlocker/bitlocker-how-to-enable-network-unlock
--If the reply is helpful, please Upvote and Accept it as an answer–
-
Bagitman 586 Reputation points
2022-10-01T09:09:03.2+00:00 Easiest way (which does not require setting up another password):
manage-bde -unlock x: -rp 123455-145112....your_48digit_recovery_password
Lock again:
manage-bde -lock x: