Outlook Autodiscover Office365

Registerinställning för Autodiscover Office 365

HKEY_CURRENT_USER\Software\Microsoft\Office\X.0\Outlook\Autodiscover

ExludeHttpsAutodiscover (1)
ExcludeHttpsRootDomain (1)
ExcludeScpLookup (1)
Autodiscover_Outlook

Detta kan ställas in med GPO om man använder Outlook autodiscover template

Outlook 2010

http://download.microsoft.com/download/C/5/2/C5252326-202E-4674-A5A2-BC9F5C8F53BE/outlk14-autodiscover.adm

Outlook 2007

http://download.microsoft.com/download/C/5/2/C5252326-202E-4674-A5A2-BC9F5C8F53BE/outlk12-autodiscover.adm

Bra länkar

http://support.microsoft.com/kb/2212902
http://technet.microsoft.com/en-us/library/bb332063.aspx

Antal loggar per minut

Get-MailboxDatabase -Server $env:ComputerName | ?{ %{$_.DatabaseCopies | ?{$_.ReplayLagTime -ne [TimeSpan]::Zero -And $_
.HostServerName -eq $env:ComputerName} } } | %{ $count = 0; $MinT = [DateTime]::MaxValue; $MaxT = [DateTime]::MinValue;
Get-ChildItem -Path $_.LogFolderPath -Filter "*????.log" | %{ $count = $count + 1; if($_.LastWriteTime -gt $MaxT){ $MaxT
= $_.LastWriteTime}; if($_.LastWriteTime -lt $MinT){ $MinT= $_.LastWriteTime} }; ($count / ($MaxT.Subtract($MinT)).Tota
lMinutes) } | Measure-Object -Min -Max -Ave

Ta bort inaktiva användare från grupp..

Import-Module ActiveDirectory
$GroupName="TestDisableUserGroup"
$GroupMembers=Get-ADGroupMember
$GroupNameforeach ($Member in $GroupMembers) {
$User = Get-ADUser $Member -Properties Enabled
if ($User.Enabled -eq $False) {
Remove-ADGroupMember $GroupName $User -Confirm:$false
}}

Stänga av ActiveSync

To perform these steps you must have Local Administrator permissions on the Client Access server.
Click Start, click Administrative Tools, and then click Internet Information Services (IIS) Manager.

1. Double-click to expand the server name, and then double-click to expand the Application Pools folder.

2. Right-click MSExchangeSyncAppPool, and then click Stop to disable ActiveSync.

Stänga av avancerade inställningar nätverkskort

Netsh int tcp set global RSS=Disabled
Netsh int tcp set global chimney=Disabled
Netsh int tcp set global autotuninglevel=Disabled
Netsh int tcp set global congestionprovider=None
Netsh int tcp set global ecncapability=Disabled
Netsh int ip set global taskoffload=disabled
Netsh int tcp set global timestamps=Disabled