Enterprise Vault™ PowerShell Cmdlets
- Introducing the Enterprise Vault PowerShell cmdlets
- Archiving: Exchange
- Archiving: FSA
- Archiving: Skype for Business
- Archiving: SMTP
- Backup
- Classification
- Databases
- IMAP access
- Indexing
- Records management
- Retention plans
- Roles-based administration
- Sites and servers
- Tasks and services
- Vault stores and archives
Set-EVFSAComputerSettings
Set-EVFSAComputerSettings updates the Enterprise Vault server level settings that are configured for NetApp C-Mode server communication. If you do not specify a site ID using the -SiteId parameter, and Set-EVFSAComputerSettings cannot determine the site, you are prompted to enter the site ID.
If you use the -NetAppCModeUseSiteSettings parameter, Enterprise Vault uses the site-level settings that are configured for NetApp C-Mode server communication. Use Get-EVFSASiteSettings to see the values that are configured for these settings at the site-level.
Set-EVFSAComputerSettings is provided by the snap-in Symantec.EnterpriseVault.PowerShell.AdminAPI.dll
.
Set-EVFSAComputerSettings -SiteId <String> -ComputerNameAlternate <String> [-NetAppCModeServerTransportType <String>] [-NetAppCModeServerPort <Integer>] [-NetAppCModeServerCertVerification [<String>]] [-NetAppCModeUseSiteSettings [<Boolean>]] [<CommonParameters>]
Table: Set-EVFSAComputerSettings parameters
Parameter | Description |
---|---|
-SiteId (required) | The ID of the site to which the Enterprise Vault server belongs. |
-ComputerNameAlternate (required) | The alias for the Enterprise Vault server for which you want to retrieve the settings. |
-NetAppCModeServerTransportType | The transport type that is used by the ONTAPI Management API to communicate with the NetApp C-Mode Vserver. The valid transport types are:
Note that the values are not case-sensitive. |
-NetAppCModeServerPort | The port number that the ONTAPI Management API should use to communicate with the NetApp C-Mode Vserver. The port number should be same as the one that is configured on the NetApp C-Mode Vserver. The valid range is from 1 through 65535. |
-NetAppCModeServerCertVerification | Specifies whether the ONTAPI Management API should verify the server certificate that is issued to the NetApp C-Mode Vserver. To verify the server certificate, make sure that the certificate of the certificate issuing authority is in the cacert.pem file in the Enterprise Vault installation folder. The valid values are:
Note that the values are not case-sensitive. |
-NetAppCModeUseSiteSettings | Specifies whether Enterprise Vault should use the site settings that are configured for NetApp C-Mode server communication such as server certificate validation, transport style, and port number. |
Set-EVFSAComputerSettings -ComputerNameAlternate EVM -NetAppCModeServerTransportType HTTP -NetAppCModeServerPort 80 -NetAppCModeServerCertVerification DoNotVerifyCertificate
Updates the settings that are configured for NetApp C-Mode server communication for the Enterprise Vault server 'EVM'. The transport type used is HTTP, the server listens on port 80, and the ONTAPI Management API ignores server certificate verification.
Set-EVFSAComputerSettings -ComputerNameAlternate EVM -NetAppCModeServerTransportType HTTPS -NetAppCModeServerPort 443 -NetAppCModeServerCertVerification VerifyCertificateButIgnoreHostnameMismatch -NetAppCModeUseSiteSettings $True
WARNING: Enterprise Vault will use the values configured in the site settings for NetApp C-Mode server configuration because NetAppCModeUseSiteSettings is set to true.
Updates the settings that are configured for NetApp C-Mode server communication for the Enterprise Vault server 'EVM'. Enterprise Vault will use the site-level settings that are configured for NetApp C-Mode server communication because NetAppCModeUseSiteSettings is set to $true.
Set-EVFSAComputerSettings returns an object of type Symantec.EnterpriseVault.Admin.FsaComputerSettings, which contains the properties listed in the following table.
Table: Set-EVFSAComputerSettings properties
Name | Type | Description |
---|---|---|
SiteId | String | The ID of the site to which the Enterprise Vault server belongs. |
ComputerNameAlternate | String | The alias for the Enterprise Vault server to which these settings belong. |
NetAppCModeServerTransportType | String | The transport type that is used by the ONTAPI Management API to communicate with the NetApp C-Mode Vserver. |
NetAppCModeServerPort | Integer | The port number that the ONTAPI Management API uses to communicate with the NetApp C-Mode Vserver. |
NetAppCModeServerCertVerification | String | Specifies whether the ONTAPI Management API should verify the server certificate that is issued to the NetApp C-Mode Vserver. |
NetAppCModeUseSiteSettings | Boolean | Specifies whether Enterprise Vault should use the site settings that are configured for NetApp C-Mode server communication such as server certificate validation, transport style, and port number. |
See Get-EVComputers.
See Get-EVSite.