你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Remove-ServiceFabricClusterPackage
从映像存储中删除 Service Fabric 群集包。
语法
Remove-ServiceFabricClusterPackage
[-Code]
-CodePackagePathInImageStore <String>
[-ClusterManifestPathInImageStore <String>]
[-ImageStoreConnectionString <String>]
[-CertStoreLocation <StoreLocation>]
[-TimeoutSec <Int32>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Remove-ServiceFabricClusterPackage
[-Config]
[-CodePackagePathInImageStore <String>]
-ClusterManifestPathInImageStore <String>
[-ImageStoreConnectionString <String>]
[-CertStoreLocation <StoreLocation>]
[-TimeoutSec <Int32>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Remove-ServiceFabricClusterPackage
-CodePackagePathInImageStore <String>
-ClusterManifestPathInImageStore <String>
[-ImageStoreConnectionString <String>]
[-CertStoreLocation <StoreLocation>]
[-TimeoutSec <Int32>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Remove-ServiceFabricClusterPackage cmdlet 从映像存储中删除 Service Fabric 群集包。 使用 Register-ServiceFabricClusterPackage cmdlet 注册包后运行此 cmdlet。
若要管理 Service Fabric 群集,请使用 以管理员身份运行 选项启动 Windows PowerShell。
在 Service Fabric 群集上执行任何操作之前,请先运行 Connect-ServiceFabricCluster cmdlet 来建立与群集的连接。
示例
示例 1:使用 Code 和 Config 选项删除群集包。
PS C:\> Remove-ServiceFabricClusterPackage -ImageStoreConnectionString "xstore:DefaultEndpointsProtocol=https;AccountName=[StorageAccountName];AccountKey=[StorageAccountKey];Container=[ContainerName]" -ClusterManifestPathInImageStore "ClusterManifest_123.xml" -CodePackagePathInImageStore "ServiceFabric.2.0.59.0.msi"
示例 2:使用“配置”选项删除群集包。
PS C:\> Remove-ServiceFabricClusterPackage -Config -ImageStoreConnectionString "xstore:DefaultEndpointsProtocol=https;AccountName=[StorageAccountName];AccountKey=[StorageAccountKey];Container=[ContainerName]" -ClusterManifestPathInImageStore "ClusterManifest_123.xml" -Confirm
示例 3:使用“代码”选项删除群集包。
PS C:\> Remove-ServiceFabricClusterPackage -Code -ImageStoreConnectionString "xstore:DefaultEndpointsProtocol=https;AccountName=[StorageAccountName];AccountKey=[StorageAccountKey];Container=[ContainerName]" -CodePackagePathInImageStore "ServiceFabric.2.0.59.0.msi" -Confirm
此命令删除具有指定映像存储路径的群集包。 cmdlet 在删除群集包之前会提示你进行确认。
参数
-CertStoreLocation
{{Fill CertStoreLocation Description}}
类型: | StoreLocation |
接受的值: | CurrentUser, LocalMachine |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ClusterManifestPathInImageStore
指定群集清单映像存储中的相对路径。 该 cmdlet 从此参数指定的路径中删除包。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Code
指示该 cmdlet 仅删除 Service Fabric .msi 文件。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-CodePackagePathInImageStore
指定代码包的图像存储中的相对路径。 该 cmdlet 从此参数指定的路径中删除包。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Config
指示此 cmdlet 仅删除 Service Fabric 群集清单。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ImageStoreConnectionString
指定 Service Fabric 映像存储的连接字符串。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-TimeoutSec
指定操作的超时期限(以秒为单位)。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 不执行 cmdlet。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
None
输出
System.Object