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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Path

Specifies a path to a file. The cmdlet will export a list of suspicious files extensions to 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 ### Exporting List of Suspicious Files Extensions This command exports a list of suspicious files extensions to the `SuspiciousFiles.xml` file located in the `C:\Users\Administrator\Documents\` folder. ``` Export-VBRMalwareDetectionExtensionList -Path "C:\Users\Administrator\Documents\SuspiciousFiles.xml" ``` :::