<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Skript &#8211; abow &#8211; how do you do IT</title>
	<atom:link href="https://abow.info/tag/skript/feed/" rel="self" type="application/rss+xml" />
	<link>https://abow.info</link>
	<description>Alle möglichen Handkniffe, die ich mir so zusammentrage im Berufsalltag</description>
	<lastBuildDate>Tue, 02 Jun 2026 21:36:31 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://abow.info/wp-content/uploads/2026/06/cropped-favicon-512-32x32.png</url>
	<title>Skript &#8211; abow &#8211; how do you do IT</title>
	<link>https://abow.info</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Microsoft Exchange // Mailboxstatistik für einzelne Empfängerdomain auslesen</title>
		<link>https://abow.info/microsoft/microsoft_exchange/microsoft-exchange-mailboxstatistik-fuer-einzelne-empfaengerdomain-auslesen/</link>
					<comments>https://abow.info/microsoft/microsoft_exchange/microsoft-exchange-mailboxstatistik-fuer-einzelne-empfaengerdomain-auslesen/#respond</comments>
		
		<dc:creator><![CDATA[Andi Bow]]></dc:creator>
		<pubDate>Thu, 10 Jul 2025 14:21:42 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Exchange]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2016]]></category>
		<category><![CDATA[Exchange 2019]]></category>
		<category><![CDATA[Mailboxstatistik]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Skript]]></category>
		<guid isPermaLink="false">https://abow.info/?p=390</guid>

					<description><![CDATA[Wenn du in einer Exchange-Umgebung wissen möchtest, wie viel Speicherplatz und wie viele Elemente Mailboxen einer bestimmten Domain belegen, hilft folgender PowerShell-Befehl. Besonders nützlich bei Multi-Domain-Setups oder bei…]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Wenn du in einer Exchange-Umgebung wissen möchtest, wie viel Speicherplatz und wie viele Elemente <strong>Mailboxen einer bestimmten Domain</strong> belegen, hilft folgender PowerShell-Befehl. Besonders nützlich bei Multi-Domain-Setups oder bei Migrations-/Kostenanalysen.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Ziel</h2>



<p class="wp-block-paragraph">Exportiere eine Übersicht aller Mailboxen mit einer bestimmten Empfängerdomain (z. B. <code>@domain.tld</code>) inklusive <strong>Elementanzahl</strong>, <strong>Gesamtgröße</strong> und <strong>Anzeigename</strong>.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">PowerShell-Befehl</h2>



<pre class="wp-block-code"><code>get-mailbox -ResultSize Unlimited |
  where { $_.PrimarySMTPAddress -like "*@domain.tld" } |
  get-mailboxstatistics |
  select DisplayName,ItemCount,TotalItemSize |
  Export-Csv -Path "C:\temp\Mailboxstatistik.csv" -NoTypeInformation -Encoding UTF8
</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Erläuterung</h2>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>Befehlsteil</th><th>Erklärung</th></tr></thead><tbody><tr><td><code>get-mailbox -ResultSize Unlimited</code></td><td>Holt alle Mailboxen im System</td></tr><tr><td><code>where { $_.PrimarySMTPAddress -like "*@domain.tld" }</code></td><td>Filtert Mailboxen mit Ziel-Domain</td></tr><tr><td><code>get-mailboxstatistics</code></td><td>Holt Statistiken wie ItemCount und Größe</td></tr><tr><td><code>select DisplayName, ItemCount, TotalItemSize</code></td><td>Auswahl der relevanten Daten</td></tr><tr><td><code>Export-Csv</code></td><td>Exportiert das Ergebnis als CSV-Datei</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Ergebnis</h2>



<p class="wp-block-paragraph">Die CSV-Datei <code>C:\temp\Mailboxstatistik.csv</code> enthält eine saubere Tabelle mit:</p>



<ul class="wp-block-list">
<li><strong>DisplayName</strong> (Anzeigename der Mailbox)</li>



<li><strong>ItemCount</strong> (Anzahl der Elemente)</li>



<li><strong>TotalItemSize</strong> (Gesamtgröße der Mailbox)</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Bonus: Nur Nutzer anzeigen, keine Shared/Room-Mailboxen</h2>



<p class="wp-block-paragraph">Wenn du <strong>nur Benutzer-Mailboxen</strong> (keine Ressourcen oder freigegebene) erfassen willst, kannst du den Filter anpassen:</p>



<pre class="wp-block-code"><code>get-mailbox -ResultSize Unlimited -RecipientTypeDetails UserMailbox |
  where { $_.PrimarySMTPAddress -like "*@domain.tld" } |
  get-mailboxstatistics |
  select DisplayName,ItemCount,TotalItemSize |
  Export-Csv -Path "C:\temp\Mailboxstatistik.csv" -NoTypeInformation -Encoding UTF8
</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><strong>Fazit</strong>: Mit nur wenigen Zeilen PowerShell bekommst du schnell und zuverlässig einen Überblick über Mailboxnutzung pro Domain – ideal für Analyse, Migration oder Lizenzbewertung.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://abow.info/microsoft/microsoft_exchange/microsoft-exchange-mailboxstatistik-fuer-einzelne-empfaengerdomain-auslesen/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Powershell // Einen Prozess auf Remotecomputern beenden</title>
		<link>https://abow.info/microsoft/powershell-einen-prozess-auf-remotecomputern-beenden/</link>
					<comments>https://abow.info/microsoft/powershell-einen-prozess-auf-remotecomputern-beenden/#respond</comments>
		
		<dc:creator><![CDATA[Andi Bow]]></dc:creator>
		<pubDate>Wed, 21 Dec 2022 12:00:00 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Powershell]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Dienste beenden]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Remote-Powershell]]></category>
		<category><![CDATA[Skript]]></category>
		<guid isPermaLink="false">https://abow.info/?p=193</guid>

					<description><![CDATA[Du sitzt an deinem Admin-PC und ein Prozess hängt – aber nicht auf deiner Maschine, sondern auf einem halben Dutzend Servern gleichzeitig. Jeden einzeln per RDP aufmachen? Spar…]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Du sitzt an deinem Admin-PC und ein Prozess hängt – aber nicht auf deiner Maschine, sondern auf einem halben Dutzend Servern gleichzeitig. Jeden einzeln per RDP aufmachen? Spar dir das. In diesem Artikel zeige ich dir ein PowerShell-Skript, mit dem du <strong>einen Prozess auf einem oder mehreren Remote-Computern in einem Rutsch beendest</strong> – wahlweise per Hostliste, per Textdatei oder direkt aus einer Active-Directory-OU heraus.</p>



<p class="wp-block-paragraph">Gegenüber meiner ersten Version (2022) ist das Skript komplett überarbeitet: zuverlässiges Remoting über <code>Invoke-Command</code>, sauberer Parameter-Block, Sicherheitsabfrage über das native <code>-Confirm</code> von PowerShell statt einer Windows-Forms-Box und eine echte Erfolgskontrolle pro Computer.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Getestet auf:</strong> Windows 10 / 11 und Windows Server 2016–2022.</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Voraussetzungen</h2>



<p class="wp-block-paragraph">Damit das Skript funktioniert, müssen ein paar Dinge stimmen:</p>



<ul class="wp-block-list">
<li><strong>PowerShell-Remoting (WinRM)</strong> ist auf den Zielcomputern aktiv (<code>Enable-PSRemoting -Force</code>).</li>



<li>Die Remotecomputer sind aus deinem Netzwerk <strong>erreichbar</strong>.</li>



<li>Du hast <strong>Admin-Rechte</strong> auf den Zielen, z. B. als Domain-Administrator.</li>



<li>Die <strong>ExecutionPolicy</strong> lässt die Ausführung zu. Für einen einmaligen Lauf reicht:</li>
</ul>



<pre class="wp-block-code"><code>  powershell.exe -ExecutionPolicy Bypass -File .\Stop-RemoteProcess.ps1</code></pre>



<p class="wp-block-paragraph">(Wie man ExecutionPolicys sauber per GPO für Benutzer oder Computer setzt, schreibe ich gerne in einem eigenen Artikel.)</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Drei Wege, die Zielcomputer anzugeben</h2>



<p class="wp-block-paragraph">Das Skript arbeitet mit Parameter-Sets – du wählst genau <strong>einen</strong> der drei Wege:</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>Weg</th><th>Parameter</th><th>Wann sinnvoll</th></tr></thead><tbody><tr><td>Direkte Liste</td><td><code>-ComputerName SRV01,SRV02</code></td><td>Du kennst die Hosts</td></tr><tr><td>Textdatei</td><td><code>-Path C:\temp\hosts.txt</code></td><td>Feste Maschinenlisten, ein Host pro Zeile</td></tr><tr><td>AD-Suche</td><td><code>-SearchBase ... -NameFilter ...</code></td><td>Dynamisch alle Server einer OU</td></tr></tbody></table></figure>



<p class="wp-block-paragraph">Den zu beendenden Prozess gibst du immer über <code>-ProcessName</code> an (ohne <code>.exe</code>).</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Anwendungsbeispiele</h2>



<pre class="wp-block-code"><code># Direkt zwei Hosts
.\Stop-RemoteProcess.ps1 -ComputerName SRV01,SRV02 -ProcessName notepad

# Hostliste aus Textdatei
.\Stop-RemoteProcess.ps1 -Path C:\temp\hosts.txt -ProcessName Teams

# Alle Server einer OU, deren Name "SQL" enthält
.\Stop-RemoteProcess.ps1 -SearchBase 'OU=Server,DC=abow,DC=local' -NameFilter 'SQL' -ProcessName sqlservr</code></pre>



<p class="wp-block-paragraph">Vor dem Beenden zeigt dir das Skript alle gefundenen Computer an und fragt pro Maschine nach (<code>-Confirm</code>). Erst nach deinem <strong>OK</strong> wird der Prozess wirklich gekillt – und anschließend geprüft, ob er auch tatsächlich weg ist.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Das Skript</h2>



<pre class="wp-block-code"><code>#Requires -Version 5.1
&lt;#
.SYNOPSIS
    Beendet einen Prozess auf einem oder mehreren Remote-Computern via Invoke-Command.

.NOTES
    Name:    Stop-RemoteProcess
    Author:  Andreas Bowitz (Andi Bow)
    Version: 1.0
#&gt;

&#91;CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'High', DefaultParameterSetName = 'ComputerName')]
param(
    &#91;Parameter(Mandatory, ParameterSetName = 'ComputerName')]
    &#91;string&#91;]]$ComputerName,

    &#91;Parameter(Mandatory, ParameterSetName = 'File')]
    &#91;ValidateScript({ Test-Path $_ })]
    &#91;string]$Path,

    &#91;Parameter(Mandatory, ParameterSetName = 'AD')]
    &#91;string]$SearchBase,

    &#91;Parameter(Mandatory, ParameterSetName = 'AD')]
    &#91;string]$NameFilter,

    &#91;Parameter(Mandatory)]
    &#91;string]$ProcessName,

    &#91;System.Management.Automation.PSCredential]$Credential
)

# --- Admin-Rechte pruefen ---
$identity  = &#91;Security.Principal.WindowsIdentity]::GetCurrent()
$principal = New-Object Security.Principal.WindowsPrincipal($identity)
if (-not $principal.IsInRole(&#91;Security.Principal.WindowsBuiltInRole]::Administrator)) {
    Write-Warning "Keine Administrator-Rechte. Bitte PowerShell als Administrator starten."
    return
}

# --- Zielcomputer ermitteln ---
$targets = switch ($PSCmdlet.ParameterSetName) {
    'ComputerName' { $ComputerName }
    'File'         { Get-Content -Path $Path | Where-Object { $_.Trim() } }
    'AD' {
        Import-Module ActiveDirectory -ErrorAction Stop
        Get-ADComputer -Filter "Name -like '*$NameFilter*'" -SearchBase $SearchBase |
            Select-Object -ExpandProperty Name
    }
}

if (-not $targets) {
    Write-Warning "Keine Computer gefunden. Abbruch."
    return
}

Write-Host "Folgende Computer wurden gefunden:" -ForegroundColor Cyan
$targets | ForEach-Object { Write-Host "  - $_" }

# --- Credentials holen ---
if (-not $Credential) {
    $Credential = Get-Credential -Message "Bitte mit einem Administrator-Konto anmelden."
}

# --- Prozess remote beenden ---
foreach ($computer in $targets) {

    if (-not (Test-Connection -ComputerName $computer -Count 1 -Quiet)) {
        Write-Warning "$computer ist nicht erreichbar - uebersprungen."
        continue
    }

    if (-not $PSCmdlet.ShouldProcess($computer, "Prozess '$ProcessName' beenden")) {
        continue
    }

    try {
        $result = Invoke-Command -ComputerName $computer -Credential $Credential -ScriptBlock {
            param($name)
            $procs = Get-Process -Name $name -ErrorAction SilentlyContinue
            if (-not $procs) { return 'not-running' }
            $procs | Stop-Process -Force -ErrorAction Stop
            Start-Sleep -Seconds 1
            if (Get-Process -Name $name -ErrorAction SilentlyContinue) { 'still-running' } else { 'stopped' }
        } -ArgumentList $ProcessName

        switch ($result) {
            'stopped'       { Write-Host "&#91;OK]   $computer : '$ProcessName' wurde beendet." -ForegroundColor Green }
            'not-running'   { Write-Host "&#91;INFO] $computer : '$ProcessName' war nicht aktiv." -ForegroundColor Yellow }
            'still-running' { Write-Warning "$computer : '$ProcessName' konnte NICHT beendet werden." }
        }
    }
    catch {
        Write-Warning "$computer : Fehler - $($_.Exception.Message)"
    }
}</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Was sich gegenüber der alten Version verbessert hat</h2>



<p class="wp-block-paragraph">Für alle, die die 2022er-Fassung kennen – die wichtigsten Änderungen und <em>warum</em>:</p>



<ul class="wp-block-list">
<li><strong><code>Invoke-Command</code> statt <code>Enter-PSSession</code> in der Schleife.</strong> <code>Enter-PSSession</code> ist für interaktive Sitzungen gedacht und lässt sich nicht sinnvoll automatisiert in einer Schleife abarbeiten. <code>Invoke-Command</code> führt den Block remote aus und gibt ein Ergebnis zurück.</li>



<li><strong><code>-using</code>/Argument-Übergabe.</strong> Die lokale Variable <code>$ProcessName</code> landet jetzt über <code>-ArgumentList</code> korrekt im Remote-Scriptblock – vorher war sie dort schlicht leer.</li>



<li><strong><code>Get-Content</code> statt <code>[IO.File]::ReadAllText</code>.</strong> Letzteres liefert <em>einen</em> String, sodass die Schleife nur einmal über den Gesamttext lief. <code>Get-Content</code> gibt ein Array – eine Zeile pro Host.</li>



<li><strong><code>Select-Object -ExpandProperty Name</code> statt <code>Format-Table</code>.</strong> <code>Format-Table</code> erzeugt Anzeigeobjekte, keine verwertbaren Strings – die Schleife lief damit ins Leere.</li>



<li><strong>Native Sicherheitsabfrage über <code>ShouldProcess</code>/<code>-Confirm</code></strong> statt einer <code>System.Windows.Forms.MessageBox</code>. Funktioniert auch ohne GUI / in Remote-Sessions.</li>



<li><strong>Erreichbarkeitsprüfung</strong> pro Host (<code>Test-Connection</code>), saubere <code>try/catch</code>-Fehlerbehandlung und ein klares Status-Ergebnis je Computer.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Hier könnt ihr das Skript herunterladen:</p>



<div class="wp-block-file"><a id="wp-block-file--media-520099cf-ddb6-48ed-ae4a-d33426306b91" href="https://abow.info/wp-content/uploads/2022/12/Stop-RemoteProcess.ps1">Stop-RemoteProcess</a><a href="https://abow.info/wp-content/uploads/2022/12/Stop-RemoteProcess.ps1" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-520099cf-ddb6-48ed-ae4a-d33426306b91"><strong>Herunterladen</strong></a></div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">Wie immer berichte ich hier nur von meinen persönlichen Erfahrungen und Ergebnissen. Dies ist keine offizielle Anleitung von Microsoft. Das Nutzen von Skripten geschieht auf eigene Gefahr. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p class="wp-block-paragraph"></p>
</blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://abow.info/microsoft/powershell-einen-prozess-auf-remotecomputern-beenden/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Exchange // Export der IPs von allen Empfangsconnectoren</title>
		<link>https://abow.info/microsoft/microsoft_exchange/exchange-export-der-ips-von-allen-empfangsconnectoren/</link>
					<comments>https://abow.info/microsoft/microsoft_exchange/exchange-export-der-ips-von-allen-empfangsconnectoren/#respond</comments>
		
		<dc:creator><![CDATA[Andi Bow]]></dc:creator>
		<pubDate>Wed, 14 Dec 2022 12:00:00 +0000</pubDate>
				<category><![CDATA[Microsoft Exchange]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2016]]></category>
		<category><![CDATA[Exchange 2019]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Skript]]></category>
		<guid isPermaLink="false">https://abow.info/?p=185</guid>

					<description><![CDATA[Hier zeige ich euch ein Skript zum exportieren von allen IPs in allen Exchange Empfangsconnectoren.]]></description>
										<content:encoded><![CDATA[
<pre class="wp-block-preformatted">Dieses Skript wurde mit Exchange 2016 &amp; Exchange 2019 getestet.</pre>



<p class="wp-block-paragraph">Heute möchte ich euch ein Skript vorstellen mit dem ihr die IP-Adressen aus allen vorhandenen Empfangsconnectoren als .csv exportieren könnt.<br>Das Skript kann auch außerhalb der Exchange Powershell (Management Shell) ausgeführt werden, da das benötigte SnapIn importiert wird.</p>



<p class="wp-block-paragraph">Das Skript erstellt für jeden Connector eine .csv-Datei in der alle eingetragenen IPs geschrieben werden.<br>Die .csv-Dateien werden unter C:\temp\ abgelegt.<br>Jede .csv-Datei wird wie folgt benannt:</p>



<figure class="wp-block-table is-style-regular"><table><thead><tr><th>Pfad</th><th>Connector-Name</th><th>Datei-Endung</th></tr></thead><tbody><tr><td>C:\temp\</td><td>Client_Frontend_EXCH0</td><td>.csv</td></tr></tbody></table></figure>



<p class="wp-block-paragraph">Was ist zu beachten?</p>



<ul class="wp-block-list">
<li>Das Powershell-Skript kann evtl. aufgrund von ExecutionPolicys an der Ausführung gehindert werden. (<sub>Wie ihr das für Benutzer oder Computer aufhebt, gerne in einem weiteren Artikel</sub>)</li>



<li>Der Export-Pfad ist fest definiert. Sicherstellen das der Ordner existiert. (<sub>oder im Skript umschreiben</sub>)</li>
</ul>



<pre class="wp-block-code"><code>### Script to Export Recieve Connectors as .csv
#Autor: Andreas Bowitz
#Version: 0.1

#Import Exchange Snapin
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn

#Variablen/Arrays
$Hostname = hostname
$Connectors = Get-ReceiveConnector
$ExportPath = "C:\temp\"

#Export all Recieve Connectors
foreach($Connector in $Connectors){

$Connectorshort = $Connector.Identity
$Connectorshort = $Connectorshort.Name

$Connectorshort = $Connectorshort.replace(" ","_")

#write-host $Connectorshort

$export = $ExportPath+$Connectorshort+".csv"


(Get-ReceiveConnector -Identity $Connector).RemoteIPRanges | Sort-Object | Select-Object Expression | Export-Csv $export -NoTypeInformation

}


#Clear all Variablen/Arrays
$Hostname = $null
$Connectors = $null
$ExportPath = $null
$Connector = $null
$export = $null
$Connectorshort = $null</code></pre>



<p class="wp-block-paragraph">Gerne könnt ihr das Skript auch einfach hier herunterladen:</p>



<div class="wp-block-file"><a id="wp-block-file--media-66215670-a448-4121-bed4-3a6ef8ce5895" href="https://abow.info/wp-content/uploads/2022/12/Export_IP-ReceiveConnectors.ps1">Export_IP-ReceiveConnectors</a><a href="https://abow.info/wp-content/uploads/2022/12/Export_IP-ReceiveConnectors.ps1" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-66215670-a448-4121-bed4-3a6ef8ce5895"><strong>Herunterladen</strong></a></div>



<p class="wp-block-paragraph">Bei Verbesserungsvorschlägen o.Ä. einfach melden via Kommentar.<br>Danke.</p>



<pre class="wp-block-preformatted">Wie immer berichte ich in diesem Artikel nur von meinen persönlichen Erfahrungen und Erkenntnissen/Ergebnissen.
Es handelt sich hierbei um keine offizielle Anleitung von Microsoft.
Ein nachhandeln und nutzen von Skripten geschieht auf eigene Gefahr. ;)</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://abow.info/microsoft/microsoft_exchange/exchange-export-der-ips-von-allen-empfangsconnectoren/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Exchange // Versionen + Powershell Skript</title>
		<link>https://abow.info/microsoft/microsoft_exchange/exchange-versionen/</link>
					<comments>https://abow.info/microsoft/microsoft_exchange/exchange-versionen/#respond</comments>
		
		<dc:creator><![CDATA[Andi Bow]]></dc:creator>
		<pubDate>Wed, 30 Nov 2022 16:33:53 +0000</pubDate>
				<category><![CDATA[Microsoft Exchange]]></category>
		<category><![CDATA[Microsoft Powershell]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Skript]]></category>
		<category><![CDATA[Version]]></category>
		<guid isPermaLink="false">http://abow.info/?p=49</guid>

					<description><![CDATA[In diesem Artikel findet ihr meine Auflistung von Exchange Versionen. Nach der Auflistung findet ihr mein Powershell-Skript zum auslesen der Exchange Versionen in euren Umgebungen. Produktname Veröffentlichungsdatum Buildnummer…]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">In diesem Artikel findet ihr meine Auflistung von Exchange Versionen. Nach der Auflistung findet ihr mein Powershell-Skript zum auslesen der Exchange Versionen in euren Umgebungen.</p>



<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="ProgId" content="Excel.Sheet">
<meta name="Generator" content="Microsoft Excel 15">
<link rel="File-List" href="ExchangeVersionenListabowinfo-Dateien/filelist.xml">
<style id="ExchangeVersionenList_10520_Styles">
<!--table
	{mso-displayed-decimal-separator:"\,";
	mso-displayed-thousand-separator:"\.";}
.xl6510520
	{padding-top:1px;
	padding-right:1px;
	padding-left:1px;
	mso-ignore:padding;
	color:#171717;
	font-size:11.0pt;
	font-weight:400;
	font-style:normal;
	text-decoration:none;
	font-family:"Segoe UI", sans-serif;
	mso-font-charset:0;
	mso-number-format:General;
	text-align:center;
	vertical-align:top;
	mso-background-source:auto;
	mso-pattern:auto;
	white-space:normal;}
.xl6610520
	{padding-top:1px;
	padding-right:1px;
	padding-left:1px;
	mso-ignore:padding;
	color:#171717;
	font-size:11.0pt;
	font-weight:400;
	font-style:normal;
	text-decoration:none;
	font-family:"Segoe UI", sans-serif;
	mso-font-charset:0;
	mso-number-format:"Medium Date";
	text-align:left;
	vertical-align:top;
	mso-background-source:auto;
	mso-pattern:auto;
	white-space:normal;}
.xl6710520
	{padding-top:1px;
	padding-right:1px;
	padding-left:1px;
	mso-ignore:padding;
	color:#171717;
	font-size:11.0pt;
	font-weight:400;
	font-style:normal;
	text-decoration:none;
	font-family:"Segoe UI", sans-serif;
	mso-font-charset:0;
	mso-number-format:General;
	text-align:left;
	vertical-align:top;
	mso-background-source:auto;
	mso-pattern:auto;
	white-space:normal;}
.xl6810520
	{padding-top:1px;
	padding-right:1px;
	padding-left:1px;
	mso-ignore:padding;
	color:#171717;
	font-size:11.0pt;
	font-weight:400;
	font-style:normal;
	text-decoration:none;
	font-family:"Segoe UI", sans-serif;
	mso-font-charset:0;
	mso-number-format:"Short Date";
	text-align:left;
	vertical-align:top;
	mso-background-source:auto;
	mso-pattern:auto;
	white-space:normal;}
-->
</style>



<!--[if !excel]>&nbsp;&nbsp;<![endif]-->
<!--Die folgenden Informationen wurden durch den Web-Formular-Assistenten von
Microsoft Excel erstellt.-->
<!--Falls das gleiche Element mit Excel veröffentlicht wird, werden alle
Informationen zwischen den DIV-Etiketten ersetzt.-->
<!----------------------------->
<!--START OF OUTPUT FROM EXCEL PUBLISH AS WEB PAGE WIZARD -->
<!----------------------------->

<div id="ExchangeVersionenList_10520" align="center" x:publishsource="Excel">

<table border="0" cellpadding="0" cellspacing="0" width="1469" class="xl6553510520" style="border-collapse:collapse;table-layout:fixed;width:1103pt">
 <colgroup><col class="xl6553510520" width="461" style="mso-width-source:userset;mso-width-alt:
 16859;width:346pt">
 <col class="xl6553510520" width="198" style="mso-width-source:userset;mso-width-alt:
 7241;width:149pt">
 <col class="xl6553510520" width="136" style="mso-width-source:userset;mso-width-alt:
 4973;width:102pt">
 <col class="xl6553510520" width="152" style="mso-width-source:userset;mso-width-alt:
 5558;width:114pt">
 <col class="xl6553510520" width="9" style="mso-width-source:userset;mso-width-alt:
 329;width:7pt">
 <col class="xl6553510520" width="29" style="mso-width-source:userset;mso-width-alt:
 1060;width:22pt">
 <col class="xl6553510520" width="80" span="2" style="width:60pt">
 <col class="xl6553510520" width="244" style="mso-width-source:userset;mso-width-alt:
 8923;width:183pt">
 <col class="xl6553510520" width="80" style="width:60pt">
 </colgroup><tbody><tr height="22" style="height:16.5pt">
  <td rowspan="2" height="44" class="xl6710520" width="461" style="height:33.0pt;
  width:346pt">Produktname</td>
  <td rowspan="2" class="xl6710520" width="198" style="width:149pt">Veröffentlichungsdatum</td>
  <td class="xl6510520" width="136" style="width:102pt">Buildnummer</td>
  <td class="xl6510520" width="152" style="width:114pt">Buildnummer</td>

 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6510520" width="136" style="height:16.5pt;width:102pt">(kurzes
  Format)</td>
  <td class="xl6510520" width="152" style="width:114pt">(langes Format)</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU12 Nov22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Nov 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.1118.20</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.1118.020</td>
 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU12 Oct22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Okt 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.1118.15</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.1118.015</td>
 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU12 Aug22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 9. August 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.1118.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.1118.012</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU12 Mrz22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 10. Mai 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.1118.9</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.1118.009</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU12 (2022H1)</td>
  <td class="xl6610520" width="198" style="width:149pt">20. Apr 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.1118.7</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.1118.007</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU11 Nov22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Nov 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.36</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.036</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU11 Oct22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Okt 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.30</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.030</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU11 Aug22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 9. August 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.29</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.029</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU11 Mai22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 10. Mai 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.26</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.026</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU11 Mar22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Mrz 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.22</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.022</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU11 Jan22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Jan 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.15</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.015</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU11 Nov21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Nov 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.14</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.014</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU11 Oct21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Okt 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.9</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.009</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  KU11</td>
  <td class="xl6610520" width="198" style="width:149pt">28. Sep 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.986.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0986.005</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU10 Jan22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Mrz 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.922.27</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0922.027</td>






 </tr>
 <tr height="44" style="height:33.0pt">
  <td height="44" class="xl6553510520" style="height:33.0pt">Exchange Server 2019
  CU10 Jan22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Jan 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.922.20</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0922.020</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU10 Nov21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Nov 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.922.19</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0922.019</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU10 Oct21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Okt 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.922.14</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0922.014</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU10 Jul21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Jul 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.922.13</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0922.013</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU10</td>
  <td class="xl6610520" width="198" style="width:149pt">29. Jun 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.922.7</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0922.007</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU9 Jul21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Jul 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.858.15</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0858.015</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU9 Mai21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Mai 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.858.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0858.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU9 Apr21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Apr 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.858.10</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0858.010</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  KU9</td>
  <td class="xl6610520" width="198" style="width:149pt">16. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.858.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0858.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU8 Mai21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Mai 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.792.15</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0792.015</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU8 Apr21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Apr 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.792.13</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0792.013</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU8 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.792.10</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0792.010</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU8</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Dez 20</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.792.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0792.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU7 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.721.13</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0721.013</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU7</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Sep 20</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.721.2</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0721.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU6 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.659.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0659.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU6</td>
  <td class="xl6610520" width="198" style="width:149pt">16. Jun 20</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.659.4</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0659.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU5 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.595.8</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0595.008</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU5</td>
  <td class="xl6610520" width="198" style="width:149pt">17. Mrz 20</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.595.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0595.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU4 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.529.13</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0529.013</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU4</td>
  <td class="xl6610520" width="198" style="width:149pt">17. Dez 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.529.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0529.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU3 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.464.15</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0464.015</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU3</td>
  <td class="xl6610520" width="198" style="width:149pt">17. Sep 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.464.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0464.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU2 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.397.11</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0397.011</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU2</td>
  <td class="xl6610520" width="198" style="width:149pt">18. Jun 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.397.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0397.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU1 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.330.11</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0330.011</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  CU1</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Feb 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.330.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0330.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  RTM Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.221.18</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0221.018</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  RTM</td>
  <td class="xl6610520" width="198" style="width:149pt">22. Okt 18</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.221.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0221.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2019
  Vorschau</td>
  <td class="xl6610520" width="198" style="width:149pt">24. Jul 18</td>
  <td class="xl6510520" width="136" style="width:102pt">15.2.196.0</td>
  <td class="xl6510520" width="152" style="width:114pt">15.02.0196.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU23 Nov22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Nov 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2507.16</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2507.016</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU23 Oct22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Okt 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2507.13</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2507.013</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU23 Aug22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 9. August 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2507.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2507.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU23 Mai22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 10. Mai 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2507.9</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2507.009</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU23 (2022H1)</td>
  <td class="xl6610520" width="198" style="width:149pt">20. Apr 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2507.6</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2507.006</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU22 Nov22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Nov 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.37</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.037</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU22 Oct22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Okt 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.32</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.032</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU22 Aug22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 9. August 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.31</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.031</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU22 Mai22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 10. Mai 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.28</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.028</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU22 Jan22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Mrz 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.24</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.024</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU22 Jan22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Jan 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.18</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.018</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU22 Nov21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Nov 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.17</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.017</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU22 Oct21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Okt 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  KU22</td>
  <td class="xl6610520" width="198" style="width:149pt">28. Sep 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2375.7</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2375.007</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU21 Mar22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Mrz 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2308.27</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2308.027</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU21 Jan22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Jan 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2308.21</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2308.021</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU21 Nov21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Nov 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2308.20</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2308.020</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU21 Oct21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Okt 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2308.15</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2308.015</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU21 Jul21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Jul 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2308.14</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2308.014</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU21</td>
  <td class="xl6610520" width="198" style="width:149pt">29. Jun 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2308.8</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2308.008</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU20 Jul21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Jul 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2242.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2242.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU20 Mai21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Mai 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2242.10</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2242.010</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU20 Apr21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Apr 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2242.8</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2242.008</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  KU20</td>
  <td class="xl6610520" width="198" style="width:149pt">16. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2242.4</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2242.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU19 Mai21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Mai 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2176.14</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2176.014</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU19 Apr21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Apr 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2176.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2176.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU19 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2176.9</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2176.009</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU19</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Dez 20</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2176.2</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2176.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU18 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2106.13</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2106.013</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU18</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Sep 20</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2106.2</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2106.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU17 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2044.13</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2044.013</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU17</td>
  <td class="xl6610520" width="198" style="width:149pt">16. Jun 20</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.2044.4</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.2044.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU16 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1979.8</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1979.008</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU16</td>
  <td class="xl6610520" width="198" style="width:149pt">17. Mrz 20</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1979.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1979.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU15 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1913.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1913.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU15</td>
  <td class="xl6610520" width="198" style="width:149pt">17. Dez 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1913.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1913.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU14 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1847.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1847.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU14</td>
  <td class="xl6610520" width="198" style="width:149pt">17. Sep 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1847.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1847.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU13 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1779.8</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1779.008</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU13</td>
  <td class="xl6610520" width="198" style="width:149pt">18. Jun 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1779.2</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1779.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU12 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1713.10</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1713.010</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU12</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Feb 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1713.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1713.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU11 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1591.18</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1591.018</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU11</td>
  <td class="xl6610520" width="198" style="width:149pt">16. Okt 18</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1591.10</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1591.010</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU10 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1531.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1531.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU10</td>
  <td class="xl6610520" width="198" style="width:149pt">19. Jun 18</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1531.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1531.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU9 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1466.16</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1466.016</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU9</td>
  <td class="xl6610520" width="198" style="width:149pt">20. Mrz 18</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1466.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1466.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU8 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1415.10</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1415.010</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU8</td>
  <td class="xl6610520" width="198" style="width:149pt">19. Dez 17</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1415.2</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1415.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU7</td>
  <td class="xl6610520" width="198" style="width:149pt">19. Sep 17</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1261.35</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1261.035</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU6</td>
  <td class="xl6610520" width="198" style="width:149pt">27. Jun 17</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.1034.26</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.1034.026</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU5</td>
  <td class="xl6610520" width="198" style="width:149pt">21. Mrz 17</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.845.34</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.0845.034</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU4</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Dez 16</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.669.32</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.0669.032</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU3</td>
  <td class="xl6610520" width="198" style="width:149pt">20. Sep 16</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.544.27</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.0544.027</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU2</td>
  <td class="xl6610520" width="198" style="width:149pt">21. Jun 16</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.466.34</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.0466.034</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  CU1</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Mrz 16</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.396.30</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.0396.030</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  RTM</td>
  <td class="xl6610520" width="198" style="width:149pt">01. Okt 15</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.225.42</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.0225.042</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2016
  Vorschau</td>
  <td class="xl6610520" width="198" style="width:149pt">22. Jul 15</td>
  <td class="xl6510520" width="136" style="width:102pt">15.1.225.16</td>
  <td class="xl6510520" width="152" style="width:114pt">15.01.0225.016</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Nov22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Nov 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.44</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.044</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Oct22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Okt 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.42</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.042</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Aug22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 9. August 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.40</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.040</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Mai22SU</td>
  <td class="xl6710520" width="198" style="width:149pt">Dienstag, 10. Mai 2022</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.36</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.036</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Mar22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Mrz 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.33</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.033</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Jan22SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Jan 22</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.28</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.028</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Nov21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Nov 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.26</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.026</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Oct21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Okt 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.24</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.024</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Jul21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Jul 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.23</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.023</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Mai21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Mai 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.18</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.018</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Apr21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Apr 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.15</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.015</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU23</td>
  <td class="xl6610520" width="198" style="width:149pt">18. Jun 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1497.2</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1497.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU22 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1473.6</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1473.006</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU22</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Feb 19</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1473.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1473.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU21 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1395.12</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1395.012</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU21</td>
  <td class="xl6610520" width="198" style="width:149pt">19. Jun 18</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1395.4</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1395.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU20</td>
  <td class="xl6610520" width="198" style="width:149pt">20. Mrz 18</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1367.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1367.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU19</td>
  <td class="xl6610520" width="198" style="width:149pt">19. Dez 17</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1365.1</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1365.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU18</td>
  <td class="xl6610520" width="198" style="width:149pt">19. Sep 17</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1347.2</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1347.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU17</td>
  <td class="xl6610520" width="198" style="width:149pt">27. Jun 17</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1320.4</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1320.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU16</td>
  <td class="xl6610520" width="198" style="width:149pt">21. Mrz 17</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1293.2</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1293.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU15</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Dez 16</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1263.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1263.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU14</td>
  <td class="xl6610520" width="198" style="width:149pt">20. Sep 16</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1236.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1236.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU13</td>
  <td class="xl6610520" width="198" style="width:149pt">21. Jun 16</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1210.3</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1210.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU12</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Mrz 16</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1178.4</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1178.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU11</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Dez 15</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1156.6</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1156.006</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU10</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Sep 15</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1130.7</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1130.007</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU9</td>
  <td class="xl6610520" width="198" style="width:149pt">17. Jun 15</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1104.5</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1104.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU8</td>
  <td class="xl6810520" width="198" style="width:149pt">17.03.2015</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1076.9</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1076.009</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU7</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Dez 14</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.1044.25</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.1044.025</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU6</td>
  <td class="xl6810520" width="198" style="width:149pt">26.08.2014</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.995.29</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.0995.029</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU5</td>
  <td class="xl6810520" width="198" style="width:149pt">27.05.2014</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.913.22</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.0913.022</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  SP1 Mrz21SU</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.847.64</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.0847.064</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  SP1</td>
  <td class="xl6610520" width="198" style="width:149pt">25. Feb 14</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.847.32</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.0847.032</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU3</td>
  <td class="xl6810520" width="198" style="width:149pt">25.11.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.775.38</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.0775.038</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU2</td>
  <td class="xl6810520" width="198" style="width:149pt">09.07.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.712.24</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.0712.024</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  CU1</td>
  <td class="xl6810520" width="198" style="width:149pt">02.04.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.620.29</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.0620.029</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2013
  RTM</td>
  <td class="xl6610520" width="198" style="width:149pt">03. Dez 12</td>
  <td class="xl6510520" width="136" style="width:102pt">15.0.516.32</td>
  <td class="xl6510520" width="152" style="width:114pt">15.00.0516.032</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 32 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">02. Mrz 21</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.513.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0513.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 31 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">01. Dez 20</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.509.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0509.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 30 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Feb 20</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.496.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0496.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 29 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Jul 19</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.468.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0468.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 28 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">07. Jun 19</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.461.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0461.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 27 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Apr 19</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.452.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0452.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 26 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Feb 19</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.442.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0442.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 25 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">08. Jan 19</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.435.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0435.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 24 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">05. Sep 18</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.419.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0419.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 23 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Aug 18</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.417.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0417.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 22 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">19. Jun 18</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.411.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0411.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 21 fü
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">07. Mai 18</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.399.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0399.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 20 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">05. Mrz 18</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.389.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0389.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 19 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">19. Dez 17</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.382.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0382.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 18 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">11. Jul 17</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.361.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0361.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 17 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">21. Mrz 17</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.352.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0352.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 16 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">13. Dez 16</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.336.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0336.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 15 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">20. Sep 16</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.319.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0319.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 14 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">21. Jun 16</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.301.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0301.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 13 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Mrz 16</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.294.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0294.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 12 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Dez 15</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.279.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0279.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 11 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">15. Sep 15</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.266.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0266.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 10 für
  Exchange Server 2010 SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">17. Jun 15</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.248.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0248.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 9 für
  Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">17.03.2015</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.235.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0235.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 8 Version
  2 für Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">12.12.2014</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.224.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0224.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 8,
  Version 1, für Exchange Server 2010 SP3 (zurückgerufen)</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Dez 14</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.224.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0224.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 7 für
  Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">26.08.2014</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.210.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0210.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 6 für
  Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">27.05.2014</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.195.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0195.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 5 für
  Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">24.02.2014</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.181.6</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0181.006</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 4 für
  Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">09.12.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.174.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0174.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 3 für
  Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">25.11.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.169.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0169.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 2 für
  Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">08.08.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.158.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0158.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 1 für
  Exchange Server 2010 SP3</td>
  <td class="xl6810520" width="198" style="width:149pt">29.05.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.146.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0146.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2010
  SP3</td>
  <td class="xl6610520" width="198" style="width:149pt">12. Feb 13</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.123.4</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0123.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 8 für
  Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">09.12.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.390.3</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0390.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 7 für
  Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">03.08.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.375.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0375.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 6 für
  Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">12.02.2013</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.342.3</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0342.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 5,
  Version 2, für Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">10.12.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.328.10</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0328.010</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 5 für
  Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">13.11.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.3.328.5</td>
  <td class="xl6510520" width="152" style="width:114pt">14.03.0328.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 4,
  Version 2, für Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">09.10.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.318.4</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0318.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 4 für
  Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">13.08.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.318.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0318.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 3 für
  Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">29.05.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.309.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0309.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 2 für
  Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">16.04.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.298.4</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0298.004</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 1 für
  Exchange Server 2010 SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">13.02.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.283.3</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0283.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2010
  SP2</td>
  <td class="xl6810520" width="198" style="width:149pt">04.12.2011</td>
  <td class="xl6510520" width="136" style="width:102pt">14.2.247.5</td>
  <td class="xl6510520" width="152" style="width:114pt">14.02.0247.005</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 8 für
  Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">10.12.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.438.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0438.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 7,
  Version 3, für Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">13.11.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.421.3</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0421.003</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 7,
  Version 2, für Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">10.10.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.421.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0421.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 7 für
  Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">08.08.2012</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.421.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0421.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 6 für
  Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">27.10.2011</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.355.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0355.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 5 für
  Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">23.08.2011</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.339.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0339.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 4 für
  Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">27.07.2011</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.323.6</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0323.006</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 3 für
  Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">06.04.2011</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.289.7</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0289.007</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 2 für
  Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">09.12.2010</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.270.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0270.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 1 für
  Exchange Server 2010 SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">04.10.2010</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.255.2</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0255.002</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2010
  SP1</td>
  <td class="xl6810520" width="198" style="width:149pt">23.08.2010</td>
  <td class="xl6510520" width="136" style="width:102pt">14.1.218.15</td>
  <td class="xl6510520" width="152" style="width:114pt">14.01.0218.015</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 5 für
  Exchange Server 2010</td>
  <td class="xl6810520" width="198" style="width:149pt">13.12.2010</td>
  <td class="xl6510520" width="136" style="width:102pt">14.0.726.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.00.0726.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 4 für
  Exchange Server 2010</td>
  <td class="xl6810520" width="198" style="width:149pt">10.06.2010</td>
  <td class="xl6510520" width="136" style="width:102pt">14.0.702.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.00.0702.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 3 für
  Exchange Server 2010</td>
  <td class="xl6810520" width="198" style="width:149pt">13.04.2010</td>
  <td class="xl6510520" width="136" style="width:102pt">14.0.694.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.00.0694.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 2 für
  Exchange Server 2010</td>
  <td class="xl6810520" width="198" style="width:149pt">04.03.2010</td>
  <td class="xl6510520" width="136" style="width:102pt">14.0.689.0</td>
  <td class="xl6510520" width="152" style="width:114pt">14.00.0689.000</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Updaterollup 1 für
  Exchange Server 2010</td>
  <td class="xl6810520" width="198" style="width:149pt">09.12.2009</td>
  <td class="xl6510520" width="136" style="width:102pt">14.0.682.1</td>
  <td class="xl6510520" width="152" style="width:114pt">14.00.0682.001</td>






 </tr>
 <tr height="22" style="height:16.5pt">
  <td height="22" class="xl6553510520" style="height:16.5pt">Exchange Server 2010
  RTM</td>
  <td class="xl6610520" width="198" style="width:149pt">09. Nov 09</td>
  <td class="xl6510520" width="136" style="width:102pt">14.0.639.21</td>
  <td class="xl6510520" width="152" style="width:114pt">14.00.0639.021</td>






 </tr>
 <!--[if supportMisalignedColumns]-->
 <tr height="0" style="display:none">
  <td width="461" style="width:346pt"></td>
  <td width="198" style="width:149pt"></td>
  <td width="136" style="width:102pt"></td>
  <td width="152" style="width:114pt"></td>
  <td width="9" style="width:7pt"></td>
  <td width="29" style="width:22pt"></td>
  <td width="80" style="width:60pt"></td>
  <td width="80" style="width:60pt"></td>
  <td width="244" style="width:183pt"></td>
  <td width="80" style="width:60pt"></td>
 </tr>
 <!--[endif]-->
</tbody></table>

</div>


<!----------------------------->
<!--END OF OUTPUT FROM EXCEL PUBLISH AS WEB PAGE WIZARD-->
<!----------------------------->



<p class="wp-block-paragraph">Natürlich gibt es auch einen offiziellen Microsoft Artikel in dem alle Versionen aufgelistet werden:</p>



<p class="wp-block-paragraph"><a href="https://docs.microsoft.com/en-us/exchange/new-features/build-numbers-and-release-dates?view=exchserver-2019">https://docs.microsoft.com/en-us/exchange/new-features/build-numbers-and-release-dates?view=exchserver-2019</a></p>



<p class="wp-block-paragraph">Mein Powershell-Skript deckt aktuell (01.12.2022) alle Microsoft Exchange Versionen von Exchange Server 2010 RTM bis Exchange Server 2019 CU12 Nov22SU ab.</p>



<p class="has-vivid-red-color has-text-color wp-block-paragraph">Bitte beachten, das Skript braucht für die Ausgabe einen Ordner namens &#8222;Temp&#8220; direkt im Laufwerk C:\ -&gt; &#8222;C:\temp\&#8220;. <br>Falls nicht vorhanden anlegen oder im Skript den Pfad abändern.</p>



<pre class="wp-block-code"><code>Function Get-ExchangeVersion {
&lt;#
.SYNOPSIS
    This script will get the cumulative update version for the specified exchange server.
 
.DESCRIPTION
    BuildNumbers link:
    https:&#47;&#47;docs.microsoft.com/en-us/exchange/new-features/build-numbers-and-release-dates?view=exchserver-2019
 
 
.NOTES   
    Name: Get-ExchangeVersion
    Author: Andreas Bowitz
    Version: 1.0
    LastUpdated: 2022-Nov-15
 
 
.EXAMPLE
    Get-ExchangeServer | Get-ExchangeVersion
 
 
.EXAMPLE
    Get-ExchangeVersion -ComputerName ExchSrv01, ExchSrv02
#&gt;
 
 
    &#91;CmdletBinding()]
    param(
        &#91;Parameter(
            Mandatory = $true,
            ValueFromPipeline=$true,
            ValueFromPipelineByPropertyName=$true
            )]
 
        &#91;string&#91;]]  $ComputerName
 
    )
 
    BEGIN {
        #Creating the hash table with build numbers and cumulative updates
        $BuildToProductName = @{
			'15.2.1118.20'     =  'Exchange Server 2019 CU12 Nov22SU'
			'15.2.1118.15'     =  'Exchange Server 2019 CU12 Oct22SU'
			'15.2.1118.12'     =  'Exchange Server 2019 CU12 Aug22SU'
			'15.2.1118.9'     =  'Exchange Server 2019 CU12 Mrz22SU'
			'15.2.1118.7'     =  'Exchange Server 2019 CU12 (2022H1)'
			'15.2.986.36'     =  'Exchange Server 2019 CU11 Nov22SU'
			'15.2.986.30'     =  'Exchange Server 2019 CU11 Oct22SU'
			'15.2.986.29'     =  'Exchange Server 2019 CU11 Aug22SU'
			'15.2.986.26'     =  'Exchange Server 2019 CU11 Mai22SU'
			'15.2.986.22'     =  'Exchange Server 2019 CU11 Mar22SU'
			'15.2.986.15'     =  'Exchange Server 2019 CU11 Jan22SU'
			'15.2.986.14'     =  'Exchange Server 2019 CU11 Nov21SU'
			'15.2.986.9'     =  'Exchange Server 2019 CU11 Oct21SU'
			'15.2.986.5'     =  'Exchange Server 2019 KU11'
			'15.2.922.27'     =  'Exchange Server 2019 CU10 Jan22SU'
			'15.2.922.20'     =  'Exchange Server 2019 CU10 Jan22SU'
			'15.2.922.19'     =  'Exchange Server 2019 CU10 Nov21SU'
			'15.2.922.14'     =  'Exchange Server 2019 CU10 Oct21SU'
			'15.2.922.13'     =  'Exchange Server 2019 CU10 Jul21SU'
			'15.2.922.7'     =  'Exchange Server 2019 CU10'
			'15.2.858.15'     =  'Exchange Server 2019 CU9 Jul21SU'
			'15.2.858.12'     =  'Exchange Server 2019 CU9 Mai21SU'
			'15.2.858.10'     =  'Exchange Server 2019 CU9 Apr21SU'
			'15.2.858.5'     =  'Exchange Server 2019 KU9'
			'15.2.792.15'     =  'Exchange Server 2019 CU8 Mai21SU'
			'15.2.792.13'     =  'Exchange Server 2019 CU8 Apr21SU'
			'15.2.792.10'     =  'Exchange Server 2019 CU8 Mrz21SU'
			'15.2.792.3'     =  'Exchange Server 2019 CU8'
			'15.2.721.13'     =  'Exchange Server 2019 CU7 Mrz21SU'
			'15.2.721.2'     =  'Exchange Server 2019 CU7'
			'15.2.659.12'     =  'Exchange Server 2019 CU6 Mrz21SU'
			'15.2.659.4'     =  'Exchange Server 2019 CU6'
			'15.2.595.8'     =  'Exchange Server 2019 CU5 Mrz21SU'
			'15.2.595.3'     =  'Exchange Server 2019 CU5'
			'15.2.529.13'     =  'Exchange Server 2019 CU4 Mrz21SU'
			'15.2.529.5'     =  'Exchange Server 2019 CU4'
			'15.2.464.15'     =  'Exchange Server 2019 CU3 Mrz21SU'
			'15.2.464.5'     =  'Exchange Server 2019 CU3'
			'15.2.397.11'     =  'Exchange Server 2019 CU2 Mrz21SU'
			'15.2.397.3'     =  'Exchange Server 2019 CU2'
			'15.2.330.11'     =  'Exchange Server 2019 CU1 Mrz21SU'
			'15.2.330.5'     =  'Exchange Server 2019 CU1'
			'15.2.221.18'     =  'Exchange Server 2019 RTM Mrz21SU'
			'15.2.221.12'     =  'Exchange Server 2019 RTM'
			'15.2.196.0'     =  'Exchange Server 2019 Vorschau'
			'15.1.2507.16'     =  'Exchange Server 2016 CU23 Nov22SU'
			'15.1.2507.13'     =  'Exchange Server 2016 CU23 Oct22SU'
			'15.1.2507.12'     =  'Exchange Server 2016 CU23 Aug22SU'
			'15.1.2507.9'     =  'Exchange Server 2016 CU23 Mai22SU'
			'15.1.2507.6'     =  'Exchange Server 2016 CU23 (2022H1)'
			'15.1.2375.37'     =  'Exchange Server 2016 CU22 Nov22SU'
			'15.1.2375.32'     =  'Exchange Server 2016 CU22 Oct22SU'
			'15.1.2375.31'     =  'Exchange Server 2016 CU22 Aug22SU'
			'15.1.2375.28'     =  'Exchange Server 2016 CU22 Mai22SU'
			'15.1.2375.24'     =  'Exchange Server 2016 CU22 Jan22SU'
			'15.1.2375.18'     =  'Exchange Server 2016 CU22 Jan22SU'
			'15.1.2375.17'     =  'Exchange Server 2016 CU22 Nov21SU'
			'15.1.2375.12'     =  'Exchange Server 2016 CU22 Oct21SU'
			'15.1.2375.7'     =  'Exchange Server 2016 KU22'
			'15.1.2308.27'     =  'Exchange Server 2016 CU21 Mar22SU'
			'15.1.2308.21'     =  'Exchange Server 2016 CU21 Jan22SU'
			'15.1.2308.20'     =  'Exchange Server 2016 CU21 Nov21SU'
			'15.1.2308.15'     =  'Exchange Server 2016 CU21 Oct21SU'
			'15.1.2308.14'     =  'Exchange Server 2016 CU21 Jul21SU'
			'15.1.2308.8'     =  'Exchange Server 2016 CU21'
			'15.1.2242.12'     =  'Exchange Server 2016 CU20 Jul21SU'
			'15.1.2242.10'     =  'Exchange Server 2016 CU20 Mai21SU'
			'15.1.2242.8'     =  'Exchange Server 2016 CU20 Apr21SU'
			'15.1.2242.4'     =  'Exchange Server 2016 KU20'
			'15.1.2176.14'     =  'Exchange Server 2016 CU19 Mai21SU'
			'15.1.2176.12'     =  'Exchange Server 2016 CU19 Apr21SU'
			'15.1.2176.9'     =  'Exchange Server 2016 CU19 Mrz21SU'
			'15.1.2176.2'     =  'Exchange Server 2016 CU19'
			'15.1.2106.13'     =  'Exchange Server 2016 CU18 Mrz21SU'
			'15.1.2106.2'     =  'Exchange Server 2016 CU18'
			'15.1.2044.13'     =  'Exchange Server 2016 CU17 Mrz21SU'
			'15.1.2044.4'     =  'Exchange Server 2016 CU17'
			'15.1.1979.8'     =  'Exchange Server 2016 CU16 Mrz21SU'
			'15.1.1979.3'     =  'Exchange Server 2016 CU16'
			'15.1.1913.12'     =  'Exchange Server 2016 CU15 Mrz21SU'
			'15.1.1913.5'     =  'Exchange Server 2016 CU15'
			'15.1.1847.12'     =  'Exchange Server 2016 CU14 Mrz21SU'
			'15.1.1847.3'     =  'Exchange Server 2016 CU14'
			'15.1.1779.8'     =  'Exchange Server 2016 CU13 Mrz21SU'
			'15.1.1779.2'     =  'Exchange Server 2016 CU13'
			'15.1.1713.10'     =  'Exchange Server 2016 CU12 Mrz21SU'
			'15.1.1713.5'     =  'Exchange Server 2016 CU12'
			'15.1.1591.18'     =  'Exchange Server 2016 CU11 Mrz21SU'
			'15.1.1591.10'     =  'Exchange Server 2016 CU11'
			'15.1.1531.12'     =  'Exchange Server 2016 CU10 Mrz21SU'
			'15.1.1531.3'     =  'Exchange Server 2016 CU10'
			'15.1.1466.16'     =  'Exchange Server 2016 CU9 Mrz21SU'
			'15.1.1466.3'     =  'Exchange Server 2016 CU9'
			'15.1.1415.10'     =  'Exchange Server 2016 CU8 Mrz21SU'
			'15.1.1415.2'     =  'Exchange Server 2016 CU8'
			'15.1.1261.35'     =  'Exchange Server 2016 CU7'
			'15.1.1034.26'     =  'Exchange Server 2016 CU6'
			'15.1.845.34'     =  'Exchange Server 2016 CU5'
			'15.1.669.32'     =  'Exchange Server 2016 CU4'
			'15.1.544.27'     =  'Exchange Server 2016 CU3'
			'15.1.466.34'     =  'Exchange Server 2016 CU2'
			'15.1.396.30'     =  'Exchange Server 2016 CU1'
			'15.1.225.42'     =  'Exchange Server 2016 RTM'
			'15.1.225.16'     =  'Exchange Server 2016 Vorschau'
			'15.0.1497.44'     =  'Exchange Server 2013 CU23 Nov22SU'
			'15.0.1497.42'     =  'Exchange Server 2013 CU23 Oct22SU'
			'15.0.1497.40'     =  'Exchange Server 2013 CU23 Aug22SU'
			'15.0.1497.36'     =  'Exchange Server 2013 CU23 Mai22SU'
			'15.0.1497.33'     =  'Exchange Server 2013 CU23 Mar22SU'
			'15.0.1497.28'     =  'Exchange Server 2013 CU23 Jan22SU'
			'15.0.1497.26'     =  'Exchange Server 2013 CU23 Nov21SU'
			'15.0.1497.24'     =  'Exchange Server 2013 CU23 Oct21SU'
			'15.0.1497.23'     =  'Exchange Server 2013 CU23 Jul21SU'
			'15.0.1497.18'     =  'Exchange Server 2013 CU23 Mai21SU'
			'15.0.1497.15'     =  'Exchange Server 2013 CU23 Apr21SU'
			'15.0.1497.12'     =  'Exchange Server 2013 CU23 Mrz21SU'
			'15.0.1497.2'     =  'Exchange Server 2013 CU23'
			'15.0.1473.6'     =  'Exchange Server 2013 CU22 Mrz21SU'
			'15.0.1473.3'     =  'Exchange Server 2013 CU22'
			'15.0.1395.12'     =  'Exchange Server 2013 CU21 Mrz21SU'
			'15.0.1395.4'     =  'Exchange Server 2013 CU21'
			'15.0.1367.3'     =  'Exchange Server 2013 CU20'
			'15.0.1365.1'     =  'Exchange Server 2013 CU19'
			'15.0.1347.2'     =  'Exchange Server 2013 CU18'
			'15.0.1320.4'     =  'Exchange Server 2013 CU17'
			'15.0.1293.2'     =  'Exchange Server 2013 CU16'
			'15.0.1263.5'     =  'Exchange Server 2013 CU15'
			'15.0.1236.3'     =  'Exchange Server 2013 CU14'
			'15.0.1210.3'     =  'Exchange Server 2013 CU13'
			'15.0.1178.4'     =  'Exchange Server 2013 CU12'
			'15.0.1156.6'     =  'Exchange Server 2013 CU11'
			'15.0.1130.7'     =  'Exchange Server 2013 CU10'
			'15.0.1104.5'     =  'Exchange Server 2013 CU9'
			'15.0.1076.9'     =  'Exchange Server 2013 CU8'
			'15.0.1044.25'     =  'Exchange Server 2013 CU7'
			'15.0.995.29'     =  'Exchange Server 2013 CU6'
			'15.0.913.22'     =  'Exchange Server 2013 CU5'
			'15.0.847.64'     =  'Exchange Server 2013 SP1 Mrz21SU'
			'15.0.847.32'     =  'Exchange Server 2013 SP1'
			'15.0.775.38'     =  'Exchange Server 2013 CU3'
			'15.0.712.24'     =  'Exchange Server 2013 CU2'
			'15.0.620.29'     =  'Exchange Server 2013 CU1'
			'15.0.516.32'     =  'Exchange Server 2013 RTM'
			'14.3.513.0'     =  'Updaterollup 32 für Exchange Server 2010 SP3'
			'14.3.509.0'     =  'Updaterollup 31 für Exchange Server 2010 SP3'
			'14.3.496.0'     =  'Updaterollup 30 für Exchange Server 2010 SP3'
			'14.3.468.0'     =  'Updaterollup 29 für Exchange Server 2010 SP3'
			'14.3.461.1'     =  'Updaterollup 28 für Exchange Server 2010 SP3'
			'14.3.452.0'     =  'Updaterollup 27 für Exchange Server 2010 SP3'
			'14.3.442.0'     =  'Updaterollup 26 für Exchange Server 2010 SP3'
			'14.3.435.0'     =  'Updaterollup 25 für Exchange Server 2010 SP3'
			'14.3.419.0'     =  'Updaterollup 24 für Exchange Server 2010 SP3'
			'14.3.417.1'     =  'Updaterollup 23 für Exchange Server 2010 SP3'
			'14.3.411.0'     =  'Updaterollup 22 für Exchange Server 2010 SP3'
			'14.3.399.2'     =  'Updaterollup 21 fü Exchange Server 2010 SP3'
			'14.3.389.1'     =  'Updaterollup 20 für Exchange Server 2010 SP3'
			'14.3.382.0'     =  'Updaterollup 19 für Exchange Server 2010 SP3'
			'14.3.361.1'     =  'Updaterollup 18 für Exchange Server 2010 SP3'
			'14.3.352.0'     =  'Updaterollup 17 für Exchange Server 2010 SP3'
			'14.3.336.0'     =  'Updaterollup 16 für Exchange Server 2010 SP3'
			'14.3.319.2'     =  'Updaterollup 15 für Exchange Server 2010 SP3'
			'14.3.301.0'     =  'Updaterollup 14 für Exchange Server 2010 SP3'
			'14.3.294.0'     =  'Updaterollup 13 für Exchange Server 2010 SP3'
			'14.3.279.2'     =  'Updaterollup 12 für Exchange Server 2010 SP3'
			'14.3.266.2'     =  'Updaterollup 11 für Exchange Server 2010 SP3'
			'14.3.248.2'     =  'Updaterollup 10 für Exchange Server 2010 SP3'
			'14.3.235.1'     =  'Updaterollup 9 für Exchange Server 2010 SP3'
			'14.3.224.2'     =  'Updaterollup 8 Version 2 für Exchange Server 2010 SP3'
			'14.3.224.1'     =  'Updaterollup 8, Version 1, für Exchange Server 2010 SP3 (zurückgerufen)'
			'14.3.210.2'     =  'Updaterollup 7 für Exchange Server 2010 SP3'
			'14.3.195.1'     =  'Updaterollup 6 für Exchange Server 2010 SP3'
			'14.3.181.6'     =  'Updaterollup 5 für Exchange Server 2010 SP3'
			'14.3.174.1'     =  'Updaterollup 4 für Exchange Server 2010 SP3'
			'14.3.169.1'     =  'Updaterollup 3 für Exchange Server 2010 SP3'
			'14.3.158.1'     =  'Updaterollup 2 für Exchange Server 2010 SP3'
			'14.3.146.0'     =  'Updaterollup 1 für Exchange Server 2010 SP3'
			'14.3.123.4'     =  'Exchange Server 2010 SP3'
			'14.2.390.3'     =  'Updaterollup 8 für Exchange Server 2010 SP2'
			'14.2.375.0'     =  'Updaterollup 7 für Exchange Server 2010 SP2'
			'14.2.342.3'     =  'Updaterollup 6 für Exchange Server 2010 SP2'
			'14.2.328.10'     =  'Updaterollup 5, Version 2, für Exchange Server 2010 SP2'
			'14.3.328.5'     =  'Updaterollup 5 für Exchange Server 2010 SP2'
			'14.2.318.4'     =  'Updaterollup 4, Version 2, für Exchange Server 2010 SP2'
			'14.2.318.2'     =  'Updaterollup 4 für Exchange Server 2010 SP2'
			'14.2.309.2'     =  'Updaterollup 3 für Exchange Server 2010 SP2'
			'14.2.298.4'     =  'Updaterollup 2 für Exchange Server 2010 SP2'
			'14.2.283.3'     =  'Updaterollup 1 für Exchange Server 2010 SP2'
			'14.2.247.5'     =  'Exchange Server 2010 SP2'
			'14.1.438.0'     =  'Updaterollup 8 für Exchange Server 2010 SP1'
			'14.1.421.3'     =  'Updaterollup 7, Version 3, für Exchange Server 2010 SP1'
			'14.1.421.2'     =  'Updaterollup 7, Version 2, für Exchange Server 2010 SP1'
			'14.1.421.0'     =  'Updaterollup 7 für Exchange Server 2010 SP1'
			'14.1.355.2'     =  'Updaterollup 6 für Exchange Server 2010 SP1'
			'14.1.339.1'     =  'Updaterollup 5 für Exchange Server 2010 SP1'
			'14.1.323.6'     =  'Updaterollup 4 für Exchange Server 2010 SP1'
			'14.1.289.7'     =  'Updaterollup 3 für Exchange Server 2010 SP1'
			'14.1.270.1'     =  'Updaterollup 2 für Exchange Server 2010 SP1'
			'14.1.255.2'     =  'Updaterollup 1 für Exchange Server 2010 SP1'
			'14.1.218.15'     =  'Exchange Server 2010 SP1'
			'14.0.726.0'     =  'Updaterollup 5 für Exchange Server 2010'
			'14.0.702.1'     =  'Updaterollup 4 für Exchange Server 2010'
			'14.0.694.0'     =  'Updaterollup 3 für Exchange Server 2010'
			'14.0.689.0'     =  'Updaterollup 2 für Exchange Server 2010'
			'14.0.682.1'     =  'Updaterollup 1 für Exchange Server 2010'
			'14.0.639.21'     =  'Exchange Server 2010 RTM'
	
        }
    }
 
    PROCESS {
        foreach ($Computer in $ComputerName) {
            try {
                $Computer = $Computer.ToUpper()
                $Server = Get-ExchangeServer $Computer -ErrorAction Stop
 
                $Version = $Server.AdminDisplayVersion
                $AdminVersion = $Server.AdminDisplayVersion
                $Version = &#91;regex]::Matches($Version, "(\d*\.\d*)").value -join '.'
 
                $Product = $BuildToProductName&#91;$Version]
 
                $Object = &#91;pscustomobject]@{
                    ComputerName = $Computer
                    Edition      = $Server.Edition
                    BuildNumber  = $Version
                    AdminVersion = $AdminVersion
                    ProductName  = $Product
                    
                     
                }
                Write-Output $Object
 
            } catch {
                Write-Error "$_.Exception.Message"
 
            } finally {
                $Server  = $null
                $Version = $null
                $AdminVersion = $null
                $Product = $null
                
 
            }
        }
    }
 

 
    END {}
}

#Display in Console and export to C:\temp\
Get-ExchangeServer | Get-ExchangeVersion | ft -AutoSize
Get-ExchangeServer | Get-ExchangeVersion | export-csv -Path C:\temp\ExchangeVersions.csv -Encoding UTF8 -NoTypeInformation -Delimiter "|"</code></pre>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="750" height="110" src="https://abow.info/wp-content/uploads/2022/11/exch0_Skript.png" alt="" class="wp-image-64" srcset="https://abow.info/wp-content/uploads/2022/11/exch0_Skript.png 750w, https://abow.info/wp-content/uploads/2022/11/exch0_Skript-300x44.png 300w" sizes="(max-width: 750px) 100vw, 750px" /><figcaption class="wp-element-caption">Ergebnis in der Exchange Admin Console</figcaption></figure>



<figure class="wp-block-image size-full"><img decoding="async" width="784" height="185" src="https://abow.info/wp-content/uploads/2022/11/exch0_SkriptTXT.png" alt="" class="wp-image-66" srcset="https://abow.info/wp-content/uploads/2022/11/exch0_SkriptTXT.png 784w, https://abow.info/wp-content/uploads/2022/11/exch0_SkriptTXT-300x71.png 300w, https://abow.info/wp-content/uploads/2022/11/exch0_SkriptTXT-768x181.png 768w" sizes="(max-width: 784px) 100vw, 784px" /><figcaption class="wp-element-caption">Ergebnis als .csv Export</figcaption></figure>



<div class="wp-block-file"><a id="wp-block-file--media-5aa68bc3-cbc3-428a-bfe6-e9dc61404c61" href="https://abow.info/wp-content/uploads/2022/11/Get-ExchangeVersion.ps1">Get-ExchangeVersion</a><a href="https://abow.info/wp-content/uploads/2022/11/Get-ExchangeVersion.ps1" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-5aa68bc3-cbc3-428a-bfe6-e9dc61404c61"><strong>&lt;&lt;&lt; DOWNLOAD &gt;&gt;&gt;</strong></a></div>



<p class="wp-block-paragraph">Bei Verbesserungsvorschlägen o.Ä. einfach melden via Kommentar.<br>Danke.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://abow.info/microsoft/microsoft_exchange/exchange-versionen/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
