Username /password with no orchestrartor

I dont have [orchestrator] , I am trying to secure my credentials in a way any other users use it can enter there credentials using UiPath version 2020. even on citrix

Hi @mma

You can give a try with windows credential manager, you just need to install the package in UiPath and then you can retrieve the credentials

Regards!

I dont have access to UiPath credential in package I have version 2020

@mma

You can use this in invoke code

Dim existingCredential As Credential = CredentialManager.GetCredential(target)     
credential.UserName = existingCredential.UserName
credential.Password = existingCredential.Password

Create in argument as target and string and out argument as credential and networkcredential

Cheers

Hi @mma

If you don’t have Orchestrator and you want to securely store and retrieve credentials for other users in UiPath, you can use the Credential Manager feature available in UiPath Studio. This feature allows you to store and manage credentials securely within your workflow

Thanks!!

i dont have access to this credential manager on packages