發表文章

目前顯示的是 3月, 2025的文章

Save RDP credentials(Password) into RDP file

Default.rdp insert user infomation username:s:<USER_ID> password 51:b:<ENCRYPTED_PASSWORD > PowerShell Command to Get ENCRYPTED_PASSWORD: $Password = ConvertTo-SecureString "YourPassword" -AsPlainText -Force $Password | Export-Clixml -Path "C:\securePassword.xml"