Converse agora com nosso suporte
Chat com o suporte

Enterprise Reporter 3.6 - Configuration Manager User Guide

Product Overview Configuring the Configuration Manager
Starting the Configuration Manager Finding answers and getting help Overview of Enterprise Reporter Communications and Credentials Required Using the Credential Manager Setting Up Your First Collection Computers (Nodes) Modifying Your Deployment Configuring Global Settings Customizing the Configuration Manager View
Understanding Discoveries Creating Discoveries
Step 1. Create the Discovery (Name) Step 2. Choose what to include in your discovery (Scopes) Step 2a. Choose scopes for your on-premises discoveries
Choosing your Active Directory Scopes Choosing your Computer Scopes Choosing Your Exchange Scopes Choosing Your File Storage Analysis Scopes Choosing Your Microsoft SQL Scopes Choosing Your NTFS Scopes Choosing Your Registry Scopes
Step 2b: Choose scopes for your cloud discoveries Step 3. Schedule your Discovery Step 4: Review the summary
Managing Discoveries Troubleshooting Issues with Enterprise Reporter Appendix: PowerShell cmdlets Appendix: Encryption Key Manager Appendix: Log Viewer

Using cmdlets to manage credentials

The examples in this section deal with the basic of using Enterprise Reporter system credentials. This section contains the following examples:

Adding a credential (Add-ERSystemCredential)
Getting a credential (Get-ERSystemCredential)
Resetting a credential (Set-ERSystemCredential)

Adding a credential

Credentials are used in different places in Enterprise Reporter. For example, nodes and report schedules both use credentials. This cmdlet adds specified system credential to the central store for accounts and passwords used throughout the system. This makes it easy to keep passwords up to date, and allows you to enter the credential details once, and access them repeatedly.

Add-ERSystemCredential [-Credential] <PSCredential> [-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]

In this example, a new account and associated credential is added.

$secpasswd = ConvertTo-SecureString 'pA$$w0d' -AsPlainText –Force
$credentials = New-Object System.Management.Automation.PSCredential ('AMER\Administrator', $secpasswd)
Set-ERSystemCredential $credentials

Getting a credential

This cmdlet retrieves system credentials from the central store for accounts and passwords by unique identifier, an account name and description.

Syntax

Get-ERSystemCredential [-Description <String>] [-AccountName] <String> [-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]

Get-ERSystemCredential -CredentialId <Guid> [-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]

In this example, the credentials for an account are returned. Note that the password is encrypted.

Get-ERSystemCredential -AccountName 'AMER\Administrator'

Resetting a credential

This cmdlet updates an existing system credential in the central store for accounts and passwords used throughout the system. This makes it easy to keep passwords up to date, and allows you to enter the credential details once, and access them repeatedly. This cmdlet will update NT Service accounts and restart NT Services if it has been used in a Node deployment or ER Server service.

Set-ERSystemCredential [-Credential] <PSCredential> [[-Timeout] <Int32>] [-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]

The PowerShell cmdlet function Set-ERSystemCredential updates the system account password in the Enterprise Reporter credentials database and performs all required NTService changes (including node and server service restarts).

Connect-ERConfigurationServer hal-test-srv.AMER.hal.ca.qsft

$secpasswd = ConvertTo-SecureString 'pA$$w0d' -AsPlainText -Force

$credentials = New-Object System.Management.Automation.PSCredential ('AMER\Administrator', $secpasswd)
Set-ERSystemCredential $credentials

When updating ER Server credentials, the server will be restarted. This function completes before ER Server gets restarted. Before calling any additional configuration cmdlet, reconnect to the server using the following command:

Connect-ERConfigurationServer hal-test-srv.AMER.hal.ca.qsft

Documentos relacionados

The document was helpful.

Selecione a classificação

I easily found the information I needed.

Selecione a classificação