Benutzer-Werkzeuge

Webseiten-Werkzeuge


microsoft_exchange

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
microsoft_exchange [2026/02/13 17:12]
admin [OWA Proxy]
microsoft_exchange [2026/02/27 09:40] (aktuell)
jango [EMS]
Zeile 315: Zeile 315:
  
 ====Logs==== ====Logs====
 +
 +Send und ReceiveLog
 +
 +<code>
 +# Frontend Transport
 +C:\Program Files\Microsoft\Exchange Server\V15\TransportRoles\Logs\FrontEnd\ProtocolLog
 +# Hub Transport
 +C:\Program Files\Microsoft\Exchange Server\V15\TransportRoles\Logs\Hub\ProtocolLog
 +</code>
  
 Aufgaben kann man mit [[coding:powershell#exchange|Powershell]] automatisieren. Aufgaben kann man mit [[coding:powershell#exchange|Powershell]] automatisieren.
Zeile 994: Zeile 1003:
     #app.run(host="0.0.0.0", port=8080, debug=False, ssl_context="adhoc")     #app.run(host="0.0.0.0", port=8080, debug=False, ssl_context="adhoc")
     app.run(host="0.0.0.0", port=443, debug=False, ssl_context=mysslcontext)     app.run(host="0.0.0.0", port=443, debug=False, ssl_context=mysslcontext)
 +</code>
 +
 +====IIS Website====
 +
 +<code powershell>
 +Import-Module WebAdministration
 +
 +New-Item -Path "C:\inetpub\owa-ext" -ItemType Directory -Force | Out-Null
 +New-Website -Name "OWA-EXT" -PhysicalPath "C:\inetpub\owa-ext" -Port 4434 -IPAddress "*" -Force
 +New-WebBinding -Name "OWA-EXT" -Protocol https -Port 4434 -IPAddress "*"
 +
 +Get-ExchangeCertificate | ft Thumbprint,Subject,Services -Auto
 +$thumb = "HIER_DEN_THUMBPRINT_EINTRAGEN"
 +
 +# falls schon mal was auf 4443 hängt, vorher löschen:
 +# netsh http delete sslcert ipport=0.0.0.0:4434
 +
 +netsh http add sslcert ipport=0.0.0.0:4434 certhash=$thumb appid='{00112233-4455-6677-8899-AABBCCDDEEFF}'
 +
 +New-OwaVirtualDirectory -WebSiteName "OWA-EXT" -ExternalUrl https://webmail.domain.at/owa -InternalUrl https://webmail.domain.at/owa
 +
 +Set-OwaVirtualDirectory "VIE-SRV-EX01\owa (OWA-EXT)" -FormsAuthentication $true -WindowsAuthentication $false -BasicAuthentication $false
 +
 +iisreset
 +</code>
 +=====EMS=====
 +
 +<code>
 +Get-ReceiveConnector | ft name,maxmessagesize
 +Get-SendConnector | ft name,maxmessagesize
 +Get-TransportConfig | fl MaxReceiveSize,MaxSendSize
 +Get-Mailbox | ft Name,MaxSendSize,MaxReceiveSize
 +
 +Get-OwaVirtualDirectory | Select Name,Server,InternalUrl,ExternalUrl,InternalAuthenticationMethods,ExternalAuthenticationMethods
 +Set-OwaVirtualDirectory -Identity "VPSV-EX02\owa (Default Web Site)" -ExternalUrl https://webmail.akm.at/owa
 +Set-OwaVirtualDirectory "VPSV-EX02\owa (OWA-EXT)" -FormsAuthentication $true -BasicAuthentication $false -WindowsAuthentication $false
 </code> </code>
  
microsoft_exchange.1770999152.txt.gz · Zuletzt geändert: 2026/02/13 17:12 von admin