--- title: "Import-VBRMalwareDetectionExtensionList" description: "Imports a list of suspicious files extensions from a certain file to the SuspiciousFiles.xml file." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/import-vbrmalwaredetectionextensionlist.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Managing Security Settings > Malware Detection > Import-VBRMalwareDetectionExtensionList" dateModified: "2026-08-19" --- # Import-VBRMalwareDetectionExtensionList ## Short Description Imports a list of suspicious files extensions from a certain file. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Import-VBRMalwareDetectionExtensionList [-Path] [] ``` ## Detailed Description Imports a list of suspicious files extensions from a certain file to the `SuspiciousFiles.xml` file. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Path

Specifies a path to a file. The cmdlet will import a list of suspicious files extensions from this file.

String

True

0

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Importing List of Suspicious Files Extensions This command imports a list of suspicious files extensions from the `SuspiciousFiles.xml` file located in the `C:\Users\Administrator\Documents\` folder to Veeam Backup & Replication. ``` Import-VBRMalwareDetectionExtensionList -Path "C:\Users\Administrator\Documents\SuspiciousFiles.xml" ``` :::