| Category | Feature | Exchange 2010 | Exchange 2013 |
| Interface | Exchange Management Console (EMC) | Yes | No. Replaced By Exchange Administration Center (EAC) |
| Exchange Control Panel (ECP) | Yes | No. Replaced By Exchange Administration Center (EAC) | |
| Public Folder administration console | Yes. Separate Console. | No. Replaced By Exchange Administration Center (EAC) | |
| Role Based Access Control (RBAC) User Editor | Yes. Separate Console. | No. Replaced By Exchange Administration Center (EAC) | |
| Unified Messaging – Call Statistics and User Call Logs tools | Yes. Separate Console. | No. Replaced By Exchange Administration Center (EAC) | |
| Exchange Best Practice Analyser (EXPBA) | Yes | Retired | |
| Notification viewer | No | Available in EAC. | |
| Ex. Customize Email Notification to receive move mailbox completion. | |||
| No of User Objects Shown in Console | Max 500 | Max 20,000 | |
| Server Roles | Mailbox Server Role | Available | Available. |
| Includes Transport service, Mailbox databases, and Unified Messaging. | |||
| Client Access Server Role | Available | Available. | |
| Provides authentication, limited redirection, and proxy services | |||
| Hub Transport Role | Available | Removed. Transport service exists on the Mailbox server. | |
| Unified Messaging Role | Available | Removed. | |
| Unified Messaging is handled by both Mailbox Server and CAS Server | |||
| Edge Server Role | Available | Removed. Still Exchange 2007/2010 Edge Servers are supported. | |
| Clients | Outlook through Direct RPC | Available | No. |
| Every Outlook should connect through RPC Over HTTP (i.e Outlook Anywhere) | |||
| Outlook 2003 Client | Supported | Not supported. | |
| Only Outlook 2007 and higher versions are supported. | |||
| Self Signed Certificate Warning Message in Client’s End | Yes | No. | |
| Because Exchange 2013 CAS Server automatically trusts Exchange 2013 Mailbox server’s Certificate. | |||
| Outlook Web App Spell Check | Yes | No. Relies on Browser Spell Check. | |
| Services | RPC client access service | Yes in CAS Server | Removed |
| Front End Transport service | No | New service in CAS Server | |
| High Availability | DAG | Yes | Yes |
| Security | Data Loss Protection | Not there. | Yes. New feature. Can be configured through Transport rules. |
| Ex. Mistakenly Sending sensitive data to unauthorised users. | |||
| Lync 2010 / 2013 | Supported ? | Yes | Yes |
| Sharepoint 2010 / 2013 | Supported ? | Yes | Yes |
10 jul 2013
Exchange 2010 vs 2013
20 jun 2013
Espacio libre en disco mount points
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
$TotalGB = @{Name="Capacity(GB)";expression={[math]::round(($_.Capacity/ 1073741824),2)}}
$FreeGB = @{Name="FreeSpace(GB)";expression={[math]::round(($_.FreeSpace / 1073741824),2)}}
$FreePerc = @{Name="Free(%)";expression={[math]::round(((($_.FreeSpace / 1073741824)/($_.Capacity / 1073741824)) * 100),0)}}
function get-mountpoints {
$volumes = Get-WmiObject -computer $server win32_volume | Where-object {$_.DriveLetter -eq $null}
$volumes | Select SystemName, Label, $TotalGB, $FreeGB, $FreePerc | Format-Table -AutoSize
}
$servers = (Get-Content .\servers.txt)
foreach ($server in $servers){
get-mountpoints
}
$TotalGB = @{Name="Capacity(GB)";expression={[math]::round(($_.Capacity/ 1073741824),2)}}
$FreeGB = @{Name="FreeSpace(GB)";expression={[math]::round(($_.FreeSpace / 1073741824),2)}}
$FreePerc = @{Name="Free(%)";expression={[math]::round(((($_.FreeSpace / 1073741824)/($_.Capacity / 1073741824)) * 100),0)}}
function get-mountpoints {
$volumes = Get-WmiObject -computer $server win32_volume | Where-object {$_.DriveLetter -eq $null}
$volumes | Select SystemName, Label, $TotalGB, $FreeGB, $FreePerc | Format-Table -AutoSize
}
$servers = (Get-Content .\servers.txt)
foreach ($server in $servers){
get-mountpoints
}
6 may 2013
Exchange Management Shell (EMS) missing after applying Exchange 2010 SPx
Workaround:
|
1.
|
Verify that the ConnectFunctions.ps1 , RemoteExchange.ps1 and CommonConnectFunctions.ps1 files are present in the %ExchangeInstallPath%\bin directory.
NOTE : If these files are missing, you can copy the files from the Exchange Server 2010 Service Pack 1 installation media to the %ExchangeInstallPath%\bin directory. These files are present in the \setup\serverroles\common folder. |
|
2.
|
Right click an open area on the Desktop, click New , click Shortcut .
|
|
3.
|
In the Type the location of the item , type in the text below:
%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -noexit -command ". '%ExchangeInstallPath%\bin\RemoteExchange.ps1'; Connect-ExchangeServer -auto" |
|
4.
|
Name the shortcut Exchange Management Shell and click Finish .
|
|
5.
|
Right click the Exchange Management Shell shortcut, click Properties and remove the text from Start In field on the Shortcut tab.
|
|
6.
|
On the Shortcut tab, click Change Icon , click Browse and type in the text below:
%SystemRoot%\Installer\{4934D1EA-BE46-48B1-8847-F1AF20E892C1}\PowerShell.exe |
|
7.
|
Select the Exchange icon and click OK .
|
|
8.
|
Click Apply and click OK .
|
|
9.
|
Copy the new Exchange Management Shell shortcut to this location:
%systemdrive%\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Exchange Server 2010 |
Suscribirse a:
Entradas (Atom)