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
- Reports
- Retention plans
- Roles-based administration
- Sites and servers
- Tasks and services
- Vault stores and archives
Set-EVServiceAccountPassword
Updates the password of the Vault Service account in Enterprise Vault.
Set-EVServiceAccountPassword [[-SiteEntryId] <System.String>] [-Password] <System.Security.SecureString> [[-SaveInDatabase] <System.Management.Automation.SwitchParameter>] [<CommonParameters>]
Table: Set-EVServiceAccountPassword
Parameter | Description |
---|---|
-SiteEntryId | The Entry ID of the Enterprise Vault site. |
-Password | The new password for the Vault Service account. |
-SaveInDatabase | Save the password in the Enterprise Vault database or not. |
Set-EVServiceAccountPassword returns no output.
C:\PS> ConvertTo-SecureString "Admin@123" -AsPlainText -Force | Set-EVServiceAccountPassword -SiteEntryId 13E9...EV1101.example.com -SaveInDatabase
Updates the password of the Vault Service account for all the Enterprise Vault services in all the Enterprise Vault sites in the directory. It also updates the password of the Vault Service account for all the Enterprise Vault services installed on file servers added as targets in all the Enterprise Vault sites. The new password will be stored in the Enterprise Vault Directory database.
C:\PS> ConvertTo-SecureString "Admin@123" -AsPlainText -Force | Set-EVServiceAccountPassword -SaveInDatabase
Updates the password of the Vault Service account for all the Enterprise Vault services in all the Enterprise Vault sites in the directory. It also updates the password of the Vault Service account for all the Enterprise Vault services installed on file servers added as targets in all the Enterprise Vault sites. The new password will be stored in the Enterprise Vault Directory database.
C:\PS> $pwd = ConvertTo-SecureString "Admin@123" -AsPlainText -Force
Set-EVServiceAccountPassword -Password $pwd -SaveInDatabase
Updates the password of the Vault Service account for all the Enterprise Vault services in all the Enterprise Vault sites in the directory. It also updates the password of the Vault Service account for all the Enterprise Vault services installed on file servers added as targets in all the Enterprise Vault sites. The new password will be stored in the Enterprise Vault Directory database.
C:\PS> ConvertTo-SecureString "Admin@123" -AsPlainText -Force | Set-EVServiceAccountPassword
Updates the password of the Vault Service account for all the Enterprise Vault services in all the Enterprise Vault sites in the directory. It also updates the password of the Vault Service account for all the Enterprise Vault services installed on file servers added as targets in all the Enterprise Vault sites. The password will not be stored in the Enterprise Vault Directory database and existing stored password if any will get cleared.
C:\PS> ConvertTo-SecureString "Admin@123" -AsPlainText -Force | Set-EVServiceAccountPassword -SaveInDatabase:$false
Updates the password of the Vault Service account for all the Enterprise Vault services in all the Enterprise Vault sites in the directory. It also updates the password of the Vault Service account for all the Enterprise Vault services installed on file servers added as targets in all the Enterprise Vault sites. The password will not be stored in the Enterprise Vault Directory database and existing stored password if any will get cleared.