powershell 使用PowerShell在SDL Web中创建管理员用户。使用Tridion CoreService模块(https://github.com/pkjaer/tridion-po

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 使用PowerShell在SDL Web中创建管理员用户。使用Tridion CoreService模块(https://github.com/pkjaer/tridion-po相关的知识,希望对你有一定的参考价值。

Import-Module Tridion-CoreService
Set-TridionCoreServiceSettings -HostName "my-cm-server" -Version Web-8.5 -ConnectionType Basic-SSL -Persist

New-TridionUser -UserName "domain\username" -Description "Person Name" -MakeAdministrator

# For Web 8.5 the -MakeAdministrator option does not work, you have to add the user to the System Administrator group instead
# New-TridionUser -UserName "domain\username" -Description "Person Name" -MemberOf "System Administrator"

以上是关于powershell 使用PowerShell在SDL Web中创建管理员用户。使用Tridion CoreService模块(https://github.com/pkjaer/tridion-po的主要内容,如果未能解决你的问题,请参考以下文章

在PowerShell中使用Vim

使用 Powershell 从文件中删除最后一行

url重定向时如何使用Powershell从Web下载文件

Powershell 为目录制作一个函数并在末尾添加一个前缀

在 PowerShell 中计时命令的执行

PowerShell 管道符之Select的使用方法