Remove-ScannerRepository
從掃描器內容掃描作業中移除 Microsoft Purview 資訊保護 存放庫。
語法
Remove-ScannerRepository
[-Repositories] <System.Collections.Generic.List`1[Microsoft.InformationProtection.Powershell.AIP.Commandlets.Scanner.MoonCake.RepositoryInfo]>
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
刪除存放庫參數所描述的任何存放 庫 ,或由管道 式 Get-ScannerRepository Cmdlet 傳回。
如需內容掃描作業的詳細資訊,請參閱 Microsoft Purview 資訊保護 內部部署掃描器檔。
範例
範例 1 移除針對內容掃描作業設定的所有存放庫
PS C:\WINDOWS\system32> Get-ScannerRepository | Remove-ScannerRepository
此範例顯示完全管道的 Cmdlet,其中會先傳回存放庫,然後再刪除。
範例 2 從內容掃描作業中移除特定存放庫
PS C:\WINDOWS\system32> Get-ScannerRepository -Path 'c:\repoToScan1' | Remove-ScannerRepository
此範例顯示完全管道的 Cmdlet,其中會先傳回存放庫,然後再刪除。
範例 3 從內容掃描作業中移除符合特定通配符模式的任何存放庫
PS C:\WINDOWS\system32> Get-ScannerRepository -Path 'c:\repo*' | Remove-ScannerRepository
此範例顯示完全管道的 Cmdlet,其中會先傳回存放庫,然後再刪除。
範例 4 從內容掃描作業中移除特定存放庫,而不需管線
PS C:\WINDOWS\system32> $repos = Get-ScannerRepository -Path 'c:\repoToScan1'
PS C:\WINDOWS\system32> Remove-ScannerRepository $repos
此範例顯示完全管道的 Cmdlet,其中會先傳回存放庫,然後再刪除。
參數
-Confirm
在執行 Cmdlet 前提示您確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Repositories
描述您想要刪除的存放庫。
類型: | System.Collections.Generic.List`1[Microsoft.InformationProtection.Powershell.AIP.Commandlets.Scanner.MoonCake.RepositoryInfo] |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-WhatIf
顯示執行 Cmdlet 後會發生的情況。 Cmdlet 並不會執行。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
System.Collections.Generic.List`1[[Microsoft.InformationProtection.Powershell.AIP.Commandlets.Scanner.MoonCake.RepositoryInfo, AIP, Version=2.9.0.0, Culture=neutral, PublicKeyToken=null]]
輸出
System.Object