🙆‍♀️

RDPファイルに埋め込むパスワードを生成する

2022/02/20に公開

tl;dr

PowerShellで変換することができる。変換したパスワードは*.rdpファイルに記載できる形式にできる。

detail

PowerShellで変換する。管理者権限で実行しなくても良い。

Add-Type -AssemblyName System.Security
$password = "YOUR PASSWORD"
([System.Security.Cryptography.ProtectedData]::Protect([System.Text.Encoding]::Unicode.GetBytes($password), $null, [System.Security.Cryptography.DataProtectionScope]::CurrentUser) | ForEach-Object ToString X2) -join "" | clip

ファイルにpassword 51:b:と連結する。

password 51:b:010010101000(snip)7088000

Discussion