Hello
I have completed the following procedure,
This created the startup key which is fine
Manage-bde -protectors -add C: -startupkey :E
I then encrypted the drive, which also worked
manage-bde -on C:
Rebooted the server, once the server came back up I decided to add another protector
I then ran these commands to add a password protector which worked
$SecureString = ConvertTo-SecureString "SomePassowrdInHere" -AsPlainText -Force
Add-BitLockerKeyProtector -MountPoint C: -PasswordProtector -Password $SecureString
So then I ran
manage-bde -status
You can see the two protectors

When I reboot the server, I am never prompted to enter a password when the server starts
What did I do wrong?