Remove-VBRMalwareDetectionExclusion
Short Description
Removes machines from a malware exclusions list.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Remove-VBRMalwareDetectionExclusion -Exclusion <VBRMalwareDetectionExclusion[]> [<CommonParameters>] |
Detailed Description
Removes machines from a malware exclusions list.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Exclusion | Specifies an array of machines. The cmdlet will remove these machines from a malware exclusions list. | Accepts the VBRMalwareDetectionExclusion[] object. To create this object, run the Get-VBRMalwareDetectionExclusion cmdlet. | True | 0 | True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Removing Machines from Malware Exclusions List
This example shows how to remove all machines from malware exclusions list.
$excludedvm = Get-VBRMalwareDetectionExclusion Remove-VBRMalwareDetectionExclusion -Exclusion $excludedvm -Note |
Perform the following steps:
- Run the Get-VBRMalwareDetectionExclusion cmdlet. Save the result to the $excludedvm variable.
- Run the Remove-VBRMalwareDetectionExclusion cmdlet. Set the $excludedvm variable as the Exclusion parameter value. Provide the Note parameter.
Related Commands