Copy-VBRAntivirusConfigurationFile
Short Description
Copies the antivirus configuration file.
Platform: VMware, Hyper-V
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Copy-VBRAntivirusConfigurationFile -TargetType <VBRCopyAntivirusConfigFileTargetType> [-SelectedServer <CHost>] -ConfigurationFilePath <String> [<CommonParameters>] |
Detailed Description
This cmdlet allows you to distribute the antivirus configuration file among mount servers in your backup infrastructure.
Veeam Backup & Replication will copy the specified antivirus configuration file to selected mount servers and place the file to the %Program Files%\Common Files\Veeam\Backup and Replication\Mount Service folder.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
ConfigurationFilePath |
Specifies the path to the antivirus configuration file. |
|
True |
Named |
False |
|
SelectedServer |
For the SelectedServer option. Specifies the mount server. Veeam Backup & Replication will copy the configuration file to that mount server. |
|
False |
Named |
False |
|
TargetType |
Specifies the options to distribute the antivirus configuration file among mount servers. You can specify the following options:
|
|
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Copying Antivirus Configuration File
The example shows how to copy the antivirus configuration file to the selected mount server.
|
$mounthost = Get-VBRServer -Name "storage" Copy-VBRAntivirusConfigurationFile -ConfigurationFilePath "C:\Program Files\Common Files\Veeam\Backup and Replication\Mount Service\AntivirusInfos.xml" -SelectedServer $mounthost -TargetType SelectedServer |
Perform the following steps:
- Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$mounthostvariable. - Run the
Copy-VBRAntivirusConfigurationFilecmdlet. Specify the following settings:- Specify the
ConfigurationFilePathparameter value. - Set the
$mounthostvariable as theSelectedServerparameter value. - Set the
SelectedServeroption for theTargetTypeparameter.
- Specify the
Related Commands
Get-VBRServerReturns hosts connected to the backup infrastructure.