I could not able find what password it writing, Any solution? I have tried write line & message box. password given through Config

Credentials

Hello @Manju_Reddy_Kanughula ,

Are you using Password as a Secure String?
If yes you can convert it to string and view it in write line or log message, use the below expression to convert secure string to String.
password_String = new System.Net.NetworkCredential(string.Empty, Password).Password

Regards,
Rohith

Hello @Manju_Reddy_Kanughula

Please refer to the below post. It will help you to convert secure string to string.
**password_String = new System.Net.NetworkCredential(string.Empty, Password).Password**

If you mean you would like to check what it has input for the purposes of troubleshooting - just put a breakpoint after the type step before you press enter / click logon, then press the eye icon.

Otherwise, the responses about SecureString are the way to go.