TypeSecureText

image

How to input password from config file without using asset? Getting this error when converting into string

Why are you trying not to use an asset? If you store the password in the Config file, anybody who can run your process can read the password.

Otherwise, use this component to convert to a securestring.

1 Like

@Sana_Afreen - please try below -

(new System.Net.NetworkCredential(“”,in_Config(“ACME_Password”).ToString)).SecurePassword

1 Like