Questions tagged [bitlocker]

full disk encryption feature included with select editions of Windows Vista and later

BitLocker (codenamed Cornerstone and formerly known as Secure Startup) is a full disk encryption feature included with select editions of Windows Vista and later. It is designed to protect data by providing encryption for entire volumes.

139 questions
0
votes
0 answers

Bitlocker remote encryption and output to Active Directory with PS script

I'm working on an unusual script in PowerShell. I need a script that connects to the PC according to the pc list that is created as a .txt file and does the following: Activates the TPM chip in the Local group policy even if the station does not…
0
votes
1 answer

Bitlocker keys of a device through the Azure AD API

Fairly new to Windows world, I am trying to get Bitlocker keys of a device through the Azure AD API in python (I am in the case where I store those keys in the AD domain). My client application is registered in the AD and BitlockerKey.ReadBasic.All…
lc63
  • 25
  • 1
  • 4
0
votes
0 answers

Check digit in bitlocker recovery key

How is build the check digit in the bitlocker key? I just can't work it out from the following sources: https://blogs.msdn.microsoft.com/si_team/2006/08/10/bitlocker-recovery-password-details/ http://jessekornblum.com/publications/di09.pdf chap.…
0
votes
3 answers

Batch file doesn't seem to call other batch files correctly

I'm trying to create a batch file that calls other batch files which unlock a specific drive on a server at start. I know the unlock scripts work. The drive unlocks as it should if I run them. But when I try to automate it by creating another batch…
0
votes
0 answers

There is a way to check bitlocker status on a drive without admin privileges?

I'm coding a python app which check the bitlocker status on a drive. I'm unsing subprocess to run commands lines in python. But i would like to use this app on computer without admin privileges but the command manage-bde only works with admin…
0
votes
1 answer

Checking status of Bitlocker is return null

I created block of code for checking bitlocker is enable or not in machine following to this topic: Detect BitLocker programmatically from c# without admin I is working well almost machine, but from now there is a machine return null…
new user
  • 1
  • 1
0
votes
0 answers

Powershell - How to add computer name in file name on Bitlocker script?

So I am making a script that will enable Bitlocker through powershell. The reason I am making this script it so I can place it on my companies MSP, making automation that much easier. I have the script that enables bitlocker and makes the recovery…
Tbuente
  • 1
  • 1
0
votes
0 answers

Export a list of BitLocker Devices on AD

Im trying extract a report from AD of a list of devices that have BitLocker enabled. We have a Win 2008 r2 Domain Controller and most of our devices are Win 10 with a few Win 8.1 in the mix. I'm no expert in power shell but have used it in the past…
user11724406
  • 1
  • 1
  • 2
0
votes
1 answer

can we move encrypted virtual machines from subscription to subscription

virtual machine is encrypted with disk encryption for data and OS disks.now i want to continue the encryption by moving the same machine into another subscription. the encryption keys are stored in key vault
0
votes
1 answer

Is it possible to protect desktop applications cached files using bit locker

Can i create a partition on my harddrive and then put bilocker encryption on it and then some how setup my desktop windows application such that it can access that drive but at the same time no user or atleast no user without admin privileges is…
Gkills
  • 587
  • 1
  • 6
  • 28
0
votes
1 answer

Backup problem after moving Azure VM to a new resource group

I have the following scenario: I have one Azure windows VM I have encrypted the disk and created a keyvault in the same resource group I have moved all the VM (plus related resourcer) + keyvault to a new resource group And now I can't configure…
0
votes
1 answer

Change BitLocker Encryption to AES-256 Windows 10 Pro

I'm trying to force BitLocker to use AES-256 level encryption for the entire operating system drive on Windows 10 Pro. The drive is currently encrypted with BitLocker at AES-128 level encryption. I don't see anything online for how to do this. I've…
random_dsp_guy
  • 246
  • 2
  • 13
0
votes
1 answer

DirectorySearcher Class Out of Range Exception

I can't seem to return any meaningful search results when I perform a directory search for a BitLocker recovery key. DirectoryEntry entry = new DirectoryEntry("LDAP://OU=MYOU,DC=MYDC", adminUsername, adminPassword); …
bass
  • 3
  • 4
0
votes
1 answer

How to enable Bitlocker for C drive or any drive?

I am using following PowerShell script to enable BitLocker on C drive, $SecureString = ConvertTo-SecureString "ABC123" -AsPlainText -Force Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -Password $SecureString And getting the…
0
votes
1 answer

Issue with Get-ADObject and Where-Object Using a Variable

I'm wanting to get the BitLocker recovery password via powershell by providing the recovery key ID. I know this is doable via the Active Directory Users and Computers application, which is essentially what I'm trying to reproduce. My process is…
Death259
  • 153
  • 2
  • 14