Get-SCSMView
检索 Service Manager 中定义的视图。
语法
Get-SCSMView
[[-DisplayName] <String[]>]
[-SCSession <Connection[]>]
[-ComputerName <String[]>]
[-Credential <PSCredential>]
[<CommonParameters>]
Get-SCSMView
[-Id] <Guid[]>
[-SCSession <Connection[]>]
[-ComputerName <String[]>]
[-Credential <PSCredential>]
[<CommonParameters>]
Get-SCSMView
[-Name] <String[]>
[-SCSession <Connection[]>]
[-ComputerName <String[]>]
[-Credential <PSCredential>]
[<CommonParameters>]
说明
Get-SCSMView cmdlet 检索 Service Manager 中定义的视图。
示例
示例 1:显示前三个定义视图
PS C:\>Get-SCSMView | Select-Object -First 3
Name Description
---- -----------
System.WorkItem.Incident.Queue.Tier2.Unassigned.View Lists tier 2 open unassigned incidents
AllSoftwareUpdatesView Lists all software updates
ChangeManagement.Views.ChangeRequestsCancelled Lists all canceled change requests
此命令检索所有视图。 该命令使用 Select-Object cmdlet 仅返回 Service Manager 中定义的前三个视图。
示例 2:获取 View 对象
PS C:\>Get-SCSMView -Name "System.WorkItem.Incident.Queue.Tier2.Unassigned.View"
Name Description
---- -----------
System.WorkItem.Incident.Queue.Tier2.Unassigned.View Lists tier 2 open unassigned incidents
此命令检索 视图 对象。
示例 3:获取视图的管理包
PS C:\>$View = Get-SCSMView -Name "System.WorkItem.Incident.Queue.Tier2.Unassigned.View"
PS C:\> $View.GetManagementPack()
Sealed Name DisplayName
------ ---- -----------
False ServiceManager.IncidentManagement.Co Service Manager Incident Management
nfiguration Configuration Library
第一个命令检索 View 对象,然后将其存储在$View变量中。
第二个命令检索在其中定义 视图 对象的管理包。
参数
-ComputerName
指定运行 System Center Data Access 服务的计算机的名称。 Credential 参数中指定的用户帐户必须具有对指定计算机的访问权限。
类型: | System.String[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Credential
指定此 cmdlet 用于连接到运行 System Center Data Access 服务的服务器的凭据。 指定的用户帐户必须有权访问该服务器。
类型: | System.Management.Automation.PSCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DisplayName
指定要检索的 视图 对象的显示名称。
类型: | System.String[] |
Position: | 0 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Id
指定要检索的 视图 对象的 ID(GUID)。
类型: | System.Guid[] |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Name
指定要检索的 View 对象的名称。
类型: | System.String[] |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-SCSession
指定一个对象,该对象表示与 Service Manager 管理服务器的会话。
类型: | Microsoft.SystemCenter.Core.Connection.Connection[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
System.String
可以通过管道将名称传递给 DisplayName 参数。
System.Guid
可以通过管道将 GUID 传递给 Id 参数。
输出
Microsoft.EnterpriseManagement.Configuration.ManagementPackView
此 cmdlet 返回视图对象。