<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.pflebit.de/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>PflebIT - Pflegeinformatik in der Praxis - kb:s:0091:faq</title>
        <description></description>
        <link>https://www.pflebit.de/</link>
        <lastBuildDate>Fri, 22 May 2026 15:17:11 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>https://www.pflebit.de/lib/exe/fetch.php?media=wiki:logo.png</url>
            <title>PflebIT - Pflegeinformatik in der Praxis</title>
            <link>https://www.pflebit.de/</link>
        </image>
        <item>
            <title>Add-In in Outlook 2010 ausschalten</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:addin-ausschalten</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;add-in_in_outlook_2010_ausschalten&quot;&gt;Add-In in Outlook 2010 ausschalten&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

Es gibt zahlreiche Programme, die bei ihrer Installation auch automatisch Add-Ins innerhalb von Outlook installieren. Dadurch wird der Startvorgang von Outlook teilweise erheblich verlangsamt.
&lt;/p&gt;

&lt;p&gt;
Normalerweise können alle Add-Ins deaktiviert werden, ohne dass dadurch Nachteile entstehen.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Klicken Sie auf „Datei &amp;gt; Optionen &amp;gt; Add-Ins&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Am unteren Bildschirmrand sehen Sie das Drop-Down-Menü „Verwalten: Com-Add-Ins“. Klicken Sie hier auf die Schaltfläche „Gehe zu“&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Deaktivieren Sie alle Add-Ins und bestätigen Sie mit Klick auf „Ok“&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Starten Sie Outlook neu.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 04 Apr 2021 14:42:58 +0000</pubDate>
        </item>
        <item>
            <title>Export von Outlook Kontakten nach Excel per VBA Makro</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:export-von-outlook-kontakten-nach-excel-per-vba</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;export_von_outlook_kontakten_nach_excel_per_vba_makro&quot;&gt;Export von Outlook Kontakten nach Excel per VBA Makro&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

In manchen Fällen ist es notwendig, die Outlook Kontakte in eine Excel-Tabelle zu exportieren. Will man das nun häufiger machen, kann es recht aufwändig sein, jedes Mal die Exportfunktion erneut aufzurufen. In diesem Fall wäre es schön ein Makro zu haben, das man von Outlook aus einfach aufruft und diese Arbeit erledigt.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

Das folgende Makro wird einfach in Outlook als Makro hinterlegt. Wird das Makro aufgerufen, so erstellt es vollautomatisch eine Excel-Datei (diese wird auch angezeigt) und füllt diese mit den gewünschten Spalten.
&lt;/p&gt;

&lt;p&gt;
Wenn Sie wissen wollen, welche Spaltennamen Sie verwenden können, dann schauen Sie bitte hier nach:&lt;br/&gt;

&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:software:outlook:wie-heissen-outlook-kontakte-spaltennamen-auf-englisch&quot; class=&quot;wikilink2&quot; title=&quot;kb:software:outlook:wie-heissen-outlook-kontakte-spaltennamen-auf-englisch&quot; rel=&quot;nofollow&quot; data-wiki-id=&quot;kb:software:outlook:wie-heissen-outlook-kontakte-spaltennamen-auf-englisch&quot;&gt;wie-heissen-outlook-kontakte-spaltennamen-auf-englisch&lt;/a&gt;
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
Sub KontakteExportieren()
   
    On Error Resume Next

    Const olFolderContacts = 10

    Set objOutlook = CreateObject(&amp;quot;Outlook.Application&amp;quot;)
    Set objNamespace = objOutlook.GetNamespace(&amp;quot;MAPI&amp;quot;)

    Set colContacts = objNamespace.GetDefaultFolder(olFolderContacts).Items

    Set objExcel = CreateObject(&amp;quot;Excel.Application&amp;quot;)
    objExcel.Visible = True
    Set objWorkbook = objExcel.Workbooks.Add()
    Set objWorksheet = objWorkbook.Worksheets(1)

    objExcel.Cells(1, 1) = &amp;quot;Name&amp;quot;
    objExcel.Cells(1, 2) = &amp;quot;Business Phone&amp;quot;
    objExcel.Cells(1, 3) = &amp;quot;FirstName&amp;quot;
    objExcel.Cells(1, 4) = &amp;quot;LastName&amp;quot;

    i = 4

    For Each objContact In colContacts
        objExcel.Cells(i, 1).Value = objContact.FullName
        objExcel.Cells(i, 2).Value = objContact.BusinessTelephoneNumber
        objExcel.Cells(i, 3).Value = objContact.FirstName
        objExcel.Cells(i, 4).Value = objContact.LastName
        i = i + 1
    Next

    Set objRange = objWorksheet.UsedRange
    objRange.EntireColumn.Autofit
    
End Sub

&lt;/pre&gt;

&lt;p&gt;
Hinweis:&lt;br/&gt;

Wenn weitere Spalten hinzugefügt werden sollen, so können diese einfach ergänzt werden, indem nach der Zeile&lt;br/&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt; objExcel.Cells(1, 4) = &amp;quot;LastName&amp;quot;\\ &lt;/pre&gt;

&lt;p&gt;
eine weitere Zeile eingefügt wird und die zweite Zahl um eins erhöht wird, also z.B.&lt;br/&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt; objExcel.Cells(1, 5) = &amp;quot;NameDesFeldes&amp;quot;\\ &lt;/pre&gt;

&lt;p&gt;
Außerdem der Zähler&lt;br/&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;  i = 4\\ &lt;/pre&gt;

&lt;p&gt;
um eins erhöht wird auf&lt;br/&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;  i = 5\\ &lt;/pre&gt;

&lt;p&gt;
Und nach der Zeile
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;  objExcel.Cells(i, 4).Value = objContact.LastName&lt;/pre&gt;

&lt;p&gt;
eine weitere Zeile eingefügt wird und die zweite Zahl um eins erhöht wird, also z.B.&lt;br/&gt;

&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;  objExcel.Cells(i, 5).Value = objContact.NameDesFeldes&lt;/pre&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 04 Apr 2021 14:43:17 +0000</pubDate>
        </item>
        <item>
            <title>Fehlermeldung: Termin kann nicht aktualisiert werden</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:fehlermeldung-termin-kann-nicht-aktualisiert-werden</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;fehlermeldungtermin_kann_nicht_aktualisiert_werden&quot;&gt;Fehlermeldung: Termin kann nicht aktualisiert werden&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

Nachdem Sie einen Termin in Ihrem Outlook-Kalender erstellt haben und Teilnehmer eingeladen haben, erhalten Sie eine Bestätigungs-E-Mail des Teilnehmers. Wenn Sie diese Bestätigungs-E-Mail anklicken, erscheint folgende Fehlermeldung:
&lt;/p&gt;

&lt;p&gt;
„Der Termin kann nicht aktualisiert werden, weil das zugehörige Element in dem von Ihnen synchronisiserten Ordner nicht mit diesem Elelement übereinstimmt. Öffnen Sie das Element, um den Konflikt zu lösen. Möchten Sie das Element jetzt öffnen?“
&lt;/p&gt;

&lt;p&gt;
Außerdem können Sie den Kalendereintrag nicht mehr öffnen. Stattdessen erscheint eine lange Fehlerliste. Was können Sie nun tun?
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Das Problem entsteht nur, wenn Ihr Outlook mit einem Exchange-Server verbunden ist. Dadurch wird der Termin sowohl auf dem Server als auch in Ihrem lokalen Outlook angelegt. Die lokale Outlook-Kopie enthält aber einen Fehler (der Grund ist unbekannt). Der Server enthält aber immer noch den richtigen Eintrag.
&lt;/p&gt;

&lt;p&gt;
Das Problem kann behoben werden, indem die Offline-Elemente (auf dem lokalen PC) gelöscht werden und der Kalender dadurch automatisch neu vom Server eingelesen wird. Gehen Sie dafür wie folgt vor:
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Öffnen Sie den Kalenderbereich in Outlook, und klicken Sie mit der rechten Maustaste auf den Ordner „Kalender“.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Wählen Sie den Befehl „Eigenschaften“ aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Wählen Sie auf der Registerkarte „Allgemein“ die Option „Offlineelemente löschen“ aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Bestätigen Sie mit Klick auf „OK“.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Nachdem Sie dadurch den Offline-Kalender gelöscht haben, lädt Outlook alle Kalendereinträge erneut vom Server herunter (kann einige Minuten dauern). Danach ist der Fehler behoben.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
Siehe auch: &lt;a href=&quot;https://support.microsoft.com/de-de/office/outlook-zeigt-konfliktfehler-beim-aktualisieren-oder-abbrechen-von-besprechungen-an-69c26227-40ef-4377-8f12-1749fcaad2ad&quot; class=&quot;urlextern&quot; title=&quot;https://support.microsoft.com/de-de/office/outlook-zeigt-konfliktfehler-beim-aktualisieren-oder-abbrechen-von-besprechungen-an-69c26227-40ef-4377-8f12-1749fcaad2ad&quot; rel=&quot;ugc nofollow&quot;&gt;https://support.microsoft.com/de-de/office/outlook-zeigt-konfliktfehler-beim-aktualisieren-oder-abbrechen-von-besprechungen-an-69c26227-40ef-4377-8f12-1749fcaad2ad&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 21 Sep 2024 09:55:33 +0000</pubDate>
        </item>
        <item>
            <title>Import von Google-Kontakten nach Outlook 365 / 2019</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:import-google-kontakte-nach-outlook</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;import_von_google-kontakten_nach_outlook_365_2019&quot;&gt;Import von Google-Kontakten nach Outlook 365 / 2019&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

Will man seine Google-Kontakte nach Outlook importieren, so findet man überall die gleiche Anleitung im Internet, die von Seiten Google und von Seiten Microsoft herausgegeben wird.
&lt;/p&gt;

&lt;p&gt;
Dort liest man dann, dass alles ganz simpel wäre:
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Google Kontakte aufrufen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Alle Kontakte markieren&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Alle Kontakte Exportieren im Outlook-CSV-Format&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Outlook öffnen und importieren&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
Leider klappt das aber so nicht. Und dafür gibt es folgende Gründe:
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Hauptproblem: Die Notizen werden mehrzeilig exportiert, so dass Outlook sie nicht lesen kann.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Die Zeilenüberschriften sind zudem anders als in Outlook&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
Und was kann man da machen?
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Rufen Sie die Google Kontakte auf&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Markieren Sie alle Kontakte&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Exportieren Sie alle Kontakte im „Google“-CSV-Format!!! (nicht Outlook-CSV!)&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Öffnen Sie eine leere Excel-Datei.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Importieren Sie nun die Export-Datei innerhalb von Excel über „Daten &amp;gt; als Text/CSV“&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Speichern Sie die Datei mit der Endung „CSV Trennzeichen-getrennt“ (nicht die anderen CSV-Formate benutzen!)&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Öffnen Sie nun diese Datei in einem Texteditor und suchen Sie nach allen Semikola „;“.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Ersetzen Sie alle ; durch , (also Kommata)&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Speichern Sie die Datei&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Importieren Sie diese CSV-Datei nun in Outlook (aber weisen Sie vorher die Spaltenüberschriften korrekt zu)&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
Viel Spaß!
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 08 Jun 2023 18:45:57 +0000</pubDate>
        </item>
        <item>
            <title>Import von Outlook Express zu Outlook 2010</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:import-oe-zu-outlook</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;import_von_outlook_express_zu_outlook_2010&quot;&gt;Import von Outlook Express zu Outlook 2010&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
Um von Outlook Express 6.0 nach Outlook 2010 zu wechseln, sind mehrere Schritte notwendig.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Import von Outlook Express zu Outlook 2010&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;import_von_outlook_express_zu_outlook_2010&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-150&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit2&quot; id=&quot;import_der_e-mails&quot;&gt;Import der E-Mails:&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
1. Schritt: Daten-Export der Outlook Express (auf altem Rechner):
&lt;/p&gt;

&lt;p&gt;
Outlook Express aufrufen.&lt;br/&gt;

Extras / Optionen / Registerkarte: Wartung / „Speicherordner“ anklicken&lt;br/&gt;

Alle Daten dieses Ordners auf einen USB-Stick kopieren.&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
2. Schritt: Daten-Zwischenimport in &lt;a href=&quot;http://www.microsoft.com/de-de/download/windows-live.aspx?q=windows+live&quot; class=&quot;urlextern&quot; title=&quot;http://www.microsoft.com/de-de/download/windows-live.aspx?q=windows+live&quot; rel=&quot;ugc nofollow&quot;&gt;Windows Live Mail (Download-Seite hier klicken)&lt;/a&gt; (auf neuem Rechner):
&lt;/p&gt;

&lt;p&gt;
Daten des 1. Schritt in ein Verzeichnis auf dem neuen Rechner speichern.&lt;br/&gt;

Datei (Pfeil nach Unten-Reiter) / Nachrichten importieren / Nachrichten Outlook Express 6.0 / Verzeichnis auswählen&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
3. Schritt: Daten-Export nach Outlook 2010:
&lt;/p&gt;

&lt;p&gt;
siehe dazu: Exportieren von Windows Live-E-Mail-, Kontakt- und Kalenderdaten nach Outlook&lt;br/&gt;

&lt;a href=&quot;http://support.microsoft.com/kb/980534/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/980534/de&quot; rel=&quot;ugc nofollow&quot;&gt;http://support.microsoft.com/kb/980534/de&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Import der E-Mails:&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;import_der_e-mails&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;151-976&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit3&quot; id=&quot;import_der_kontakte&quot;&gt;Import der Kontakte:&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
1. Schritt: Daten-Export der Outlook Express (auf altem Rechner):
&lt;/p&gt;

&lt;p&gt;
Das Adressbuch von Outlook-Express befindet sich im Ordner:&lt;br/&gt;

%AppData%/Microsoft/Adress Book&lt;br/&gt;

Die Datei mit der Endung .wab enthält das Adressbuch.&lt;br/&gt;

Diese Datei auf einen USB-Stick kopieren.&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
2. Schritt: Daten-Zwischenimport in Windows Live Mail (auf neuem Rechner):
&lt;/p&gt;

&lt;p&gt;
Windows Live Mail aufrufen.&lt;br/&gt;

„Kontakte“ anklicken (links unten)&lt;br/&gt;

Registerkarte: Start / Gruppe: Extras / Importieren / Windows-Adressbuch (.WAB)&lt;br/&gt;

Datei auswählen und importieren.&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
3. Schritt: Daten-Export nach Outlook 2010:
&lt;/p&gt;

&lt;p&gt;
siehe dazu: Exportieren von Windows Live-E-Mail-, Kontakt- und Kalenderdaten nach Outlook&lt;br/&gt;

&lt;a href=&quot;http://support.microsoft.com/kb/980534/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/980534/de&quot; rel=&quot;ugc nofollow&quot;&gt;http://support.microsoft.com/kb/980534/de&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Import der Kontakte:&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;import_der_kontakte&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;977-&amp;quot;} --&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 10 Oct 2023 10:48:17 +0000</pubDate>
        </item>
        <item>
            <title>Kalender als gefiltert Liste drucken</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:kalender-als-liste-drucken-gefiltert</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;kalender_als_gefiltert_liste_drucken&quot;&gt;Kalender als gefiltert Liste drucken&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

Ich habe in meinem Outlook-Kalender meine Urlaubstage mit dem Kürzel „Urlaub#2023 1. Tag“ eingetragen.
&lt;/p&gt;

&lt;p&gt;
Nun möchte ich gerne alle Urlaube aus 2023 auf einem DIN A4 Blatt als Liste ausdrucken. Wie kann ich das machen?
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Kalender aufrufen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Ansicht &amp;gt; Ansicht ändern: „aktive“ auswählen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; dann Filter einstellen unter&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Ansichtseinstellungen &amp;gt; Filtern &amp;gt; „Urlaub#2023“ eingeben&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; dann als Liste drucken&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
Alternativ kann man den Kalendereinträgen für Urlaub auch einer Kategorie zuordnen. In diesem Fall kann man wie oben beschrieben auch nach Kategorien filtern.
Ich mag aber die Text-Variante lieber, da man dann im Falle einer Neuinstallation keine Kategorien einrichten / importieren muss.
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 10 Oct 2023 10:53:00 +0000</pubDate>
        </item>
        <item>
            <title>Papierkorb ohne Nachfrage löschen</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:papierkorb-ohne-nachfrage-loeschen</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;papierkorb_ohne_nachfrage_loeschen&quot;&gt;Papierkorb ohne Nachfrage löschen&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Wenn Outlook geschlossen wird, wird der Papierkorb gelöscht, aber es erscheint eine Nachfrage, die bestätigt werden muss.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Datei / Optionen / Erweitert / Bereich: Starten und Beenden von Outlook&lt;br/&gt;

Option aktivieren: Beim Beenden von Outlook die Ordner „Gelöschte Elemente“ leeren
&lt;/p&gt;

&lt;p&gt;
und&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Datei / Optionen / Erweitert / Bereich: Weitere&lt;br/&gt;

Option deaktivieren: Zur Bestätigung auffordern, bevor Elemente endgültig gelöscht werden
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 04 Apr 2021 14:46:43 +0000</pubDate>
        </item>
        <item>
            <title>Passwort in Outlook ändern (Kennwort in Android ändern)</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:passwort-in-outlook-aendern-kennwort-in-android</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;passwort_in_outlook_aendern_kennwort_in_android_aendern&quot;&gt;Passwort in Outlook ändern (Kennwort in Android ändern)&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Ich habe mein Windows-Kennwort geändert und mein Microsoft Office ist mit dem Active Directory Konto verbunden (AD-Konto).
Nun erhalte ich in meinem Outlook auf Android keine E-Mails mehr, kann aber das Kennwort nicht ändern. Auch in den Einstellungen von Android (unter Konten) lässt es sich nicht ändern.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;1. Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Rufen Sie auf dem Smartphone / Tablet den Internet-Browser auf und melden Sie sich dort unter:&lt;br/&gt;

&lt;a href=&quot;https://m365.cloud.microsoft/&quot; class=&quot;urlextern&quot; title=&quot;https://m365.cloud.microsoft/&quot; rel=&quot;ugc nofollow&quot;&gt;https://m365.cloud.microsoft/&lt;/a&gt;&lt;br/&gt;

an.
&lt;/p&gt;

&lt;p&gt;
Wenn Sie nun in Android Ihre Outlook-App öffnen, erscheint am unteren Fensterrand die Abfrage, ob Sie das Kennwort (für die Outook App in Android) ändern möchten.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;2. Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Installieren Sie die Outlook-App neu.
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 29 Jan 2025 07:54:01 +0000</pubDate>
        </item>
        <item>
            <title>Priorität in einer erhaltenen E-Mail nachträglich ändern</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:prioritaet-in-email-nach-erhalt-aendern</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;prioritaet_in_einer_erhaltenen_e-mail_nachtraeglich_aendern&quot;&gt;Priorität in einer erhaltenen E-Mail nachträglich ändern&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

manchmal erhalte ich Emails, die vom Absender mit der Priorität „wichtig“ versehen werden. Für mich sind diese jedoch nicht „wichtig“ sondern nur „normale“ Emails. Wenn ich diese Email nun mit dem „Nachverfolgen-Symbol“ kennzeichne, so dass ich sie in meinem Fenster „Aufgaben“ sehe, erscheinen sie mir dort in der Kategorie „wichtig“.
&lt;/p&gt;

&lt;p&gt;
In den Aufgaben lautet meine Sortierregel „nach Priorität - absteigend“, da ich das tatsächlich so möchte. Allerdings möchte ich jedoch die empfangene Email nur in der Kategorie „normal“ anzeigen lassen. Ich kann jedoch keine Möglichkeit finden, um die Priorität einer empfangenen Email zu ändern.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Einfach ALT+ENTER drücken. Daraufhin öffnet sich der Eigenschaften-Dialog, in dem man die Priorität der E-Mail auch nachträglich ändern kann.
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 04 Apr 2021 14:46:58 +0000</pubDate>
        </item>
        <item>
            <title>Private Termine im Kalender vorübergehend ausblenden</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:private-termine-im-kalender-ausblenden</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;private_termine_im_kalender_voruebergehend_ausblenden&quot;&gt;Private Termine im Kalender vorübergehend ausblenden&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

Private Kalendereinträge sollen während einer Präsentation im Kalender nicht sichtbar sein.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

Die privaten Termine können vorübergehend ausgeblendet werden:
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Register: Ansicht &amp;gt; Asichtseinstellungen &amp;gt; Filtern &amp;gt; Registerkarte erweitert &amp;gt; Feld: Alle Terminfelder: „Vertraulichkeit“ auswählen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; dann Bedingung „ungleich“ auswählen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; dann Wert „privat“ auswählen&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; dann „Zur Liste hinzufügen“ anklicken und mit OK bestätigen&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
Die privaten Termine werden nun in dieser Ansicht ausgeblendet.
&lt;/p&gt;

&lt;p&gt;
Um die privaten Termine wieder einzublenden, gehen Sie den o.g. Weg noch einmal und löschen Sie den Filter-Eintrag.
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 04 Apr 2021 14:47:15 +0000</pubDate>
        </item>
        <item>
            <title>Sound beim E-Mail-Eingang ändern in &quot;Sie haben Post&quot; von AOL</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:sound-emaileingang-aendern-in-siehabenpost-ao</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;sound_beim_e-mail-eingang_aendern_in_sie_haben_post_von_aol&quot;&gt;Sound beim E-Mail-Eingang ändern in &amp;quot;Sie haben Post&amp;quot; von AOL&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
Normalerweise wird man von Outlook per Gong-Ton darauf aufmerksam gemacht, dass eine neue E-Mail eingegangen ist. Diesen Sound kann man jedoch auch selbst anpassen. Jede Ton-Datei im .wav-Format ist dafür geeignet.
&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;Vorbereitung&lt;/strong&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Laden Sie sich Ihren gewünschten Sound (z.B. Sie haben Post von AOL) als .wav-Datei auf Ihren PC.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Kopieren Sie die Datei in den Ordner c:\Windows\Media&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
&lt;strong&gt;Sound für E-Mail-Eingang einstellen&lt;/strong&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Schließen Sie Outlook&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Geben Sie im Windows-Suchfenster „Systemsound“ ein und wählen Sie den Befehl „Systemssounds ändern“ aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Wählen Sie die Registerkarte „Sounds“ aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Wählen Sie im Fenster „Programmereignisse“ den Befehl „Desktop-E-Mail-Benachrichtigung“ aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Unterhalb dieses Fensters können Sie mit dem Befehl „Durchsuchen“ eine neue Datei auswählen. Wählen Sie die die von Ihnen abgelegte Datei aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Testen Sie den Sound mit Klick auf die Schaltfläche „Testen“.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Öffnen Sie Outlook. Der Sound sollte nun funktionieren, sobald eine neue E-Mail empfangen wird.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Falls Sie keinen Sound hören sollten, öffnen Sie in Outlook „Datei &amp;gt; Optionen &amp;gt; E-Mail &amp;gt; Bereich: Nachrichteneingang“ und aktivieren Sie das Kontrollkästchen „Beim Eintreffen neuer Nachrichten: Sounds wiedergeben“.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 04 Apr 2021 14:48:52 +0000</pubDate>
        </item>
        <item>
            <title>Speicherort für Anlagen in Outlook festlegen</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:speicherort-fuer-anlagen-in-outlook-festlegen</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;speicherort_fuer_anlagen_in_outlook_festlegen&quot;&gt;Speicherort für Anlagen in Outlook festlegen&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

Wenn ich eine E-Mail öffne und die Anlagen auf meinem PC abspeichern möchte, öffnet sich immer zuerst mein OneDrive-Ordner bzw. mein Ordner „Eigene Dateien“. Ich möchte aber gerne einen anderen Ordner als Standard-Zielordner festlegen. Wie kann ich das machen?
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Wählen Sie unter Windows-Desktop die Start-Schaltfläche und dann Ausführen aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Geben Sie in das Feld Öffnen die Zeichenfolge „Regedit“ ein, und drücken Sie dann die Eingabetaste.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Suchen Sie den folgenden Unterschlüssel in der Registrierung mithilfe des Registrierungs-Editors:&lt;br/&gt;
„HKEY_CURRENT USER\Software\Microsoft\Office\1x.0\Outlook\Options“&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Zeigen Sie im Menü „Bearbeiten“ auf „Neu“, und wählen Sie dann „Zeichenfolge-Wert“ aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Geben Sie „DefaultPath“ ein, und drücken Sie dann die Eingabetaste.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Doppelklicken Sie auf den Wert „DefaultPath“.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Geben Sie im Dialogfeld „Zeichenfolge bearbeiten“ den Pfad einschließlich des Laufwerkbuchstabens zu dem Ordner ein (z.B. „C:\“ - ohne Anführungszeichen), den Sie für Ihre Outlook gespeicherten Elemente im Feld Wertdaten verwenden möchten, und wählen Sie dann OK aus.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Schließen Sie den Registrierungs-Editor.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Starten Sie Outlook erneut, öffnen Sie eine E-Mail, die eine Anlage enthält und wählen Sie im Kontextmenü „Anlage speichern unter …“. Es erscheint nun der neue Ordner als Startordner.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
Quelle: &lt;a href=&quot;https://learn.microsoft.com/de-de/outlook/troubleshoot/data-files/how-to-change-the-folder-where-emails-and-attachments-saved&quot; class=&quot;urlextern&quot; title=&quot;https://learn.microsoft.com/de-de/outlook/troubleshoot/data-files/how-to-change-the-folder-where-emails-and-attachments-saved&quot; rel=&quot;ugc nofollow&quot;&gt;https://learn.microsoft.com/de-de/outlook/troubleshoot/data-files/how-to-change-the-folder-where-emails-and-attachments-saved&lt;/a&gt;&lt;br/&gt;

Quelle: &lt;a href=&quot;https://blogs.smarttools.de/outlook/2024/02/14/ordner-zum-speichern-von-dateianhaengen-in-outlook-aendern/6a271d0f2.html&quot; class=&quot;urlextern&quot; title=&quot;https://blogs.smarttools.de/outlook/2024/02/14/ordner-zum-speichern-von-dateianhaengen-in-outlook-aendern/6a271d0f2.html&quot; rel=&quot;ugc nofollow&quot;&gt;https://blogs.smarttools.de/outlook/2024/02/14/ordner-zum-speichern-von-dateianhaengen-in-outlook-aendern/6a271d0f2.html&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 23 May 2025 12:30:15 +0000</pubDate>
        </item>
        <item>
            <title>Microsoft Outlook - FAQ Allgemein</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:start</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;microsoft_outlook_-_faq_allgemein&quot;&gt;Microsoft Outlook - FAQ Allgemein&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
Vormals Outlook Express / Windows Live Mail.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Microsoft Outlook - FAQ Allgemein&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;microsoft_outlook_-_faq_allgemein&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-95&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit2&quot; id=&quot;outlook_365_und_2019_bis_outlook_97&quot;&gt;Outlook 365 und 2019 bis Outlook 97&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-ch/training/ablegen-oder-archivieren-von-e-mail-nachrichten-auf-dem-eigenen-computer-RZ001026647.aspx?section=1&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-ch/training/ablegen-oder-archivieren-von-e-mail-nachrichten-auf-dem-eigenen-computer-RZ001026647.aspx?section=1&quot; rel=&quot;ugc nofollow&quot;&gt;Ablegen oder Archivieren von E-Mail-Nachrichten auf dem eigenen Computer&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:addin-ausschalten&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:addin-ausschalten&quot; data-wiki-id=&quot;kb:s:0091:faq:addin-ausschalten&quot;&gt;Add-In in Outlook 2010 ausschalten&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.microsoft.com/de-de/download/details.aspx?id=16645&quot; class=&quot;urlextern&quot; title=&quot;http://www.microsoft.com/de-de/download/details.aspx?id=16645&quot; rel=&quot;ugc nofollow&quot;&gt;Add-In: Kalenderdruck-Assistent für Outlook&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-at/outlook/ubersicht-uber-microsoft-office-outlook-hotmail-connector-HA010222518.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-at/outlook/ubersicht-uber-microsoft-office-outlook-hotmail-connector-HA010222518.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Add-In: Übersicht über Microsoft Office Outlook Hotmail Connector&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook-help/andern-der-ablageform-von-kontakten-und-der-darstellung-von-adressbucheintragen-HP001034286.aspx?CTT=3&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook-help/andern-der-ablageform-von-kontakten-und-der-darstellung-von-adressbucheintragen-HP001034286.aspx?CTT=3&quot; rel=&quot;ugc nofollow&quot;&gt;Ändern der Ablageform von Kontakten und der Darstellung von Adressbucheinträgen&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://support.microsoft.com/de-de/office/%C3%A4ndern-des-standardadressbuchs-84c7be39-282a-4096-aeb8-89a2661a5162&quot; class=&quot;urlextern&quot; title=&quot;https://support.microsoft.com/de-de/office/%C3%A4ndern-des-standardadressbuchs-84c7be39-282a-4096-aeb8-89a2661a5162&quot; rel=&quot;ugc nofollow&quot;&gt;Ändern des Standardadressbuchs&lt;/a&gt;&lt;br/&gt;

In Outlook soll nicht das globale Adressbuch sondern das lokale Adressbuch angezeigt werden. Der Artikel beschreibt die Vorgehensweise.
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.wintotal.de/tipparchiv/?id=810&quot; class=&quot;urlextern&quot; title=&quot;http://www.wintotal.de/tipparchiv/?id=810&quot; rel=&quot;ugc nofollow&quot;&gt;Autovervollständigung in E-Mail-Adresse (Outlook 2010)&lt;/a&gt;&lt;br/&gt;

Wie kann ich die automatisch angezeigte E-Mail-Adresse im an-Feld löschen?
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook-help/befehlszeilenoptionen-fur-outlook-2013-HA102606406.aspx?CTT=1&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook-help/befehlszeilenoptionen-fur-outlook-2013-HA102606406.aspx?CTT=1&quot; rel=&quot;ugc nofollow&quot;&gt;Befehlszeilenparameter Outlook 2013 - Startparameter&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-at/outlook-help/befehlszeilenoptionen-fur-microsoft-outlook-2010-HP010354956.aspx?CTT=1**&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-at/outlook-help/befehlszeilenoptionen-fur-microsoft-outlook-2010-HP010354956.aspx?CTT=1**&quot; rel=&quot;ugc nofollow&quot;&gt;Befehlszeilenparameter Outlook 2010 - Startparameter&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-at/outlook-help/befehlszeilenoptionen-fur-microsoft-office-outlook-2007-HP001218589.aspx?CTT=1&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-at/outlook-help/befehlszeilenoptionen-fur-microsoft-office-outlook-2007-HP001218589.aspx?CTT=1&quot; rel=&quot;ugc nofollow&quot;&gt;Befehlszeilenparameter Outlook 2007 - Startparameter&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-at/outlook-help/befehlszeilenparameter-HP001003110.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-at/outlook-help/befehlszeilenparameter-HP001003110.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Befehlszeilenparameter Outlook 2003 - Startparameter&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/?kbid=2413813&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/?kbid=2413813&quot; rel=&quot;ugc nofollow&quot;&gt;Beheben von Problemen in denen Outlook 2007 oder Outlook 2010 stürzt ab oder reagiert nicht mehr (hängt), wenn sie in der Microsoft Online Services-Umgebung verwendet wird&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/324568/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/324568/de&quot; rel=&quot;ugc nofollow&quot;&gt;Beschreibung der Programmierung mit Outlook-Regeln&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://support.microsoft.com/de-de/office/bew%C3%A4hrte-methoden-f%C3%BCr-outlook-f90e5f69-8832-4d89-95b3-bfdf76c82ef8&quot; class=&quot;urlextern&quot; title=&quot;https://support.microsoft.com/de-de/office/bew%C3%A4hrte-methoden-f%C3%BCr-outlook-f90e5f69-8832-4d89-95b3-bfdf76c82ef8&quot; rel=&quot;ugc nofollow&quot;&gt;Bewährte Methoden für Outlook&lt;/a&gt;&lt;br/&gt;

Empfehlung 2022 &lt;img src=&quot;https://www.pflebit.de/lib/images/smileys/exclaim.svg&quot; class=&quot;icon smiley&quot; alt=&quot;:!:&quot; /&gt; Sehr umfangreicher Artikel zur effizienten Nutzung von Outlook im beruflichen Umfeld.
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://support.microsoft.com/de-de/office/suchen-und-verschieben-von-outlook-datendateien-von-einem-computer-auf-einen-anderen-0996ece3-57c6-49bc-977b-0d1892e2aacc&quot; class=&quot;urlextern&quot; title=&quot;https://support.microsoft.com/de-de/office/suchen-und-verschieben-von-outlook-datendateien-von-einem-computer-auf-einen-anderen-0996ece3-57c6-49bc-977b-0d1892e2aacc&quot; rel=&quot;ugc nofollow&quot;&gt;Datensicherung von Outlook durchführen (alle Komponenten - nicht nur PST-Datei)&lt;/a&gt;&lt;br/&gt;

Originaltitel: Suchen und Verschieben von Outlook-Datendateien von einem Computer auf einen anderen
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/829918/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/829918/de&quot; rel=&quot;ugc nofollow&quot;&gt;Erstellen und Konfigurieren eines E-Mail-Profils in Outlook 2010, Outlook 2007 und Outlook 2003&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/829918/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/829918/de&quot; rel=&quot;ugc nofollow&quot;&gt;Erstellen und Konfigurieren von E-Mail-Profilen in Outlook&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook-help/erstellen-und-verwenden-von-pst-datendateien-in-verschiedenen-outlook-versionen-HP001231987.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook-help/erstellen-und-verwenden-von-pst-datendateien-in-verschiedenen-outlook-versionen-HP001231987.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Erstellen und Verwenden von PST-Datendateien in verschiedenen Outlook-Versionen&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:export-von-outlook-kontakten-nach-excel-per-vba&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:export-von-outlook-kontakten-nach-excel-per-vba&quot; data-wiki-id=&quot;kb:s:0091:faq:export-von-outlook-kontakten-nach-excel-per-vba&quot;&gt;Export von Outlook Kontakten nach Excel per VBA Makro&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/310049/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/310049/de&quot; rel=&quot;ugc nofollow&quot;&gt;Fehlermeldung beim Anklicken eines Links in Outlook&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:fehlermeldung-termin-kann-nicht-aktualisiert-werden&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:fehlermeldung-termin-kann-nicht-aktualisiert-werden&quot; data-wiki-id=&quot;kb:s:0091:faq:fehlermeldung-termin-kann-nicht-aktualisiert-werden&quot;&gt;Fehlermeldung: Termin kann nicht aktualisiert werden&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-at/outlook-help/festlegen-oder-entfernen-von-erinnerungen-HP010354940.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-at/outlook-help/festlegen-oder-entfernen-von-erinnerungen-HP010354940.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Festlegen oder Entfernen von Erinnerungen&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/272227&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/272227&quot; rel=&quot;ugc nofollow&quot;&gt;Finden und Ausführen des Tools zum Reparieren des Posteingangs in Outlook&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook-help/hinzufugen-einer-kennzeichnung-zur-nachverfolgung-HA010355003.aspx#BM1&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook-help/hinzufugen-einer-kennzeichnung-zur-nachverfolgung-HA010355003.aspx#BM1&quot; rel=&quot;ugc nofollow&quot;&gt;Hinzufügen einer Kennzeichnung zur Nachverfolgung&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-ch/outlook-help/hinzufugen-oder-loschen-von-feiertagen-und-benutzerdefinierten-ereignissen-im-kalender-HP001230406.aspx#BM2&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-ch/outlook-help/hinzufugen-oder-loschen-von-feiertagen-und-benutzerdefinierten-ereignissen-im-kalender-HP001230406.aspx#BM2&quot; rel=&quot;ugc nofollow&quot;&gt;Hinzufügen oder Löschen von Feiertagen und benutzerdefinierten Ereignissen im Kalender&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.outlook-stuff.com/problemloesungen/610-hyperlinks-koennen-nicht-mehr-geoeffnet-werden.html&quot; class=&quot;urlextern&quot; title=&quot;http://www.outlook-stuff.com/problemloesungen/610-hyperlinks-koennen-nicht-mehr-geoeffnet-werden.html&quot; rel=&quot;ugc nofollow&quot;&gt;Hyperlinks können nicht mehr geöffnet werden&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:import-google-kontakte-nach-outlook&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:import-google-kontakte-nach-outlook&quot; data-wiki-id=&quot;kb:s:0091:faq:import-google-kontakte-nach-outlook&quot;&gt;Import von Google-Kontakten nach Outlook 365 / 2019&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook-help/importieren-von-outlook-elementen-aus-einer-outlook-datendatei-pst-HA102919679.aspx?CTT=1&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook-help/importieren-von-outlook-elementen-aus-einer-outlook-datendatei-pst-HA102919679.aspx?CTT=1&quot; rel=&quot;ugc nofollow&quot;&gt;Importieren von Outlook-Elementen aus einer Outlook-Datendatei (PST) für Outlook 2013&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook-help/importieren-von-outlook-elementen-aus-einer-outlook-datendatei-pst-HA102505743.aspx?CTT=1&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook-help/importieren-von-outlook-elementen-aus-einer-outlook-datendatei-pst-HA102505743.aspx?CTT=1&quot; rel=&quot;ugc nofollow&quot;&gt;Importieren von Outlook-Elementen aus einer Outlook-Datendatei (PST) für Outlook 2010&lt;/a&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:import-oe-zu-outlook&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:import-oe-zu-outlook&quot; data-wiki-id=&quot;kb:s:0091:faq:import-oe-zu-outlook&quot;&gt;Import von Outlook Express zu Outlook 2010&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://itrig.de/index.php?/archives/2245-Microsoft-Outlook-201020132016-Installation-reparieren,-abgesichert-starten-oder-Profil-erneuern.html&quot; class=&quot;urlextern&quot; title=&quot;https://itrig.de/index.php?/archives/2245-Microsoft-Outlook-201020132016-Installation-reparieren,-abgesichert-starten-oder-Profil-erneuern.html&quot; rel=&quot;ugc nofollow&quot;&gt;Installation reparieren, abgesichert starten oder Profil erneuern&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:kalender-als-liste-drucken-gefiltert&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:kalender-als-liste-drucken-gefiltert&quot; data-wiki-id=&quot;kb:s:0091:faq:kalender-als-liste-drucken-gefiltert&quot;&gt;Kalender als gefiltert Liste drucken&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://winfuture.de/news,151619.html&quot; class=&quot;urlextern&quot; title=&quot;https://winfuture.de/news,151619.html&quot; rel=&quot;ugc nofollow&quot;&gt;Klassik-Outlook (Microsoft 365) öffnet Mails nicht mehr&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.pctipp.ch/tipps-tricks/kummerkasten/office/artikel/outlook-2010-geburtstage-fehlen-im-kalender-68865/&quot; class=&quot;urlextern&quot; title=&quot;http://www.pctipp.ch/tipps-tricks/kummerkasten/office/artikel/outlook-2010-geburtstage-fehlen-im-kalender-68865/&quot; rel=&quot;ugc nofollow&quot;&gt;Outlook 2010: Geburtstage fehlen im Kalender (1)&lt;/a&gt;&lt;br/&gt;

&lt;a href=&quot;http://lookeen.de/wiki/outlook-2002-geburtstage-importieren.html&quot; class=&quot;urlextern&quot; title=&quot;http://lookeen.de/wiki/outlook-2002-geburtstage-importieren.html&quot; rel=&quot;ugc nofollow&quot;&gt;Outlook 2010: Geburtstage fehlen im Kalender (2)&lt;/a&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office-blog.net/post/Outlook-2010-PST-Datei-mit-ScanPST-reparieren.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office-blog.net/post/Outlook-2010-PST-Datei-mit-ScanPST-reparieren.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Outlook 2010 PST-Datei mit ScanPST.exe reparieren&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.microsoft.com/de-de/download/details.aspx?id=24677&quot; class=&quot;urlextern&quot; title=&quot;http://www.microsoft.com/de-de/download/details.aspx?id=24677&quot; rel=&quot;ugc nofollow&quot;&gt;Outlook Hotmail Connector 32-Bit (Download)&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:papierkorb-ohne-nachfrage-loeschen&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:papierkorb-ohne-nachfrage-loeschen&quot; data-wiki-id=&quot;kb:s:0091:faq:papierkorb-ohne-nachfrage-loeschen&quot;&gt;Papierkorb ohne Nachfrage löschen&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:passwort-in-outlook-aendern-kennwort-in-android&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:passwort-in-outlook-aendern-kennwort-in-android&quot; data-wiki-id=&quot;kb:s:0091:faq:passwort-in-outlook-aendern-kennwort-in-android&quot;&gt;Passwort in Outlook ändern (Kennwort in Android ändern)&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:prioritaet-in-email-nach-erhalt-aendern&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:prioritaet-in-email-nach-erhalt-aendern&quot; data-wiki-id=&quot;kb:s:0091:faq:prioritaet-in-email-nach-erhalt-aendern&quot;&gt;Priorität in einer erhaltenen E-Mail nachträglich ändern&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:private-termine-im-kalender-ausblenden&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:private-termine-im-kalender-ausblenden&quot; data-wiki-id=&quot;kb:s:0091:faq:private-termine-im-kalender-ausblenden&quot;&gt;Private Termine im Kalender vorübergehend ausblenden&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/en-us/outlook-help/repair-outlook-data-files-pst-and-ost-HA010354964.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/en-us/outlook-help/repair-outlook-data-files-pst-and-ost-HA010354964.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Repair Outlook Data Files (.pst and .ost)&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://blogs.urz.uni-halle.de/simpletricks/2023/03/serien-e-mails-mit-individuellen-anhaengen/&quot; class=&quot;urlextern&quot; title=&quot;https://blogs.urz.uni-halle.de/simpletricks/2023/03/serien-e-mails-mit-individuellen-anhaengen/&quot; rel=&quot;ugc nofollow&quot;&gt;Serien-E-Mails mit individuellem Anhang per Outlook, Excel und Word versenden&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/299804/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/299804/de&quot; rel=&quot;ugc nofollow&quot;&gt;So zeigen Sie in Outlook das Feld &amp;quot;Bcc&amp;quot; an (alle Outlook-Versionen)&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:sound-emaileingang-aendern-in-siehabenpost-ao&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:sound-emaileingang-aendern-in-siehabenpost-ao&quot; data-wiki-id=&quot;kb:s:0091:faq:sound-emaileingang-aendern-in-siehabenpost-ao&quot;&gt;Sound beim E-Mail-Eingang ändern in &amp;quot;Sie haben Post&amp;quot; von AOL&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:speicherort-fuer-anlagen-in-outlook-festlegen&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:speicherort-fuer-anlagen-in-outlook-festlegen&quot; data-wiki-id=&quot;kb:s:0091:faq:speicherort-fuer-anlagen-in-outlook-festlegen&quot;&gt;Speicherort für Anlagen in Outlook festlegen&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://support.office.com/de-de/article/lernen-sie-wie-sie-ihre-suchkriterien-einschr%C3%A4nken-um-bessere-suchergebnisse-in-outlook-zu-erzielen-d824d1e9-a255-4c8a-8553-276fb895a8da&quot; class=&quot;urlextern&quot; title=&quot;https://support.office.com/de-de/article/lernen-sie-wie-sie-ihre-suchkriterien-einschr%C3%A4nken-um-bessere-suchergebnisse-in-outlook-zu-erzielen-d824d1e9-a255-4c8a-8553-276fb895a8da&quot; rel=&quot;ugc nofollow&quot;&gt;Suche in Outlook einschränken (mit direkten Befehlen - Operatoren)&lt;/a&gt;&lt;br/&gt;

Empfehlung 2025 &lt;img src=&quot;https://www.pflebit.de/lib/images/smileys/exclaim.svg&quot; class=&quot;icon smiley&quot; alt=&quot;:!:&quot; /&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-at/outlook-help/tastenkombinationen-fur-outlook-HP001230396.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-at/outlook-help/tastenkombinationen-fur-outlook-HP001230396.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Tastenkombinationen für Microsoft Office Outlook&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook/ubersicht-uber-microsoft-office-outlook-hotmail-connector-HA010222518.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook/ubersicht-uber-microsoft-office-outlook-hotmail-connector-HA010222518.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Übersicht über Microsoft Office Outlook Hotmail Connector&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook-help/verwalten-von-nachrichten-mithilfe-von-regeln-HA010355682.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook-help/verwalten-von-nachrichten-mithilfe-von-regeln-HA010355682.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Verwalten von Nachrichten mithilfe von Regeln&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/287070/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/287070/de&quot; rel=&quot;ugc nofollow&quot;&gt;Verwalten von PST-Dateien in Microsoft Outlook (Outlook 2007, 2003)&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/272227/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/272227/de&quot; rel=&quot;ugc nofollow&quot;&gt;Verwenden des Tools zum Reparieren des Posteingangs, um die PST-Datei in Outlook zu reparieren&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:wie-heissen-outlook-kontakte-spaltennamen-auf-englisch&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:wie-heissen-outlook-kontakte-spaltennamen-auf-englisch&quot; data-wiki-id=&quot;kb:s:0091:faq:wie-heissen-outlook-kontakte-spaltennamen-auf-englisch&quot;&gt;Wie heißen die Outlook Kontakte Spaltennamen auf englisch?&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.mailhilfe.de/wie-kann-man-eine-liste-aller-ordnernamen-aus-outlook-exportieren-oder-drucken&quot; class=&quot;urlextern&quot; title=&quot;https://www.mailhilfe.de/wie-kann-man-eine-liste-aller-ordnernamen-aus-outlook-exportieren-oder-drucken&quot; rel=&quot;ugc nofollow&quot;&gt;Wie kann man eine Liste aller Ordnernamen aus Outlook exportieren oder drucken?&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/de-de/outlook-help/wo-speichert-microsoft-outlook-2010-meine-informationen-und-konfigurationen-HP010354943.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/de-de/outlook-help/wo-speichert-microsoft-outlook-2010-meine-informationen-und-konfigurationen-HP010354943.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Wo speichert Microsoft Outlook 2010 meine Informationen und Konfigurationen?&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;https://www.pflebit.de/doku.php?id=kb:s:0091:faq:wo-speichert-outlook-meine-email-in-welchem-ordner&quot; class=&quot;wikilink1&quot; title=&quot;kb:s:0091:faq:wo-speichert-outlook-meine-email-in-welchem-ordner&quot; data-wiki-id=&quot;kb:s:0091:faq:wo-speichert-outlook-meine-email-in-welchem-ordner&quot;&gt;Wo speichert Outlook meine E-Mail? In welchem Ordner speichert Outlook meine E-Mail?&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Outlook 365 und 2019 bis Outlook 97&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;outlook_365_und_2019_bis_outlook_97&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;96-8456&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit3&quot; id=&quot;outlook_express&quot;&gt;Outlook Express&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/en-us/outlook-help/import-your-messages-or-account-from-outlook-express-to-outlook-HA010079919.aspx?CTT=1&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/en-us/outlook-help/import-your-messages-or-account-from-outlook-express-to-outlook-HA010079919.aspx?CTT=1&quot; rel=&quot;ugc nofollow&quot;&gt;Import your messages or account from Outlook Express to Outlook 2007&lt;/a&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://office.microsoft.com/en-us/outlook-help/import-your-messages-or-account-from-outlook-express-to-outlook-HA001094387.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://office.microsoft.com/en-us/outlook-help/import-your-messages-or-account-from-outlook-express-to-outlook-HA001094387.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;Import your messages or account from Outlook Express to Outlook 2003&lt;/a&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/2398839/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/2398839/de&quot; rel=&quot;ugc nofollow&quot;&gt;Grundlegende Reparatur Kit an Outlook Express&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Outlook Express&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;outlook_express&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;8457-8997&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit4&quot; id=&quot;windows_live_mail&quot;&gt;Windows Live Mail&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/980534/de&quot; class=&quot;urlextern&quot; title=&quot;http://support.microsoft.com/kb/980534/de&quot; rel=&quot;ugc nofollow&quot;&gt;Exportieren von Windows Live-E-Mail-, Kontakt- und Kalenderdaten nach Outlook&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://mail.live.com/mail/troubleshooting.aspx#errors&quot; class=&quot;urlextern&quot; title=&quot;http://mail.live.com/mail/troubleshooting.aspx#errors&quot; rel=&quot;ugc nofollow&quot;&gt;Problembehandlung Live Mail für Postmaster (Email-Server**)&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Windows Live Mail&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;windows_live_mail&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:4,&amp;quot;range&amp;quot;:&amp;quot;8998-&amp;quot;} --&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 24 Nov 2025 13:46:56 +0000</pubDate>
        </item>
        <item>
            <title>Wie heißen die Outlook Kontakte Spaltennamen auf englisch?</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:wie-heissen-outlook-kontakte-spaltennamen-auf-englisch</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;wie_heissen_die_outlook_kontakte_spaltennamen_auf_englisch&quot;&gt;Wie heißen die Outlook Kontakte Spaltennamen auf englisch?&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

In manchen Fällen möchte man per VBA auf die Outlook Kontakte zugreifen. In diesem Fall benötigt man jedoch die englischen Spaltennamen.&lt;br/&gt;

Auch wenn man per Access eine Verknüpfung zur Tabelle erstellt, erhält man nur die deutschen Spaltennamen. Diese können aber in VBA nicht verwendet werden.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Lösung:&lt;/em&gt;&lt;br/&gt;

Eine gute Anleitung dazu finden Sie hier:&lt;br/&gt;

&lt;a href=&quot;http://www.msxfaq.de/code/kontaktfelder.htm&quot; class=&quot;urlextern&quot; title=&quot;http://www.msxfaq.de/code/kontaktfelder.htm&quot; rel=&quot;ugc nofollow&quot;&gt;http://www.msxfaq.de/code/kontaktfelder.htm&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
Auch dieser Link ist einen Blick wert:&lt;br/&gt;

&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/cc513843.aspx&quot; class=&quot;urlextern&quot; title=&quot;http://msdn.microsoft.com/en-us/library/cc513843.aspx&quot; rel=&quot;ugc nofollow&quot;&gt;http://msdn.microsoft.com/en-us/library/cc513843.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;div class=&quot;table sectionedit2&quot;&gt;&lt;table class=&quot;inline&quot;&gt;
	&lt;thead&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		
	&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Account &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Anniversary &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;AssistantName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row4&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;AssistantTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row5&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;AutoResolvedWinner &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row6&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;BillingInformation &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row7&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Birthday &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row8&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;Body &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Notizen)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row9&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Business2TelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row10&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;BusinessAddress &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row11&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;BusinessAddressCity &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Geschäftlich Ort)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row12&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;BusinessAddressCountry &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Geschäftlich Land)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row13&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;BusinessAddressPostalCode &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Geschäftlich PLZ)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row14&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;BusinessAddressPostOfficeBox &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row15&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;BusinessAddressState &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Geschäftlich Bundesland)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row16&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;BusinessAddressStreet &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Geschäftlich Strasse)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row17&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;BusinessCardLayoutXml &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row18&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;BusinessFaxNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row19&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;BusinessHomePage &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row20&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;BusinessTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row21&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;CallbackTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row22&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;CarTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row23&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Categories &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row24&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Companies &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row25&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;CompanyAndFullName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row26&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;CompanyLastFirstNoSpace &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row27&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;CompanyLastFirstSpaceOnly &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row28&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;CompanyMainTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row29&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;CompanyName &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Firma)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row30&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ComputerNetworkName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row31&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Conflicts &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row32&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ConversationIndex &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row33&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ConversationTopic &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row34&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;CreationTime &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row35&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;CustomerID &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row36&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Department &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row37&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;DownloadState &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row38&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email1Address &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row39&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email1AddressType &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row40&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email1DisplayName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row41&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email1EntryID &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row42&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email2Address &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row43&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email2AddressType &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row44&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email2DisplayName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row45&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email2EntryID &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row46&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email3Address &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row47&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email3AddressType &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row48&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email3DisplayName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row49&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Email3EntryID &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row50&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;EntryID &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row51&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;FileAs &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row52&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Firma &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row53&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;FirstName &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Vorname)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row54&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;FullName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row55&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;FullNameAndCompany &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row56&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Gender &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row57&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;GovernmentIDNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row58&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HasPicture &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row59&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Hobby &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row60&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Home2TelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row61&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeAddress &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row62&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeAddressCity &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row63&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeAddressCountry &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row64&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeAddressPostalCode &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row65&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeAddressPostOfficeBox &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row66&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeAddressState &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row67&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeAddressStreet &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row68&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeFaxNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row69&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;HomeTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row70&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;IMAddress &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row71&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Importance &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row72&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Initials &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row73&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;InternetFreeBusyAddress &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row74&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;IsConflict &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row75&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ISDNNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row76&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;IsMarkedAsTask &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row77&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;JobTitle &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row78&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Journal &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row79&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Language &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row80&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;LastFirstAndSuffix &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row81&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;LastFirstNoSpace &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row82&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;LastFirstNoSpaceAndSuffix &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row83&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;LastFirstNoSpaceCompany &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row84&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;LastFirstSpaceOnly &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row85&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;LastFirstSpaceOnlyCompany &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row86&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;LastModificationTime &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row87&quot;&gt;
		&lt;td class=&quot;col0&quot;&gt;LastName &lt;/td&gt;&lt;td class=&quot;col1&quot;&gt;(Nachname)&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row88&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;LastNameAndFirstName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row89&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Links &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row90&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MailingAddress &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row91&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MailingAddressCity &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row92&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MailingAddressCountry &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row93&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MailingAddressPostalCode &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row94&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MailingAddressPostOfficeBox &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row95&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MailingAddressState &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row96&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MailingAddressStreet &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row97&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ManagerName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row98&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MarkForDownload &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row99&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MessageClass &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row100&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MiddleName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row101&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Mileage &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row102&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;MobileTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row103&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;NetMeetingAlias &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row104&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;NetMeetingServer &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row105&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;NickName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row106&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;NoAging &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row107&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OfficeLocation &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row108&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OrganizationalIDNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row109&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherAddress &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row110&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherAddressCity &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row111&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherAddressCountry &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row112&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherAddressPostalCode &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row113&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherAddressPostOfficeBox &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row114&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherAddressState &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row115&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherAddressStreet &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row116&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherFaxNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row117&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OtherTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row118&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OutlookInternalVersion &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row119&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;OutlookVersion &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row120&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;PagerNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row121&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;PersonalHomePage &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row122&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;PrimaryTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row123&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;PrivatStrasseLine2 &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row124&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Profession &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row125&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;PropertyAccessor &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row126&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;RadioTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row127&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ReminderOverrideDefault &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row128&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ReminderPlaySound &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row129&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ReminderSet &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row130&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ReminderSoundFile &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row131&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ReminderTime &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row132&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;SelectedMailingAddress &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row133&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Sensitivity &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row134&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Size &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row135&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Spouse &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row136&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Subject &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row137&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Suffix &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row138&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;TaskCompletedDate &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row139&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;TaskDueDate &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row140&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;TaskStartDate &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row141&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;TaskSubject &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row142&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;TelexNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row143&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;Title &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row144&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;ToDoTaskOrdinal &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row145&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;TTYTDDTelephoneNumber &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row146&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;User1 &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row147&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;User2 &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row148&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;User3 &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row149&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;User4 &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row150&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;UserProperties &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row151&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;WebPage &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row152&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;WeitereLand &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row153&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;YomiCompanyName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row154&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;YomiFirstName &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row155&quot;&gt;
		&lt;td class=&quot;col0&quot; colspan=&quot;2&quot;&gt;YomiLastName &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;table&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;table&amp;quot;,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;598-3818&amp;quot;} --&gt;
&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 04 Apr 2021 14:42:43 +0000</pubDate>
        </item>
        <item>
            <title>Wo speichert Outlook meine E-Mail? In welchem Ordner speichert Outlook meine E-Mail?</title>
            <link>https://www.pflebit.de/doku.php?id=kb:s:0091:faq:wo-speichert-outlook-meine-email-in-welchem-ordner</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;wo_speichert_outlook_meine_e-mail_in_welchem_ordner_speichert_outlook_meine_e-mail&quot;&gt;Wo speichert Outlook meine E-Mail? In welchem Ordner speichert Outlook meine E-Mail?&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;Problem:&lt;/em&gt;&lt;br/&gt;

Wenn man viele E-Mails erhält, baut man sich dafür in der Regel ein Ordnersystem auf, in dem man die E-Mails nach Thema ablegt.&lt;br/&gt;

Sucht man nun nach einer E-Mail mit Hilfe der Suchfunktion, so wird zwar die E-Mail angezeigt, nicht jedoch wo diese liegt.&lt;br/&gt;

Hin und wieder verschiebt man auch einen Ordner versehentlich (In Outlook einen Ordner wiederfinden). Dann möchte man herausfinden, wo dieser nun liegt.
&lt;/p&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;1. Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Um einen verschobenen Ordner wiederzufinden, gehen Sie wie folgt vor:
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Hinweis: Der Ordnerpfad kann nur auf die folgende Art und Weise gefunden werden:&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Postfach im Dateibaum mit der rechten Maustaste anklicken&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Befehl „Datendateieigenschaften“ anklicken&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Schalfläche „Ordnergröße“ anklicken.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Sie sehen nun eine Übersicht mit allen Ordnern und den dazugehörigen Ordnerpfaden.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
&lt;em class=&quot;u&quot;&gt;2. Lösung:&lt;/em&gt;&lt;br/&gt;

&lt;/p&gt;

&lt;p&gt;
Um sich den „Ordner“ anzeigen zu lassen, in dem eine (über die Suche gefundene) E-Mail abgelegt ist, gehen Sie wie folgt vor:
&lt;/p&gt;

&lt;p&gt;
entweder
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Sie markieren eine E-Mail oder öffnen diese&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; und drücken dann die Tastenkombination ALT + ENTER&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; dadurch werden die „Nachrichten-Infos“ angezeigt. Diese enthalten auch den Ordner, in dem die E-Mail abgelegt ist (leider nicht den Pfad)&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
oder 
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Sie drücken die Tastenkombination ALT + STRG + Y&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; dadurch rufen sie die „erweitere Suche“ auf.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Diese enthält auch den Ordner, in dem die E-Mail abgelegt ist (leider nicht den Pfad)&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
oder
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Sie öffnen die normale E-Mail-Ansicht&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Sie klicken auf Ansicht &amp;gt; Ansichtseinstellungen &amp;gt; Spalten: Verfügbare Spalten: Alle E-Mail-Felder und wählen „in Ordner“ aus und fügen diese rechts hinzu.&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Um dann in der E-Mail-Ansicht die neue Spalte zu sehen, müssen Sie die Ansicht groß genug ziehen. Erst dann erscheint die Spalte.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 28 Aug 2024 14:47:57 +0000</pubDate>
        </item>
    </channel>
</rss>
