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"