Basic formatting and style guide updates for consistency

This commit is contained in:
Robert Mazzoli
2019-06-12 09:13:28 -07:00
parent ef0dcc4a8b
commit 1b9b8d01bb
8 changed files with 115 additions and 123 deletions

View File

@ -15,11 +15,11 @@ ms.localizationpriority: Normal
## Connect to Exchange Server PowerShell
> [!NOTE]
> It is important that you know the FQDN of the Client Access service of the on-premises Exchange server.
> [!IMPORTANT]
> You'll need the Fully Qualified Domain Name (FQDN) for the Client Access service of the on-premises Exchange server for some of these cmdlets.
```PowerShell
$ExchServer = Read-Host "Please Enter the FQDN of your Exchange Server"
$ExchServer = Read-Host "Please Enter the FQDN of your Exchange Server"
$ExchSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://$ExchServer/PowerShell/ -Authentication Kerberos -Credential (Get-Credential)
Import-PSSession $ExchSession
```