我正在编写需要将其在线连接到CRM的powershall脚本。
我可以使用Connect-CrmOnline连接到CRM,在此它使用登录框要求提供凭据。我想自动化。请指导该怎么做?
有没有一种使用连接字符串进行连接的方法?请分享Powershell新手的示例代码/脚本。
我正在使用Microsfot.Xrm.Data.PowerShell
谢谢。
答案 0 :(得分:2)
您可以构建凭据对象,并在脚本中使用它。例如:$secpasswd = ConvertTo-SecureString "PlainTextPassword" -AsPlainText -Force
$mycreds = New-Object System.Management.Automation.PSCredential ("username", $secpasswd)
然后您可以在脚本中使用-credential $mycreds
参数
参考:https://blogs.msdn.microsoft.com/koteshb/2010/02/12/powershell-how-to-create-a-pscredential-object/和https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/xrm-tooling/use-powershell-cmdlets-xrm-tooling-connect