Quantcast
Channel: Exchange Server 2013 - Outlook, OWA, POP, and IMAP Clients forum
Viewing all 10580 articles
Browse latest View live

Outlook 2013 will not open room calendars

$
0
0

Outlook 2013 and OWA 2013 will not open room calendars but Outlook 2010 opens same calendars just fine.

Get error "You don't have permission to create an entry... etc"

We currently have both exchange 2010 and 2013 running but the issue only happens with Outlook 2013!

I have uninstalled our build of office 2013 and installed from office 2013 CD (tried both 32 & 64) and both will not work!

Nothing in the event logs!

If I install office 2010 all works just fine and can access room calendars!

Testing is done with same user account and same calendars...

Is this a bug in Office/Outlook 2013?

Help!!!

Steve


Disable remote Outlook 2011 access?

$
0
0
We do not allow for Corporate emails to be downloaded to PCs/Macs outside of the building. This is the default for Windows/Outlook (i.e. you have to explicitly enable RPC/HTTP, Outlook Anywhere, etc to enable external Outlook clients). It appears that Outlook 2011/Mac circumvents these controls (presumably since it works through OWA) and allows external users to connect to and download local copies of Corporate emails.
I want to prohibit this behavior while still allowing internal Mac Outlook 2011 clients to connect.
It doesn't look like Outlook 2011 uses ActiveSync technologies like phones do so I don't think I can set up restrictions there.
Suggestions?

connecting to exchange remotely

$
0
0
I have a sales person who keeps getting the message from outlook 2010 "trying to connect to exchange server" while he is on the road.  It eventually connects but then it is very slow.  However his webmail connects just fine.  Is there some settings somewhere that can help speed up his email on the road?

Steve Featherston

Outlook updateing inbox slow

$
0
0
Hi our company is on Exchange for 5 years, All users use Outlook 2007 we all started experiencing a major lag in Outlook updating email while connected to exchange. Exchange is pushing the email thru to our smartphones without a problem, OWA is working just fine as well. Outlook can take hours to update. any ideas. thanks so much

can't enable kerberos in outlook and exchange 2013 - bug in ConvertOABVDir.ps1

$
0
0

Hi,

It seems they forgot to update ConvertOABVDir.ps1 for Exchange 2013...

All paths and versions refer to Exchange 2010 and not to 2013.

But even changing these paths and versions to reflect the correct ones, IIS throws me error 500 and:

"Could not load file or assembly 'Microsoft.Exchange.OwaUrlModule, Version=15.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded."

Anyone has ever tried do enable Kerberos for outlook in exchange 2013?

Marcelo

# Globals
$setupRegistryPath = Get-ItemProperty -path 'HKLM:SOFTWARE\Microsoft\ExchangeServer\v14\Setup'
$exchangeInstallPath = $setupRegistryPath.MsiInstallPath
$ComputerName = [string]$Env:computername

$OabPath = "Default Web Site/OAB"

# Initialize IIS metabase management object
$InitWebAdmin = [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Web.Administration") 
$Iis = new-object Microsoft.Web.Administration.ServerManager 

# Creates OAB app pool based on DefaultAppPool, running as LocalSystem
function CreateOabAppPool
{
    # Get existing OAB authentication values to set later
    $config = $Iis.GetApplicationHostConfiguration();
    $basicAuthenticationSectionEnabled = $config.GetSection("system.webServer/security/authentication/basicAuthentication", "Default Web Site/OAB")["enabled"];
    $windowsAuthenticationSectionEnabled = $config.GetSection("system.webServer/security/authentication/windowsAuthentication", "Default Web Site/OAB")["enabled"];

    $apppool = $Iis.ApplicationPools["MSExchangeOabAppPool"]
    if ($apppool)
    {
        # Delete existing app pool
        $apppool.Delete()       
        # Flush
        $Iis.CommitChanges()
    }

    # Create new app pool, then bind to it
    $a=$Iis.applicationPools.Add("MSExchangeOabAppPool")
    $apppool = $Iis.ApplicationPools["MSExchangeOabAppPool"]
    # Now make sure it runs as LocalSystem, and prevent unnecessary app pool restarts
    $apppool.ProcessModel.IdentityType = [Microsoft.Web.Administration.ProcessModelIdentityType]"LocalSystem"
    $apppool.ProcessModel.idleTimeout = "0.00:00:00"
    $apppool.Recycling.PeriodicRestart.time = "0.00:00:00"

    # Create /OAB application
    $OabApplication = $Iis.Sites["Default Web Site"].Applications["/OAB"]
    if ($OabApplication)
    {
        # Delete it
        $OabApplication.Delete()
        # Flush
        $Iis.CommitChanges()
    }

    $oabvdir=$Iis.Sites["Default Web Site"].Applications["/"].VirtualDirectories["/OAB"]
    if ($oabvdir)
    {
        # Clean up vdir
        $oabvdir.Delete()
        $Iis.CommitChanges()
    }
    $addSite=$Iis.Sites["Default Web Site"].Applications.Add("/OAB", $ExchangeInstallPath + "ClientAccess\OAB")
    $OabApplication = $Iis.Sites["Default Web Site"].Applications["/OAB"]
    if ($OabApplication -eq $Null)
    {
        # Error creating OAB vdir.  Need to fix existing one and rest
        Write-Warning "Error updating Default Web Site/OAB to support the OABAuth component."
        Write-Output "Please use IIS Manager to remove the Default Web Site/OAB virtual directory, then the following commands to recreate the OAB virtual directory:"
        Write-Output "Get-OabVirtualDirectory -server $ComputerName | Remove-OabVirtualDirectory"
        Write-Output "New-OabVirtualDirectory -server $ComputerName"
        break
    }

    #Set app pool
    $OabApplication.ApplicationPoolName = "MSExchangeOabAppPool"

    #Restore previous auth settings and enabled anonymous
    # Reload applicationHost.config
    $config = $Iis.GetApplicationHostConfiguration();
    
    # Check null (inherited from root of web server), otherwise set to previous value
    if ($basicAuthenticationSectionEnabled)
    {
        $basicAuthenticationSection = $config.GetSection("system.webServer/security/authentication/basicAuthentication", "Default Web Site/OAB")
        $basicAuthenticationSection["enabled"]=$basicAuthenticationSectionEnabled
    }
    # Check null (inherited from root of web server), otherwise set to previous value
    if ($windowsAuthenticationSectionEnabled)
    {
        $windowsAuthenticationSection = $config.GetSection("system.webServer/security/authentication/windowsAuthentication", "Default Web Site/OAB")
        $windowsAuthenticationSection["enabled"] = $windowsAuthenticationSectionEnabled
    }

    $Iis.CommitChanges()
}

# Loads OAB auth module by creating or overwriting web.config for OAB vdir
function UpdateOabWebConfig()
{
    $webConfigPath = $ExchangeInstallPath + "ClientAccess\OAB\web.config"
    $webConfigOriginal = @"<?xml version="1.0" encoding="utf-8"?><configuration><system.webServer><modules><add name="Microsoft.Exchange.OABAuth" type="Microsoft.Exchange.OABAuth.OABAuthModule" /></modules></system.webServer><system.web><compilation defaultLanguage="c#" debug="false"><assemblies><add assembly="Microsoft.Exchange.Net, Version=14.0.0.0, Culture=neutral, publicKeyToken=31bf3856ad364e35"/><add assembly="Microsoft.Exchange.Diagnostics, Version=14.0.0.0, Culture=neutral, publicKeyToken=31bf3856ad364e35"/><add assembly="Microsoft.Exchange.OabAuthModule, Version=14.0.0.0, Culture=neutral, publicKeyToken=31bf3856ad364e35"/></assemblies></compilation></system.web><runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"><dependentAssembly><assemblyIdentity name="Microsoft.Exchange.OABAuthModule" publicKeyToken="31bf3856ad364e35" culture="neutral" /><codeBase version="14.0.0.0" href="file:///{0}bin\Microsoft.Exchange.OABAuthModule.dll"/></dependentAssembly><dependentAssembly><assemblyIdentity name="Microsoft.Exchange.Net" publicKeyToken="31bf3856ad364e35" culture="neutral" /><codeBase version="14.0.0.0" href="file:///{0}bin\Microsoft.Exchange.Net.dll"/></dependentAssembly><dependentAssembly><assemblyIdentity name="Microsoft.Exchange.Rpc" publicKeyToken="31bf3856ad364e35" culture="neutral" /><codeBase version="14.0.0.0" href="file:///{0}bin\Microsoft.Exchange.Rpc.dll"/></dependentAssembly><dependentAssembly><assemblyIdentity name="Microsoft.Exchange.Diagnostics" publicKeyToken="31bf3856ad364e35" culture="neutral" /><codeBase version="14.0.0.0" href="file:///{0}bin\Microsoft.Exchange.Diagnostics.dll"/></dependentAssembly></assemblyBinding></runtime></configuration>"@
    # Swap in Exchange installation path
    $webConfigData = [string]::Format($webConfigOriginal, $ExchangeInstallPath)

    # Check for existing web.config
    if (Test-Path $webConfigPath)
    {
        # Make a backup copy of current web.config
        $backupPath = $webConfigPath + " Backup " + [string](get-date -Format "yyyy-MM-dd HHmmss")
        Write-Output "Backing up existing web.config to ""$backupPath"""
        Copy-Item $webConfigPath $backupPath
    }
    Out-File -FilePath $webConfigPath -InputObject $webConfigData -Encoding "UTF8"
    Write-Output "Created $webConfigPath."
}


# Main
Write-Output "Converting OAB virtual directory on $ComputerName to an application..." ""

# Get IIS config to create OAB-specific app pool, then add web.config for OABAuth module
UpdateOabWebConfig
CreateOabAppPool

Write-Output "Done!  OAB virtual directory has been converted to an application on $ComputerName."
$a=$Iis.Dispose()

# SIG # Begin signature block
# MIIaqwYJKoZIhvcNAQcCoIIanDCCGpgCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQU9/hTOMuPNFNowKeSrS1Unzot
# K86gghV5MIIEujCCA6KgAwIBAgIKYQKOQgAAAAAAHzANBgkqhkiG9w0BAQUFADB3
# MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk
# bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEwHwYDVQQDExhN
# aWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTIwMTA5MjIyNTU4WhcNMTMwNDA5
# MjIyNTU4WjCBszELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAO
# BgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEN
# MAsGA1UECxMETU9QUjEnMCUGA1UECxMebkNpcGhlciBEU0UgRVNOOkY1MjgtMzc3
# Ny04QTc2MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIIB
# IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAluyOR01UwlyVgNdOCz2/l0PD
# S+NgZxEvAU0M2NFGLxBA3gukUFISiAtDei0/7khuZseR5gPKbux5qWojm81ins1q
# pD/no0P/YkehtLpE+t9AwYVUfuigpyxDI5tSHzI19P6aVp+NY3d7MJ4KM4VyG8pK
# yMwlzdtdES7HsIzxj0NIRwW1eiAL5fPvwbr0s9jNOI/7Iao9Cm2FF9DK54YDwDOD
# tSXEzFqcxMPaYiVNUyUUYY/7G+Ds90fGgEXmNVMjNnfKsN2YKznAdTUP3YFMIT12
# MMWysGVzKUgn2MLSsIRHu3i61XQD3tdLGfdT3njahvdhiCYztEfGoFSIFSssdQID
# AQABo4IBCTCCAQUwHQYDVR0OBBYEFC/oRsho025PsiDQ3olO8UfuSMHyMB8GA1Ud
# IwQYMBaAFCM0+NlSRnAK7UD7dvuzK7DDNbMPMFQGA1UdHwRNMEswSaBHoEWGQ2h0
# dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY3Jvc29m
# dFRpbWVTdGFtcFBDQS5jcmwwWAYIKwYBBQUHAQEETDBKMEgGCCsGAQUFBzAChjxo
# dHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jvc29mdFRpbWVT
# dGFtcFBDQS5jcnQwEwYDVR0lBAwwCgYIKwYBBQUHAwgwDQYJKoZIhvcNAQEFBQAD
# ggEBAHP/fS6dzY2IK3x9414VceloYvAItkNWxFxKLWjY+UgRkfMRnIXsEtRUoHWp
# OKFZf3XuxvU02FSk4tDMfJerk3UwlwcdBFMsNn9/8UAeDJuA4hIKIDoxwAd1Z+D6
# NJzsiPtXHOVYYiCQRS9dRanIjrN8cm0QJ8VL2G+iqBKzbTUjZ/os2yUtuV2xHgXn
# Qyg+nAV2d/El3gVHGW3eSYWh2kpLCEYhNah1Nky3swiq37cr2b4qav3fNRfMPwzH
# 3QbPTpQkYyALLiSuX0NEEnpc3TfbpEWzkToSV33jR8Zm08+cRlb0TAex4Ayq1fbV
# PKLgtdT4HH4EVRBrGPSRzVGnlWUwggTsMIID1KADAgECAhMzAAAAsBGvCovQO5/d
# AAEAAACwMA0GCSqGSIb3DQEBBQUAMHkxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX
# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg
# Q29ycG9yYXRpb24xIzAhBgNVBAMTGk1pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENB
# MB4XDTEzMDEyNDIyMzMzOVoXDTE0MDQyNDIyMzMzOVowgYMxCzAJBgNVBAYTAlVT
# MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQK
# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xDTALBgNVBAsTBE1PUFIxHjAcBgNVBAMT
# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
# AQoCggEBAOivXKIgDfgofLwFe3+t7ut2rChTPzrbQH2zjjPmVz+lURU0VKXPtIup
# P6g34S1Q7TUWTu9NetsTdoiwLPBZXKnr4dcpdeQbhSeb8/gtnkE2KwtA+747urlc
# dZMWUkvKM8U3sPPrfqj1QRVcCGUdITfwLLoiCxCxEJ13IoWEfE+5G5Cw9aP+i/QM
# mk6g9ckKIeKq4wE2R/0vgmqBA/WpNdyUV537S9QOgts4jxL+49Z6dIhk4WLEJS4q
# rp0YHw4etsKvJLQOULzeHJNcSaZ5tbbbzvlweygBhLgqKc+/qQUF4eAPcU39rVwj
# gynrx8VKyOgnhNN+xkMLlQAFsU9lccUCAwEAAaOCAWAwggFcMBMGA1UdJQQMMAoG
# CCsGAQUFBwMDMB0GA1UdDgQWBBRZcaZaM03amAeA/4Qevof5cjJB8jBRBgNVHREE
# SjBIpEYwRDENMAsGA1UECxMETU9QUjEzMDEGA1UEBRMqMzE1OTUrNGZhZjBiNzEt
# YWQzNy00YWEzLWE2NzEtNzZiYzA1MjM0NGFkMB8GA1UdIwQYMBaAFMsR6MrStBZY
# Ack3LjMWFrlMmgofMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9z
# b2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY0NvZFNpZ1BDQV8wOC0zMS0yMDEw
# LmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWlj
# cm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljQ29kU2lnUENBXzA4LTMxLTIwMTAuY3J0
# MA0GCSqGSIb3DQEBBQUAA4IBAQAx124qElczgdWdxuv5OtRETQie7l7falu3ec8C
# nLx2aJ6QoZwLw3+ijPFNupU5+w3g4Zv0XSQPG42IFTp8263Os8lsujksRX0kEVQm
# MA0N/0fqAwfl5GZdLHudHakQ+hywdPJPaWueqSSE2u2WoN9zpO9qGqxLYp7xfMAU
# f0jNTbJE+fA8k21C2Oh85hegm2hoCSj5ApfvEQO6Z1Ktwemzc6bSY81K4j7k8079
# /6HguwITO10g3lU/o66QQDE4dSheBKlGbeb1enlAvR/N6EXVruJdPvV1x+ZmY2DM
# 1ZqEh40kMPfvNNBjHbFCZ0oOS786Du+2lTqnOOQlkgimiGaCMIIFvDCCA6SgAwIB
# AgIKYTMmGgAAAAAAMTANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPyLGQBGRYD
# Y29tMRkwFwYKCZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3Nv
# ZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMTAwODMxMjIxOTMyWhcN
# MjAwODMxMjIyOTMyWjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv
# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0
# aW9uMSMwIQYDVQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQTCCASIwDQYJ
# KoZIhvcNAQEBBQADggEPADCCAQoCggEBALJyWVwZMGS/HZpgICBCmXZTbD4b1m/M
# y/Hqa/6XFhDg3zp0gxq3L6Ay7P/ewkJOI9VyANs1VwqJyq4gSfTwaKxNS42lvXlL
# cZtHB9r9Jd+ddYjPqnNEf9eB2/O98jakyVxF3K+tPeAoaJcap6Vyc1bxF5Tk/TWU
# cqDWdl8ed0WDhTgW0HNbBbpnUo2lsmkv2hkL/pJ0KeJ2L1TdFDBZ+NKNYv3LyV9G
# MVC5JxPkQDDPcikQKCLHN049oDI9kM2hOAaFXE5WgigqBTK3S9dPY+fSLWLxRT3n
# rAgA9kahntFbjCZT6HqqSvJGzzc8OJ60d1ylF56NyxGPVjzBrAlfA9MCAwEAAaOC
# AV4wggFaMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMsR6MrStBZYAck3LjMW
# FrlMmgofMAsGA1UdDwQEAwIBhjASBgkrBgEEAYI3FQEEBQIDAQABMCMGCSsGAQQB
# gjcVAgQWBBT90TFO0yaKleGYYDuoMW+mPLzYLTAZBgkrBgEEAYI3FAIEDB4KAFMA
# dQBiAEMAQTAfBgNVHSMEGDAWgBQOrIJgQFYnl+UlE/wq4QpTlVnkpDBQBgNVHR8E
# STBHMEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9k
# dWN0cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEESDBGMEQGCCsG
# AQUFBzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jv
# c29mdFJvb3RDZXJ0LmNydDANBgkqhkiG9w0BAQUFAAOCAgEAWTk+fyZGr+tvQLEy
# tWrrDi9uqEn361917Uw7LddDrQv+y+ktMaMjzHxQmIAhXaw9L0y6oqhWnONwu7i0
# +Hm1SXL3PupBf8rhDBdpy6WcIC36C1DEVs0t40rSvHDnqA2iA6VW4LiKS1fylUKc
# 8fPv7uOGHzQ8uFaa8FMjhSqkghyT4pQHHfLiTviMocroE6WRTsgb0o9ylSpxbZsa
# +BzwU9ZnzCL/XB3Nooy9J7J5Y1ZEolHN+emjWFbdmwJFRC9f9Nqu1IIybvyklRPk
# 62nnqaIsvsgrEA5ljpnb9aL6EiYJZTiU8XofSrvR4Vbo0HiWGFzJNRZf3ZMdSY4t
# vq00RBzuEBUaAF3dNVshzpjHCe6FDoxPbQ4TTj18KUicctHzbMrB7HCjV5JXfZSN
# oBtIA1r3z6NnCnSlNu0tLxfI5nI3EvRvsTxngvlSso0zFmUeDordEN5k9G/ORtTT
# F+l5xAS00/ss3x+KnqwK+xMnQK3k+eGpf0a7B2BHZWBATrBC7E7ts3Z52Ao0CW0c
# gDEf4g5U3eWh++VHEK1kmP9QFi58vwUheuKVQSdpw5OPlcmN2Jshrg1cnPCiroZo
# gwxqLbt2awAdlq3yFnv2FoMkuYjPaqhHMS+a3ONxPdcAfmJH0c6IybgY+g5yjcGj
# Pa8CQGr/aZuW4hCoELQ3UAjWwz0wggYHMIID76ADAgECAgphFmg0AAAAAAAcMA0G
# CSqGSIb3DQEBBQUAMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJkiaJk/Is
# ZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290IENlcnRpZmlj
# YXRlIEF1dGhvcml0eTAeFw0wNzA0MDMxMjUzMDlaFw0yMTA0MDMxMzAzMDlaMHcx
# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt
# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xITAfBgNVBAMTGE1p
# Y3Jvc29mdCBUaW1lLVN0YW1wIFBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
# AQoCggEBAJ+hbLHf20iSKnxrLhnhveLjxZlRI1Ctzt0YTiQP7tGn0UytdDAgEesH
# 1VSVFUmUG0KSrphcMCbaAGvoe73siQcP9w4EmPCJzB/LMySHnfL0Zxws/HvniB3q
# 506jocEjU8qN+kXPCdBer9CwQgSi+aZsk2fXKNxGU7CG0OUoRi4nrIZPVVIM5AMs
# +2qQkDBuh/NZMJ36ftaXs+ghl3740hPzCLdTbVK0RZCfSABKR2YRJylmqJfk0waB
# SqL5hKcRRxQJgp+E7VV4/gGaHVAIhQAQMEbtt94jRrvELVSfrx54QTF3zJvfO4OT
# oWECtR0Nsfz3m7IBziJLVP/5BcPCIAsCAwEAAaOCAaswggGnMA8GA1UdEwEB/wQF
# MAMBAf8wHQYDVR0OBBYEFCM0+NlSRnAK7UD7dvuzK7DDNbMPMAsGA1UdDwQEAwIB
# hjAQBgkrBgEEAYI3FQEEAwIBADCBmAYDVR0jBIGQMIGNgBQOrIJgQFYnl+UlE/wq
# 4QpTlVnkpKFjpGEwXzETMBEGCgmSJomT8ixkARkWA2NvbTEZMBcGCgmSJomT8ixk
# ARkWCW1pY3Jvc29mdDEtMCsGA1UEAxMkTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNh
# dGUgQXV0aG9yaXR5ghB5rRahSqClrUxzWPQHEy5lMFAGA1UdHwRJMEcwRaBDoEGG
# P2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL21pY3Jv
# c29mdHJvb3RjZXJ0LmNybDBUBggrBgEFBQcBAQRIMEYwRAYIKwYBBQUHMAKGOGh0
# dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9zb2Z0Um9vdENl
# cnQuY3J0MBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEBBQUAA4ICAQAQ
# l4rDXANENt3ptK132855UU0BsS50cVttDBOrzr57j7gu1BKijG1iuFcCy04gE1CZ
# 3XpA4le7r1iaHOEdAYasu3jyi9DsOwHu4r6PCgXIjUji8FMV3U+rkuTnjWrVgMHm
# lPIGL4UD6ZEqJCJw+/b85HiZLg33B+JwvBhOnY5rCnKVuKE5nGctxVEO6mJcPxaY
# iyA/4gcaMvnMMUp2MT0rcgvI6nA9/4UKE9/CCmGO8Ne4F+tOi3/FNSteo7/rvH0L
# QnvUU3Ih7jDKu3hlXFsBFwoUDtLaFJj1PLlmWLMtL+f5hYbMUVbonXCUbKw5TNT2
# eb+qGHpiKe+imyk0BncaYsk9Hm0fgvALxyy7z0Oz5fnsfbXjpKh0NbhOxXEjEiZ2
# CzxSjHFaRkMUvLOzsE1nyJ9C/4B5IYCeFTBm6EISXhrIniIh0EPpK+m79EjMLNTY
# MoBMJipIJF9a6lbvpt6Znco6b72BJ3QGEe52Ib+bgsEnVLaxaj2JoXZhtG6hE6a/
# qkfwEm/9ijJssv7fUciMI8lmvZ0dhxJkAj0tr1mPuOQh5bWwymO0eFQF1EEuUKyU
# sKV4q7OglnUa2ZKHE3UiLzKoCG6gW4wlv6DvhMoh1useT8ma7kng9wFlb4kLfchp
# yOZu6qeXzjEp/w7FW1zYTRuh2Povnj8uVRZryROj/TGCBJwwggSYAgEBMIGQMHkx
# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt
# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIzAhBgNVBAMTGk1p
# Y3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBAhMzAAAAsBGvCovQO5/dAAEAAACwMAkG
# BSsOAwIaBQCggb4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGC
# NwIBCzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkEMRYEFF0zL6v/FHt2Mc6N
# GK0kb8qQgKOdMF4GCisGAQQBgjcCAQwxUDBOoCaAJABDAG8AbgB2AGUAcgB0AE8A
# QQBCAFYARABpAHIALgBwAHMAMaEkgCJodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20v
# ZXhjaGFuZ2UgMA0GCSqGSIb3DQEBAQUABIIBAH4LW8iYUwQqH1FlIF88XbHxcE02
# g9Tikg7amI4NUYJqE8VRIgWrwjZr8jXCa4Fi74Xmm/XSHqI4CtXi4Ue9I9MqrE/7
# iON55uPlaBtyPiCOU9C3QrEoBp3ThMm2MDP/HVJLxh6H20fcnD32Ey2pc1njB0rb
# zpem/yVKO24EG4ksUYbFSX8LqV55C0xZfpi3TKtAk0xeWZX7vNG2BN2UlhGa0gVQ
# RKr8VraT7bCiWMhG1efX/O6I4c8Ycf2OB1+u015Bph9BQTMLOal4RrvNJRaZdAro
# HDBYXeihk/5bdoNad54CWq/5jvpQB8j1ItTZFLI/8/2oRzHPyhDudP11o4qhggIf
# MIICGwYJKoZIhvcNAQkGMYICDDCCAggCAQEwgYUwdzELMAkGA1UEBhMCVVMxEzAR
# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p
# Y3Jvc29mdCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3Rh
# bXAgUENBAgphAo5CAAAAAAAfMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJ
# KoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xMzAzMjkwMzE3NTFaMCMGCSqGSIb3
# DQEJBDEWBBQdvnILmIidnC1R04O3l6CRVLXvzjANBgkqhkiG9w0BAQUFAASCAQCE
# 3AJJUr0bDBqmyFsak1VUtHBs+9mB3O1cmSrVYRRMuMNQnIAyOKrv9eXdkSZJZGnQ
# suQ+RwP12Ox1K6T6JaqeonVBUaZW6ZYv73e4NhdWDF8Im5xX2q6FJ/bs50nwHx/a
# boBfCU9hTAjoKML3hnY5plMeulkVJ7xXGibN5zGUV49ovgRt4xAWrWo9I7pUsyh1
# 7f8gfT0N96LWL8PnDlvfSAqIytGTh3k/HwBywqAP+dj36Nj3+j27giFQSPk8qDIJ
# QoMYR4MJrSexDVeqDrkmNY9fm7HvydCZZWH1WGAOZ6oxLOEDD3lQYPEI62qbZHy4
# Ry2kqdKtWHssVPS7danp
# SIG # End signature block


Marcelo

After Exchange 2007 to 2013 mailbox migration the user is experiencing the old 2007 OWA layout in Windows Phone 8

$
0
0
User mailbox moved from 2007 to 2013 Exchange is experiencing strange behavior with Windows Phone 8 OWA. New OWA 2013 works for user perfectly with Normal Browser but when logging with Win 8 phone after the new 2013 logon screen the user is shown the old 2007 OWA. Trying to Access OWA with same user on iPhone5 works just fine. Accessing a test user that is created directly to 2013 Exchange will work fine with same Windows 8 Phone. Any ideas for this strange issue?

Custom OWA with username, email, and password

$
0
0

Most of my users are actually mapped to their Outlook profiles when they log onto their desktop since the people change every year in June, but the positions stay the same.  I have my AD setup so it can authenticate with a different logon system, which is what they also use to log onto their computers by using name mapping.  Here's what I'd like to do:

I can go to https://mail.domain.com/owa/my_assigned_email@domain.com and log in with DIFFERENT_AD_DOMAIN\username and password, and it will log that person into their email without knowing the password of that email address, or even the password of their AD account in my domain, since they're using their other account.  I'd like to setup an OWA page at https://mail.domain.com/owa so that it asks the following:

username, password, email address

It would on the backend make it DIFFERENT_AD_DOMAIN\username (since the FBA is setup with my local domain) and pass along all of that info and log them in.

People actually jsut got to mail.domain.com, and it redirects them to https://mail.domain.com/owa since they never remember the https or /owa.  So I'd like to have it so that they have to just fill in 3 fields on the /owa page and not have to remember anything else.

Any ideas?

Outlook Client prompts for credentials in Cached Mode when connecting to Exchange 2013

$
0
0

Anyone else experiencing the above issue?  When Offline Cache is disabled the Outlook client connects seamlessly.  The Front End server and Outlook Clients are both configured for NTLM authentication and the Outlookprovider on the frontend servers (EXCH and EXPR) are both configured as the wildcard for the primary domain.


Exchange 2013 not returning OAB URL Issue

$
0
0

We have implemented our Exch2013 servers 2 server 1 dag w/ 2 databases. We are using split DNS.

We have only moved over 2 users to the 2013 environment and ran into an issue with Address book not updating. Everything else checks out fine.

What I have found so far is the Autodiscover is not returning an OAB URL.

Test-outlookwebservice gives me this with a verbose:

"VERBOSE: [22:01:59.504 GMT] Test-OutlookWebServices : Autodiscover response:Microsoft.Exchange.Management.Tasks.ServiceValidatorException: The Autodiscover response did not return a URL forOffline Address Book. Response details:"

Get-clientaccessserver shows the autodiscover urls correctly.

Get-offlineaddressbook shows external/internal URls correctly and Webdistriution is enabled.

I have tried removing and rebuilding the autodiscover virtual directory based on some other troubleshooting I have found, but it is still not working.

Any ideas?

Outlook 2007 has stopped automatically recieving e-mails

$
0
0
We use Outlook 2007 in conjunction with Exchange 2007, one of my users is having trouble now that e-mails have stopped automatically coming through to inbox, send/receive has stopped working too and you have to choose "This folder (e-mail address)" from the drop down. This also means that no calendars are visible for the user either and there is no real way of refreshing those. When one of our desktop users has this problem, I just take them off of cached mode and it fixes it but this won't work for the laptop user as they are not always in the office or on our network. The size of the PST is just over 10GB and any and all help will be greatly appreciated, been stuck on this for weeks. If any more info is needed, let me know.

Export autocompletion from Exchange Server to another Exchange server

$
0
0

Hi all, we are migrating our mail boxes from Hosted Exchange Servers (in ISP) to our own Exchange Server.

Problem is that when we are reconfiguring Outlook, we are loosing the autocompletion. Because we migrate from one Exchange server to another.

We don't manage the source server but only the destination server.

How can I export autocompletion from Outlook or Exchange Server to import it to Outlook or nex Server ?

Thanks.


David COURTEL
IT Technician
Wsus Third-Party Softwares Publishing : http://wsuspackagepublisher.codeplex.com

Address list shows up empty

$
0
0

Hello all,

I'm having an issue with an address list (all groups).

In the Exchange Management Console when editing the properties of the address list "Company - All Groups" (Filter Container <subdomain>.<domain>.local/Organization and recipients filter (ObjectClass -eq 'Group') ) and showing the preview i see all distribution groups listed.

But when looking in Outlook addressbooks, the list is empty.

Also when checking in the shell via Get-Recipient -Filter {AddressListMembership -eq 'CN=Company - All Groups,CN=All Address Lists,CN=Address Listiner,CN=<domain>,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=<domain>,DC=local'} the list is empty (whereas the All Users list shows all users).

What is wrong? Where can I continue troubleshoot this?

Regards,

Stephan van der Plas


You know you're an engineer when you have no life and can prove it mathematically

Credentials Popup while opening Outlook 2013?

$
0
0
Hello-
I am having difficulty connecting to my Exchange e-mail (college e-mail) on Outlook 2013. When I open Outlook, a box pops up titles Windows Security. It gives me a field for my email, which I type, then a field for my password. I type in my password and the box pops back up again immediately. I am sure that I am typing my password correctly. How do I get Outlook to not prompt me for my credentials or how do I make Outlook accept the correct credentials?

Thanks for your support!

Will pst file from exchange 2003 work on regualr pc using outlook

$
0
0

First  can I take  exchanger server 2003 outlook and install it on a regular pc and upload a .pst file of a user and use this as email , or will it just view old mail or will it not work at all?

I have users in exchange server 2003 that I wish to make back up of the user not just archive them. move the .pst to another computer and reinstall them. The new computer would not be server but a regular pc.

will this work?

also what is simple way to backup the pst files or a user ?

Can I take exchange server files and open use send and receive mail on non server pc ?

if not how can view my .pst files once backed up and removed from the exiting server.?

Attachments Moving after Moving Email from Exchange Mailbox to PST

$
0
0

A user with Office 2013 has an Exchange 2013 mailbox and moves some emails to an attached PST file. Attached documents in an email, such as a PDF,gets placed behind the senders email signature making the attachment impossible to open without clicking reply/forward and moving the email signature around. You are able to select the email, Click File, Click Save Attachment and access the PDF that way.

Steps Taken Thus Far:
Repaired Office 2013.
Removed Office 2013.
Cleaned the stale registry records on the workstation.
Re-installed Office 2013.
Downloaded & installed all Office 2013 updates.
Created a new PST file in a different location and moved email with an attachment to the new PST file.
Followed the same process of moving an email to a PST file when logged on as a different user account using a different mailbox.

Thank you for any suggestions in resolving this issue.


Outlook 2010 - Disable Automatic Deletion of Meeting Requests

$
0
0

Hello all,

Our environment is Exchange 2010 with the users on Outlook 2010 and Win7 PC's

I have a user that is an admin assistant and takes care of meeting requests sent to the mailboxes of specific meeting rooms.  What this user stated is:

1.      When a meeting request comes in to the inbox of that meeting room, the message is originally in the inbox

2.      When a cancellation or update to the meeting comes in, and the user accepts the changes, the original gets deleted.

3.      The user would like to have all messages that applied to this meeting to remain in the inbox of that meeting room (for tracking).

I have checked the setting in File > Options > Mail > Send messages to un-check "Delete meeting requests and notifications from Inbox after responding"

I have performed this setting check by granting myself full permissions for each mailbox. Creating a new mail profile for each meeting room mailbox on my Win7 PC, opened the meeting room mailbox as if it were my own Outlook and checked the setting.  After verifying that the setting was set to not delete meeting requests and notifications from Inbox after responding, I deleted the profiles I made for the meeting rooms.  I then went back to the user, closed Outlook and re-opened.  We gave Exchange a day to update the mailboxes, however the original issue was still occurring.

Since this did not work, I created new mail profiles on my Win7 the same was as above, and created a rule for each mailbox to send a copy of any meeting request message including updates to the inbox of that meeting room.  This route is working, for the most part.  It is keeping all updates and cancellations to a meeting, however, the original meeting request message is still being deleted.

Any ideas on how to keep the original meeting request message in the inbox?

I can't create an email account in Outlook 2013 for my exchange server

$
0
0

Have tried many things on this issue.

 

I have a new tablet PC running Windows 8. I am able to connect to my Exchange Server account using Windows 8 Mail, no problem but when I have tried to set up an account for Outlook 2013 to connect to the same Exchange Server using exactly the same login information I cannot get it to connect. I simply get the message that the Exchange Server is unavailable.

 

I've been able to connect a variety of other devices to the same Exchange Server account without any problem - iPhones, Windows Phone, iPads, etc, etc all without problem. It's just this device and Outlook 2013 seems to be the issue. From checking various forums seems this is not an isolated issue but I've not been able to find a useful solution so far. Have deleted the user profiles and .ost files, switched off caching etc, all to no avail.

 

One key difference between the account information required by Windows Mail and Outlook is that in the Windows Mail system I am prompted to enter my domain information. I know this is critical from the information provided to me by our network administration team but there is nowhere in the Outlook account setup process where I can enter my domain info.

 

Closest I've been able to get to success is to use the manual account creation process and select the Exchange ActiveSync option - this gets me to the point where I'm prompted for my username and password info but it fails at this step because I am connected to a local domain (the domain account for the PC) and my user name and password are not accepted. There is nowhere in this login process that I can find where I can enter the correct domain info.

 

Any ideas on a solution would be very much appreciated - I use Outlook extensively in my work and whilst the Windows 8 Mail system is good, it doesn't have the level of functionality I need.

 

Many thanks

 

Wayne.

outlook cant open

$
0
0
an exception occurred while trying to run shell32 dll control rundll

Exchange 2013 & Outlook 2010 issue.

$
0
0
1) Exchange 2010: is working fine with OWA & Outlook 2010.
2) Exchange 2013: Installed and both Exchanges co-existing in the same forest.
3) OWA: is working fine for both migrated mailboxes and non-migrated mailboxes.

The problem is Outlook 2010 with February 2013 update which is working fine when the mailbox database is on Exchange 2010 but not after migrating that mailbox to Exchange 2013 database, it shows "disconnected" error after Outlooks loads and cannot send or receive any new emails.

What I'm missing there, I thought outlook should sense the new configuration and reconfigure itself pointing to the new Exchange server!

Exchange 2013: Error while preparing to send sharing message using Outlook 2010

$
0
0
Hi!

I have following issue:

-Exchange 2013
-Outlook 2010,2013 clients

Users want to share their task, and calendars.

From Outlook 2013, and OWA works, but, from Outlook 2010, we got the "Error while preparing to send sharing message" message.

Is this by design?

Regards,

Akos

Viewing all 10580 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>