web-dev-qa-db-ja.com

Bitlockerコマンドレットを活用するにはどうすればよいですか?

この記事 以下を使用してビットロックされたドライブのロックを解除できることを示唆しています。

Unlock-BitLocker -MountPoint -Password

ただし、Powershellと、Powershellコマンドレットを使用してやりたいことを実行する方法についてはうんざりしています。

では、上記を使用して次のようなことを行うにはどうすればよいですか?

Unlock-BitLocker -MountPoint D:\ -Password "password"

現在、私が知っている方法とほぼ同じくらい、Powershellを起動することです。それだけです。これができるようになるまで、Powershellの大部分を学びたくありません。最初のリンクで指摘されているコマンドを実行する方法を知るのに十分な知識が必要です。

これまでのところ、PowerShellプロンプトで過去に行った場合:

Unlock-BitLocker -MountPoint D:\ -Password "password"

次のエラーが発生します。

The term 'Unlock-BitLocker' is not recognized as the name of a cmdlet, function, script file, or operable program. Chec
k the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:17
+ Unlock-BitLocker <<<<  -MountPoint D:\ -Password "password"
    + CategoryInfo          : ObjectNotFound: (Unlock-BitLocker:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

これは、最初にリンクされたページのコマンドがPowerShellコンテキストでどのように機能するかについての手がかりがないためである可能性があります。

これは私がここで私自身の質問に答えることができるようにするためです:

https://superuser.com/questions/437713/bitlocker-and-scheduled-task-powershell-script-to-unlock-non-system-drive

2
richardnpaul

前述のように ここ (セクション「実用的なアプリケーション」)BitLockerドライブ暗号化ツールリモートサーバー管理ツール および この記事 によると、Windows 7では使用できません(ページ下部のサポートマトリックスを参照してください)。

2
Ansgar Wiechers