<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>PackageUpdateInfo on PowerShell module PackageUpdateInfo</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/</link><description>Recent content in PackageUpdateInfo on PowerShell module PackageUpdateInfo</description><generator>Hugo</generator><language>en</language><lastBuildDate>Sun, 18 Jan 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://packageupdateinfo.andibellstedt.com/v1.1.0.0/index.xml" rel="self" type="application/rss+xml"/><item><title>Overview</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/01-overview/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/01-overview/</guid><description>&lt;p&gt;PackageUpdateInfo helps you keep installed PowerShell modules up to date. It compares
local module versions with versions from configured online repositories (for
example PSGallery) and reports when newer versions are available.&lt;/p&gt;
&lt;h2 id="what-does-packageupdateinfo-do"&gt;What does PackageUpdateInfo do?&lt;/h2&gt;
&lt;p&gt;The module can:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Query locally installed modules.&lt;/li&gt;
&lt;li&gt;Discover current online versions.&lt;/li&gt;
&lt;li&gt;Compare versions with configurable sensitivity (major, minor, build, revision).&lt;/li&gt;
&lt;li&gt;Show rich output including repository, release notes, author, and project links.&lt;/li&gt;
&lt;li&gt;Export results for later import and fast startup workflows.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="why-use-packageupdateinfo"&gt;Why use PackageUpdateInfo?&lt;/h2&gt;
&lt;h3 id="convenience"&gt;Convenience&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Quickly identify outdated modules without manually checking each one.&lt;/li&gt;
&lt;li&gt;Export and import update information for offline or delayed review.&lt;/li&gt;
&lt;li&gt;Run update checks in background jobs.&lt;/li&gt;
&lt;li&gt;Use optional toast notifications on Windows.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="automation"&gt;Automation&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Schedule update checks using your profile, scheduled tasks, or startup routines.&lt;/li&gt;
&lt;li&gt;Enforce an update-check interval to reduce unnecessary repository queries.&lt;/li&gt;
&lt;li&gt;Keep custom rules per module pattern for update sensitivity.&lt;/li&gt;
&lt;li&gt;Reuse previously exported data for low-latency shell startup.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="flexibility"&gt;Flexibility&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Include or exclude module name patterns.&lt;/li&gt;
&lt;li&gt;Define rule scope and precedence with default and custom rules.&lt;/li&gt;
&lt;li&gt;Works on Windows, Linux, and macOS.&lt;/li&gt;
&lt;li&gt;Supports Windows PowerShell 5.1 and PowerShell 7+.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="prerequisites"&gt;Prerequisites&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Windows PowerShell 5.1 or PowerShell 7+.&lt;/li&gt;
&lt;li&gt;PowerShellGet access to your target repository (for example PSGallery).&lt;/li&gt;
&lt;li&gt;Optional: BurntToast module for toast notifications on Windows.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="installation"&gt;Installation&lt;/h2&gt;
&lt;p&gt;Install for all users (requires administrative rights):&lt;/p&gt;</description></item><item><title>Operational best practices</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/02-operational-best-practices/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/02-operational-best-practices/</guid><description>&lt;p&gt;This page describes recommended operating patterns for PackageUpdateInfo in
interactive shells, profiles, and automation.&lt;/p&gt;
&lt;h2 id="start-with-default-behavior"&gt;Start with default behavior&lt;/h2&gt;
&lt;p&gt;Reset settings before introducing custom tuning, especially on shared systems:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-powershell"&gt;Set-PackageUpdateSetting -Reset
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Inspect current configuration and rules:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-powershell"&gt;Get-PackageUpdateSetting
Get-PackageUpdateRule -IncludeDefaultRule
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id="use-update-intervals-to-reduce-noise"&gt;Use update intervals to reduce noise&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;Get-PackageUpdateInfo&lt;/code&gt; respects &lt;code&gt;UpdateCheckInterval&lt;/code&gt;. If the last effective
check is still within the configured interval, the cmdlet returns early.&lt;/p&gt;
&lt;p&gt;Set an interval that matches your environment:&lt;/p&gt;</description></item><item><title>Troubleshooting</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/03-troubleshooting/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/03-troubleshooting/</guid><description>&lt;p&gt;Use this guide when PackageUpdateInfo does not return expected results, skips
checks, or fails to import and export data.&lt;/p&gt;
&lt;h2 id="get-actionable-diagnostics-first"&gt;Get actionable diagnostics first&lt;/h2&gt;
&lt;p&gt;Run with verbose output:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-powershell"&gt;Get-PackageUpdateInfo -Verbose
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Validate settings and rules:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-powershell"&gt;Get-PackageUpdateSetting
Get-PackageUpdateRule -IncludeDefaultRule
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id="check-is-skipped-unexpectedly"&gt;Check is skipped unexpectedly&lt;/h2&gt;
&lt;p&gt;Symptom:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You see a warning that update checks are skipped because the check interval
is not expired.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Cause:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;UpdateCheckInterval&lt;/code&gt; and recent &lt;code&gt;LastCheck&lt;/code&gt; or &lt;code&gt;LastSuccessfulCheck&lt;/code&gt; are
preventing a new online check.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Resolution:&lt;/p&gt;</description></item><item><title>Legal Notice</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/impressum/</link><pubDate>Sun, 18 Jan 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/impressum/</guid><description>&lt;div&gt;&lt;a id="td-block-0" class="td-anchor-no-extra-offset"&gt;&lt;/a&gt;&lt;/div&gt;
&lt;section class="row td-box td-box--primary td-box--height-auto"&gt;
&lt;div class="col"&gt;
&lt;div class="h1"&gt;
&lt;h1 id="information-pursuant-to-section-5-of-the-german-telemedia-act-tmg"&gt;Information pursuant to Section 5 of the German Telemedia Act (TMG)&lt;/h1&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;br&gt;
&lt;h2 id="legal-notice"&gt;Legal notice&lt;/h2&gt;
&lt;p&gt;Andreas Bellstedt&lt;br&gt;
Brunnenstr. 38&lt;br&gt;
75387 Neubulach&lt;br&gt;
Germany&lt;/p&gt;
&lt;br&gt;
&lt;h2 id="contact"&gt;Contact&lt;/h2&gt;
&lt;p&gt;Email: &lt;a href="mailto:blog@andibellstedt.com"&gt;blog@andibellstedt.com&lt;/a&gt;&lt;/p&gt;
&lt;br&gt;
&lt;h2 id="legal-form--business-status"&gt;Legal form / business status&lt;/h2&gt;
&lt;p&gt;This website is operated by a private individual / sole proprietor.&lt;/p&gt;
&lt;br&gt;
&lt;h2 id="responsible-for-content-pursuant-to-section-552-of-the-german-interstate-broadcasting-treaty-rstv"&gt;Responsible for content pursuant to Section 55(2) of the German Interstate Broadcasting Treaty (RStV)&lt;/h2&gt;
&lt;p&gt;Andreas Bellstedt&lt;br&gt;
(Address above)&lt;/p&gt;
&lt;br&gt;
&lt;h2 id="liability-for-content"&gt;Liability for content&lt;/h2&gt;
&lt;p&gt;As a service provider, we are responsible for our own content on these pages in accordance with Section 7(1) TMG under general law. Pursuant to Sections 8–10 TMG, however, we are not obligated to monitor transmitted or stored third‑party information or to investigate circumstances that indicate illegal activity.&lt;/p&gt;</description></item><item><title>Privacy Policy</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/privacy-policy/</link><pubDate>Sun, 18 Jan 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/privacy-policy/</guid><description>&lt;div&gt;&lt;a id="td-block-0" class="td-anchor-no-extra-offset"&gt;&lt;/a&gt;&lt;/div&gt;
&lt;section class="row td-box td-box--primary td-box--height-auto"&gt;
&lt;div class="col"&gt;
&lt;div class="h1"&gt;
&lt;h1 id="privacy-policy"&gt;Privacy Policy&lt;/h1&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/section&gt;
&lt;br&gt;
&lt;h2 id="1-privacy-at-a-glance"&gt;1. Privacy at a Glance&lt;/h2&gt;
&lt;h3 id="general-notes"&gt;General Notes&lt;/h3&gt;
&lt;p&gt;The following notes provide a simple overview of what happens to your personal data when you visit this website. Personal data are all data with which you can be personally identified. Detailed information on the topic of data protection can be found in our privacy policy listed below this text.&lt;/p&gt;
&lt;h3 id="data-collection-on-this-website"&gt;Data Collection on this Website&lt;/h3&gt;
&lt;h4 id="who-is-responsible-for-data-collection-on-this-website"&gt;Who is responsible for data collection on this website?&lt;/h4&gt;
&lt;p&gt;The data processing on this website is carried out by the website operator. Their contact details can be found in the section “Notice on the Data Controller” in this privacy policy.&lt;/p&gt;</description></item><item><title>Export-PackageUpdateInfo</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/commands/export-packageupdateinfo/</link><pubDate>Sat, 09 Feb 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/commands/export-packageupdateinfo/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2019-02-09
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: ""
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 02/09/2026
PlatyPS schema version: 2024-05-01
title: Export-PackageUpdateInfo
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Export PackageUpdateInfo to a data file&lt;/p&gt;
&lt;h2 id="syntax"&gt;SYNTAX&lt;/h2&gt;
&lt;h3 id="__allparametersets"&gt;__AllParameterSets&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Export-PackageUpdateInfo [[-Path] &amp;lt;string&amp;gt;] -InputObject &amp;lt;Info[]&amp;gt; [-OutputFormat &amp;lt;string&amp;gt;]
 [-Encoding &amp;lt;string&amp;gt;] [-Force] [-Append] [-IncludeTimeStamp] [-PassThru] [-WhatIf] [-Confirm]
 [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id="aliases"&gt;ALIASES&lt;/h2&gt;
&lt;p&gt;This cmdlet has the following aliases,&lt;/p&gt;</description></item><item><title>Get-PackageUpdateInfo</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/commands/get-packageupdateinfo/</link><pubDate>Sat, 09 Feb 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/commands/get-packageupdateinfo/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2019-02-09
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: ""
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 02/09/2026
PlatyPS schema version: 2024-05-01
title: Get-PackageUpdateInfo
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Get info about up-to-dateness for installed modules&lt;/p&gt;
&lt;h2 id="syntax"&gt;SYNTAX&lt;/h2&gt;
&lt;h3 id="defaultset1-default"&gt;DefaultSet1 (Default)&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Get-PackageUpdateInfo [-Name &amp;lt;string[]&amp;gt;] [-Repository &amp;lt;string[]&amp;gt;] [-ShowOnlyNeededUpdate]
 [-ShowToastNotification] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="currentuser"&gt;CurrentUser&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Get-PackageUpdateInfo [-Name &amp;lt;string[]&amp;gt;] [-Repository &amp;lt;string[]&amp;gt;] [-ShowOnlyNeededUpdate]
 [-ShowToastNotification] [-CurrentUser] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="allusers"&gt;AllUsers&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Get-PackageUpdateInfo [-Name &amp;lt;string[]&amp;gt;] [-Repository &amp;lt;string[]&amp;gt;] [-ShowOnlyNeededUpdate]
 [-ShowToastNotification] [-AllUsers] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id="aliases"&gt;ALIASES&lt;/h2&gt;
&lt;p&gt;This cmdlet has the following aliases,&lt;/p&gt;</description></item><item><title>Import-PackageUpdateInfo</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/commands/import-packageupdateinfo/</link><pubDate>Sat, 09 Feb 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/docs/commands/import-packageupdateinfo/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2019-02-09
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: ""
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 02/09/2026
PlatyPS schema version: 2024-05-01
title: Import-PackageUpdateInfo
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Import PackageUpdateInfo from a data file&lt;/p&gt;
&lt;h2 id="syntax"&gt;SYNTAX&lt;/h2&gt;
&lt;h3 id="__allparametersets"&gt;__AllParameterSets&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Import-PackageUpdateInfo [[-Path] &amp;lt;string&amp;gt;] [-ShowToastNotification] [-InputFormat &amp;lt;string&amp;gt;]
 [-Encoding &amp;lt;string&amp;gt;] [-WhatIf] [-Confirm] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id="aliases"&gt;ALIASES&lt;/h2&gt;
&lt;p&gt;This cmdlet has the following aliases,&lt;/p&gt;</description></item><item><title>Release notes v1.1.0.0</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/changelog/release-v1.1.0.0/</link><pubDate>Sat, 09 Feb 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/changelog/release-v1.1.0.0/</guid><description>&lt;h3 id="added"&gt;Added&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Command &lt;code&gt;Get-PackageUpdateInfo&lt;/code&gt;
&lt;ul&gt;
&lt;li&gt;Possibility to push ToastNotification for update infos with BurntToast module by specifying &lt;code&gt;-ShowToastNotification&lt;/code&gt; switch&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;New dependency to module &lt;em&gt;BurntToast&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="updated"&gt;Updated&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Add Description info on PackageUpdate.Info objects&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="fixed"&gt;Fixed&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Command &lt;code&gt;Get-PackageUpdateInfo&lt;/code&gt;
&lt;ul&gt;
&lt;li&gt;In 1.0.2.0 ReleaseNotes and PublishDate of all modules were put into every PackageUpdate.Info. Used wrong variable. Fixed.&lt;/li&gt;
&lt;li&gt;Minor change in debug output on version comparison&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.0.2.0</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/changelog/release-v1.0.2.0/</link><pubDate>Sun, 13 Jan 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/changelog/release-v1.0.2.0/</guid><description>&lt;ul&gt;
&lt;li&gt;New: Add changelog ;-)&lt;/li&gt;
&lt;li&gt;Upd: Command Get-PackageUpdateInfo
&lt;ul&gt;
&lt;li&gt;add properties on output object
&lt;ul&gt;
&lt;li&gt;ProjectUri&lt;/li&gt;
&lt;li&gt;IconUri&lt;/li&gt;
&lt;li&gt;ReleaseNotes&lt;/li&gt;
&lt;li&gt;Author&lt;/li&gt;
&lt;li&gt;PublishedDate&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Upd: Reformat code to meet codestyle OTBS - K&amp;amp;R(One True Brace Style variant)&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.0.1.0 (Initial release)</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/changelog/release-v1.0.1.0/</link><pubDate>Sat, 10 Nov 2018 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/changelog/release-v1.0.1.0/</guid><description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;Initial release&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;h3 id="added"&gt;Added&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Get-PackageUpdateInfo&lt;/code&gt; — Query all installed modules and display update status&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Export-PackageUpdateInfo&lt;/code&gt; — Export update information to file&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Import-PackageUpdateInfo&lt;/code&gt; — Import previously exported update information&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>About the Author</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/about/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/about/</guid><description>&lt;link rel="preload" as="image" href="https://packageupdateinfo.andibellstedt.com/v1.1.0.0/images/main-background_hu_e8c1d12ed7550570.jpg" media="(max-width: 1200px)"&gt;
&lt;link rel="preload" as="image" href="https://packageupdateinfo.andibellstedt.com/v1.1.0.0/images/main-background_hu_92097a149ac58c9a.jpg" media="(min-width: 1200px)"&gt;
&lt;style&gt;
#td-cover-block-0 {
 background-image: url(/v1.1.0.0/images/main-background_hu_e8c1d12ed7550570.jpg);
}
@media only screen and (min-width: 1200px) {
 #td-cover-block-0 {
 background-image: url(/v1.1.0.0/images/main-background_hu_92097a149ac58c9a.jpg);
 }
}
&lt;/style&gt;
&lt;section id="td-cover-block-0" class="row td-cover-block td-cover-block--height-auto td-below-navbar js-td-cover td-overlay td-overlay--dark -bg-dark" &gt;
 &lt;div class="col-12"&gt;
 &lt;div class="container td-overlay__inner"&gt;
 &lt;div class="text-center"&gt;
 &lt;h1 class="display-1 mt-0 mt-md-5 pb-4"&gt;About the Author&lt;/h1&gt;
 &lt;div class="pt-3 lead"&gt;
 &lt;!-- color="primary bg-gradient td-below-navbar" --&gt;
&lt;p&gt;&lt;img src="https://packageupdateinfo.andibellstedt.com/v1.1.0.0/images/about/author.png" alt="Me"&gt;&lt;/p&gt;
&lt;!-- prettier-ignore --&gt;
&lt;p class="display-6"&gt;- Andi Bellstedt -&lt;/p&gt;
&lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
&lt;/section&gt;
&lt;div&gt;&lt;a id="td-block-1" class="td-anchor-no-extra-offset"&gt;&lt;/a&gt;&lt;/div&gt;
&lt;section class="row td-box td-box--white td-box--height-auto"&gt;
&lt;div class="col"&gt;
&lt;div class="container"&gt;
&lt;h2 id="hello-to-the-world"&gt;Hello to the World!&lt;/h2&gt;
&lt;br&gt;
&lt;p&gt;I&amp;rsquo;m &lt;strong&gt;Andreas Bellstedt&lt;/strong&gt; — an IT professional with more than &lt;strong&gt;20 years of experience&lt;/strong&gt; across enterprise environments. Usually I am called &lt;strong&gt;Andi&lt;/strong&gt;.
I&amp;rsquo;m passionate about technology, but even more about applying it in a way that improves reliability, security, and operational efficiency.&lt;/p&gt;</description></item><item><title>Search Results</title><link>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/search/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/v1.1.0.0/search/</guid><description>&lt;!--
 This page is generated by the search layout and is not meant to be edited directly.
 The content is generated from the search index and the search query.
 The search query is passed as a URL parameter "q", e.g. /en/search?q=example
--&gt;</description></item></channel></rss>