uipath获取Windows凭证
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uipath获取Windows凭证相关的知识,希望对你有一定的参考价值。
参考技术A 为了信息的安全和保密性,选择把登陆账号和密码设置成Windows凭证的方式来进行读取和保存。1.在Windows中先设置好所需要的凭证信息
打开控制面板,找到凭证管理。
进入凭证管理,选择创建一个普通凭证。
输入凭证名,要存储的用户名和密码,点击OK保存即可
2.uipath中安装获取Windows凭证的活动。
在Allpackages中搜索"UiPath.Credentials.",然后点击install进行安装,最后点击save保存即可。
3.在uipath中完成获取Windows凭证的流程
在active的搜索框中搜索"Get secure credential"活动,并拖拽到流程中。
在此活动的属性中设置,input-target中写建立的凭证的名字。output-password和username中需要CTRL+K建立密码和用户名的变量。
之后直接使用变量即可。但是密码的类型是SecureString,所以不能直接typeinto。需要使用"Type Secure Text"活动,才能正常输入密码。
git凭证缓存在Windows 7上失败
【中文标题】git凭证缓存在Windows 7上失败【英文标题】:git credentials cache fails on windows 7 【发布时间】:2016-06-02 20:13:05 【问题描述】:简而言之
预期:使用git credentials cache后,只会提示输入一次密码。 实际:每次拉取密码时都会提示我。
详情
我使用的是 Windows 7 Pro.、git 1.9.4 和 git-extensions 2.48.03。
我正在尝试缓存 git 凭据键入
git config credential.helper cache
它在 Cygwin 和 git-extensions bash 终端中都试过了(在 git 扩展中是 ctrl+G) 在这两种情况下,每次拉取时都会提示我输入密码。
我从控制台复制:
$ git config --global credential.helper cache
$ git pull
<git local repo>'s password:
Already up-to-date.
$ git pull
<git local repo>'s password:
Already up-to-date.
$ cat ~/.gitconfig
[merge]
tool = kdiff3
[mergetool "kdiff3"]
path = C:/Program Files (x86)/KDiff3/kdiff3.exe
[diff]
guitool = kdiff3
[difftool "kdiff3"]
path = C:/Program Files (x86)/KDiff3/kdiff3.exe
[core]
editor = \"C:/Program Files (x86)/GitExtensions/GitExtensions.exe\" fileeditor
autocrlf = True
[credential]
helper = cache
【问题讨论】:
【参考方案1】:尝试在 windows 7 pro 上使用 wincred。 它对我有用。
git config --global credential.helper wincred
在https://help.github.com/articles/caching-your-github-password-in-git/上查看更多信息
【讨论】:
我在 windows server 2012 上试过这个: * 在 Git 扩展中(设置 -> SSH -> 配置 Git 凭证助手)。 * 在 windows 电源外壳中。 * 在 git 扩展 bash 窗口中。在所有情况下,当我尝试拉取时,git 都会不断询问我的密码。 见文档help.github.com/articles/caching-your-github-password-in-git/… 也许从 qeustion 中不清楚:这正是我所做的,但它没有缓存我的凭据,每次拉取时我都必须手动输入我的凭据以上是关于uipath获取Windows凭证的主要内容,如果未能解决你的问题,请参考以下文章