9.7 KiB
Exhange 2010
Sonntag, 5. August 2012
15:11
Bereiche zu einer Rollegruppe zuweisen :
{width="10.072916666666666in" height="2.15625in"}
{width="10.21875in" height="2.3229166666666665in"}
Remotescripts :
Rollen Richtlinien usw:
Es gibt
-
Rollen
-
Bereiche
-
Rollengruppen
-
Rollenzuweisung
-
Zuweisungsrichtlinien
Rollen sagen aus was man machen darf für eine bestimmte Aufgabe
Bereiche sagen aus wo was in der AD gemacht werden darf
Rollengruppen Gruppierungen von Aufgaben, wie zb Postfachsuche, die benötigt zb 11 Rollen daraus kann man eine Gruppe bilden.
Rollenzuweisung ist der Klebstoff zwischen den Rollen / -gruppen und den Benutzer.
Zuweisungsrichtlinien um standartmäßig rechte für Benutzer zuweisen. Jedem Benutzer kann nur eine Richtlinie zugewiesen werden
Script für Rollenzuweisung :
{width="8.270833333333334in" height="1.4375in"}
BypassSecutityGroupMemberCheck Was ist das genau ?
Automatische Antwort für Benutzer einrichten :
{width="7.9375in" height="1.9375in"}
{width="6.677083333333333in" height="2.5208333333333335in"}
ExchangeCmdlets :
http://www.dornmx.de/lists/exchangecmdlets/allitems.aspx
To get users mailbox list in an Exchange Database.
PS
To view the available white space of the exchange databases.
PS
To view SoftDeleted mailboxes
PS
Selecting the softDeleted mailbox using the MailboxGUID and remove the selected SoftDeleted mailbox
PS
PS
Selecting all the soft deleted mailboxes
PS
PS
Microsoft Exchange 2010 - Search does not return all the results
Exchange Search Indexer has temporarily disabled indexing of the Mailbox Database Database1 (GUID = 32299692-d5af-4415-8ca0-36f9d485ddb6) due to an error (Microsoft.Mapi.MapiExceptionNotFound: MapiExceptionNotFound: Unable to update CI Retry table (hr=0x80004005, ec=-1601)
After this error, it was almost that the server reached a checkpoint and would not return any older items in the search result. We restarted the Microsoft Exchange Search Indexer and the Microsoft Search (exchange) service but it did not resolve the problem. To test whether there are any corruption problems, we ran the script for testing exchange search
C:\Windows\system32>test-exchangesearch -identity Username -verbose
Everything seemed to be normal, except for the search for older items.
Exchange provides a range of scripts that are present in the \Scripts directory. By Default this is C:\Program Files\Microsoft\Exchange Server\V14\Scripts for Exchange 2010. Exchange 2010 SP1 introduced the Content Index Troubleshooter Script -- Troubleshoot-CI.ps1. This script can monitor and perform troubleshooting on a server's CI catalogs and can detect and resolve symptoms such as
-
Deadlock: Exchange Search deadlocks waiting on threads from MSSearch
-
Corruption: One or more search indices are corrupted
-
Stall: Similar to deadlock in that the indices are not getting updated
-
Backlog: The Search catalog is backlogged resulting in missing index searches
To fix this problem we had to rebuild the search indexer catalog. The easy way is to use the script under the scripts folder
ResetSearchIndex.ps1 -force -all oder Databasename
This will delete all the catalog folders and rebuild the catalog. The search will not be accessible until the catalog crawling is complete. We can monitor the search index to see how many mailboxes are left to crawl (I will write a blog about that soon). I do recommend running the rebuild after business hours if the database is anything bigger than 500GB as it does take a long time (>5 hours) to rebuild the catalog and may cause outlook to be lag if you are running in online mode.
Log Dateien RPC :
C:\Program Files\Microsoft\Exchange Server\V14\Logging\RPC Client Access
Auflisten von Clientverbindungen :
Get-MailboxServer --Identity ServerName | Get-LogonStatistics | Format-List UserName,ApplicationId, ClientVersion
Verwalten von Edge-Abonnements
https://technet.microsoft.com/de-de/library/bb124096%28EXCHG.141%29.aspx
Headeranalyse und mehr mit Grafik usw :
http://mxtoolbox.com/services_servermonitoring2.aspx
Signatur, Check, Security, Exchange 2010, Einstellungen
{width="4.1875in" height="2.6770833333333335in"}
{width="3.0833333333333335in" height="0.75in"}
Emailadressen, SMTPAdressen, SMTP Adressen, Alle Emialsadressen
Get-Mailbox -ResultSize Unlimited |Select-Object DisplayName,ServerName,PrimarySmtpAddress, @{Name="EmailAddresses";Expression={$_.EmailAddresses |Where-Object {$_.PrefixString -ceq "smtp"} | ForEach-Object {$_.SmtpAddress}}} |fl
Exchange2010 Delete Mailbox, remove Mailbox, Disable Mailbox Mailbox löschen
These two tasks do the following:
-
Disable will remove the Exchange attributes for the user account but leave the user account in Active Directory. The mailbox is then also left in the Exchange mailbox database until the retention period has lapsed, then it is removed permanently.
-
Remove will remove both the Exchange mailbox and the user account from Active Directory