can i use the type secure text activity without using the get credentials activity?

I am new to uipath and i am struck with automating our college website login. I am suggested to use the "type secure text" activity to secure the password that has to be entered in the password field. but it was not present in activity panel. youtube tutorials are suggesting to use the assets section in the orchestrator followed by get credential.

Is that possible to secure the password with "Type secure text" without using the "get credential" activity and "assets section" in the orchestrator ?

Thanks in Advance

Upvotes: 1

Views: 1743

Answers (2)

BGM
BGM

Reputation: 41

In short, yes, you can use "type secure text" activity without get credential or asset section.

You will need to create a new variable of type SecureString and pass it as an argument to type secure text:

mystring = your string

newsecurestring = new System.Net.NetworkCredential(“”, “myString”)).SecurePassword

Then pass newsecurestring to type secure text activity.

Upvotes: 4

kwoxer
kwoxer

Reputation: 3833

There are 2 ways to use secure passwords or let's say credentials:

  1. Orchestrator Assets

  2. Windows Credentials

As both are very well documented, it should be fine to just link to them here.

Upvotes: 1

Related Questions