BitLocker remote unlocking

72096542 1 Reputation point
2021-10-13T15:52:00.43+00:00

Hi,

is there a way to unlock BitLocker remotely for a Windows VPS? The ISP doesn't support a vTPM at all.
I liked to use LUKS on a Linux VPS which is unlocked thru a ssh session.
Thanks!

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,122 questions
Windows Server Security
Windows Server Security
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.Security: The precautions taken to guard against crime, attack, sabotage, espionage, or another threat.
1,720 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MTG 1,196 Reputation points
    2021-10-14T08:47:54.753+00:00

    If Windows is running and you would like to unlock a data (non-system) drive, this can be done using Powershell Remoting or psexec.
    So you start a shell on the remote machine like this
    psexec \remotepc cmd -ru adminonremote -rp adminonremotepassword
    Then on the shell you go
    manage-bde -unlock x: -pw
    (-pw is for password protector and the password will be asked for).

    0 comments No comments