Set-SCXResourcePool
更改目标托管 UNIX 和 Linux 计算机的管理资源池。
语法
Set-SCXResourcePool
-Agent <IPersistedUnixComputer[]>
-ResourcePool <ManagementServicePool>
[-SCSession <Connection[]>]
[-ComputerName <String[]>]
[-Credential <PSCredential>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Set-SCXResourcePool cmdlet 更改了目标托管 UNIX 和 Linux 计算机的管理资源池。
示例
示例 1:将代理移动到资源池
PS C:\>$Pool = Get-SCOMResourcePool -DisplayName "Pool 1"
PS C:\> Get-SCXAgent -Name "scxserver1.contoso.com" | Set-SCXResourcePool -ResourcePool $Pool
第一个命令使用 Get-SCOMResourcePool cmdlet 获取名为 Pool 1 的资源池,然后将其存储在 $Pool 01 中。
第二个命令将代理移动到 $Pool 01 中的资源池。
示例 2:将池中的所有代理移动到其他池
PS C:\>$Pool01 = Get-SCOMResourcePool -DisplayName "Pool 1"
PS C:\> $Pool02 = Get-SCOMResourcePool -DisplayName "Pool 2"
PS C:\> $Agents = Get-SCXAgent -ResourcePool $Pool01
PS C:\> Set-SCXResourcePool -Agent $Agents -ResourcePool $Pool02
第一个命令使用 Get-SCOMResourcePool获取名为 Pool 1 的资源池,然后将其存储在 $Pool 01 中。
第二个命令获取名为 Pool 2 的资源池,然后将其存储在 $Pool 02 中。
第三个命令使用 Get-SCXAgent cmdlet 从 $Pool 01 获取所有代理。
最后一个命令将$Agents中的所有 UNIX 和 Linux 代理移动到 $Pool 02。
参数
-Agent
指定一个或多个托管的 UNIX 或 Linux 计算机对象。
有关如何获取托管 UNIX 或 Linux 计算机对象的信息,请键入 Get-Help Get-SCXAgent
。
类型: | IPersistedUnixComputer[] |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ComputerName
指定计算机名称数组。 该 cmdlet 与这些计算机的管理组建立临时连接。 可以使用 NetBIOS 名称、IP 地址或完全限定的域名(FQDN)。 若要指定本地计算机,请键入计算机名称、localhost 或点(.)。
System Center Data Access 服务必须在计算机上处于活动状态。 如果未指定计算机,该 cmdlet 将使用计算机进行当前管理组连接。
类型: | String[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Credential
指定运行管理组连接的用户帐户。
为此参数指定 PSCredential 对象,例如 Get-Credential cmdlet 返回的对象。
有关凭据对象的详细信息,请键入 Get-Help Get-Credential
。
如果在 ComputerName 参数中指定计算机,请使用有权访问该计算机的帐户。 默认值为当前用户。
类型: | PSCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ResourcePool
指定一个服务器资源池,其中一个被分配给当前管理服务器,另一个充当备份管理服务器。 此参数需要资源池对象,并且仅返回该资源池中的托管计算机。
有关如何获取资源池对象的信息,请键入 Get-Help Get-SCOMResourcePool
。
类型: | ManagementServicePool |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-SCSession
指定 连接 对象的数组。 若要获取 连接 对象,请使用 Get-SCOMManagementGroupConnection cmdlet。
如果未指定此参数,cmdlet 将使用与管理组的活动持久连接。
使用 SCSession 参数指定不同的持久连接。
可以使用 ComputerName 和 Credential 参数创建与管理组的临时连接。
有关详细信息,请键入 Get-Help about_OpsMgr_Connections
。
类型: | Connection[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |