powershell 列出Tridion站点核心服务系统用户

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 列出Tridion站点核心服务系统用户相关的知识,希望对你有一定的参考价值。

# see https://github.com/pkjaer/tridion-powershell-modules
# see https://gist.github.com/jhorsman/b218ba7e2e5587d21c395d5968583b61 to learn more about configuring the Tridion-CoreService module

# Install the Tridion-CoreService module from the Tridion-Powershell-Modules project
Install-Module -Name Tridion-CoreService
Import-Module -Name Tridion-CoreService

# Set the server configuration
Set-TridionCoreServiceSettings -Credential (Get-Credential) -CredentialType Windows
Set-TridionCoreServiceSettings -HostName my-cms-server -Version Web-8.5 -ConnectionType Basic-SSL

# Test configuration by listing the current user
Get-TridionUser -Current

#List all system/built-in/predefined users
$client = Get-TridionCoreServiceClient
$filter = New-Object Tridion.ContentManager.CoreService.Client.UsersFilterData;
$filter.IsPredefined = $true;
$client.GetSystemWideList($filter) | Select-Object Id, Title, Description, IsPredefined, IsEnabled

以上是关于powershell 列出Tridion站点核心服务系统用户的主要内容,如果未能解决你的问题,请参考以下文章

powershell 从http://code.google.com/p/tridion-powershell-modules/试用SDL Tridion 2013 PowerShell模块。另见Tr

powershell 从http://code.google.com/p/tridion-powershell-modules/试用SDL Tridion 2013 PowerShell模块。另见Tr

powershell 发布一个SDL Tridion页面,即PowerShell。先决条件:http://code.google.com/p/tridion-powershell-modules/和任

powershell 发布一个SDL Tridion页面,即PowerShell。先决条件:http://code.google.com/p/tridion-powershell-modules/和任

powershell 测试tridion-powershell-modules

powershell 测试tridion-powershell-modules