Protect-SCSMManagementPack
密封管理包,防止对其进行修改。
语法
Protect-SCSMManagementPack
[-ManagementPack] <ManagementPack[]>
-OutputDirectory <String>
-KeyFilePath <String>
-CompanyName <String>
[-Copyright <String>]
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Protect-SCSMManagementPack
[-ManagementPackFile] <String[]>
-OutputDirectory <String>
-KeyFilePath <String>
-CompanyName <String>
[-Copyright <String>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Protect-SCSMManagementPack cmdlet 密封管理包以防止修改。 密封的管理包存储在由 OutputDirectory 参数指定的文件夹中。 密封的管理包可以导入 smshort。
示例
示例 1:密封管理包
PS C:\>$Mp = Get-SCSMManagementPack -ManagementPackFile "Resources\ContosoForm.xml"
PS C:\> $Arguments = @{
>> ManagementPack = $Mp
>> OutputDirectory = $PWD
>> KeyFilePath = "Resources\keyfile.snk"
>> CompanyName = "Contoso"
>> Copyright = "2011"}
PS C:\> Protect-SCSMManagementPack @Arguments
这些命令将管理包密封 ContosoForm.xml。
参数
-CompanyName
指定密封管理包签名的公司名称。
类型: | System.String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Copyright
指定密封管理包签名的版权字符串。
类型: | System.String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-KeyFilePath
指定包含密封管理包签名的密钥的文件的路径。
类型: | System.String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-ManagementPack
指定要密封的管理包。 可以输入 Get-SCSMManagementPack cmdlet 返回的 ManagementPack 对象。
类型: | Microsoft.EnterpriseManagement.Configuration.ManagementPack[] |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ManagementPackFile
指定管理包文件的名称。
类型: | System.String[] |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-OutputDirectory
指定密封管理包的文件夹。
类型: | System.String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-PassThru
指定表示密封管理包的输出对象。 此输出对象可以传递给其他 cmdlet。
类型: | System.Management.Automation.SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | System.Management.Automation.SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
System.String
可以通过管道将管理包文件名传递给 Protect-SCSMManagementPack
cmdlet 的 ManagementPackFIle 参数。
Microsoft.EnterpriseManagement.Configuration.ManagementPackManagement pack object.
可以通过管道将管理包对象传递给 Protect-SCSMManagementPack cmdlet 的 ManagementPack 参数,例如,Get-SCSMManagementPack cmdlet 返回的对象。
输出
Management pack object.
此 cmdlet 在与 PassThru 参数一起使用时生成管理包对象。
Sealed management pack.
此 cmdlet 生成存储在 OutputDirectory 参数指定的文件夹中的密封管理包。