Short Description
Enables and disables the extended logging feature in one or several Veeam Backup for Microsoft Office 365 server components.
Syntax
Set-VBOServerComponents -Components <VBOServerComponent[]> [<CommonParameters>] |
Detailed Description
This cmdlet enables and disables the extended logging feature in one or several Veeam Backup for Microsoft Office 365 server components.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Components | Specifies the array of Veeam Backup for Microsoft Office 365 server components, for which the extended logging feature will be enabled or disabled. This cmdlet will enable extended logging where it is disabled and disable where it is enabled. | True | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example 1
This example shows how to enable extended logging for a proxy with an ID 06b7354e-518f-4a10-b4c1-98f49d743012.
You will need to perform the following steps:
- Run Get-VBOServerComponents to get the proxy. Save the result to the $proxy variable.
- Give $proxy.ExtendedLoggingEnabled=$True value.
- Run Set-VBOServerComponents with the $proxy variable to enable the extended logging feature for it.
PS C:\PS> $proxy = Get-VBOServerComponents -Name proxy -ID 06b7354e-518f-4a10-b4c1-98f49d743012 PS C:\PS> $proxy.ExtendedLoggingEnabled=$True PS C:\PS> Set-VBOServerComponents -Components $proxy |