<?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/</link><description>Recent content in PackageUpdateInfo on PowerShell module PackageUpdateInfo</description><generator>Hugo</generator><language>en</language><lastBuildDate>Mon, 22 Jun 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://packageupdateinfo.andibellstedt.com/index.xml" rel="self" type="application/rss+xml"/><item><title>Overview</title><link>https://packageupdateinfo.andibellstedt.com/docs/01-overview/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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/docs/02-operational-best-practices/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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/docs/03-troubleshooting/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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>Add-PackageUpdateRule</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/add-packageupdaterule/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/add-packageupdaterule/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/add-packageupdaterule/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/2026
PlatyPS schema version: 2024-05-01
title: Add-PackageUpdateRule
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Adds a custom rule that controls how module updates are reported.&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;Add-PackageUpdateRule [[-Id] &amp;lt;int&amp;gt;] [[-IncludeModuleForChecking] &amp;lt;string[]&amp;gt;]
 [[-ExcludeModuleFromChecking] &amp;lt;string[]&amp;gt;] [[-ReportChangeOnMajor] &amp;lt;bool&amp;gt;]
 [[-ReportChangeOnMinor] &amp;lt;bool&amp;gt;] [[-ReportChangeOnBuild] &amp;lt;bool&amp;gt;] [[-ReportChangeOnRevision] &amp;lt;bool&amp;gt;]
 [[-SettingObject] &amp;lt;Configuration&amp;gt;] [-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>Export-PackageUpdateInfo</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/export-packageupdateinfo/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/export-packageupdateinfo/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/export-packageupdateinfo/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/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;Exports PackageUpdateInfo objects to an XML, JSON, or CSV 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/docs/commands/get-packageupdateinfo/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/get-packageupdateinfo/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/get-packageupdateinfo/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/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;Retrieve update information for installed PowerShell modules and identify modules that have newer versions available online.&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] [-Force] [&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] [-Force] [&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] [-Force] [&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-PackageUpdateRule</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/get-packageupdaterule/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/get-packageupdaterule/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/get-packageupdaterule/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/2026
PlatyPS schema version: 2024-05-01
title: Get-PackageUpdateRule
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Retrieve one or more package update rules used to control module update checks and reporting.&lt;/p&gt;
&lt;h2 id="syntax"&gt;SYNTAX&lt;/h2&gt;
&lt;h3 id="showall-default"&gt;ShowAll (Default)&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Get-PackageUpdateRule [-IncludeModuleForChecking &amp;lt;string&amp;gt;] [-ExcludeModuleFromChecking &amp;lt;string&amp;gt;]
 [-IncludeDefaultRule] [-SettingObject &amp;lt;Configuration&amp;gt;] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="byid"&gt;ById&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Get-PackageUpdateRule -Id &amp;lt;int[]&amp;gt; [-SettingObject &amp;lt;Configuration&amp;gt;] [&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-PackageUpdateSetting</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/get-packageupdatesetting/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/get-packageupdatesetting/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/get-packageupdatesetting/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/2026
PlatyPS schema version: 2024-05-01
title: Get-PackageUpdateSetting
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Retrieves the PackageUpdateInfo configuration from the module settings 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;Get-PackageUpdateSetting [[-Path] &amp;lt;string&amp;gt;] [&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;
&lt;h2 id="description"&gt;DESCRIPTION&lt;/h2&gt;
&lt;p&gt;Reads the PackageUpdateInfo configuration file and returns the current module behavior settings as a PackageUpdate.Configuration object.
The returned object includes the default and custom update rules, the update check interval, and the timestamps of the last and last successful checks.&lt;/p&gt;</description></item><item><title>Import-PackageUpdateInfo</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/import-packageupdateinfo/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/import-packageupdateinfo/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/import-packageupdateinfo/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/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;Imports package update information from a previously exported 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.2.7.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.7.0/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.7.0/</guid><description>&lt;h2 id="added"&gt;Added&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Make the module aware of the new PowerShellGet v3.0.0 and use the new command &lt;em&gt;Find-PSResource&lt;/em&gt; for online information retrieval, if available. This should speed up the online information retrieval significantly, because &lt;em&gt;Find-PSResource&lt;/em&gt; can handle multiple module names in one call, while &lt;em&gt;Find-Module&lt;/em&gt; only accept one module name per call.&lt;/li&gt;
&lt;li&gt;Add german (de-DE) localization for about_PackageUpdateInfo.help file.&lt;/li&gt;
&lt;li&gt;Add spanish (es-ES) localization for about_PackageUpdateInfo.help file.&lt;/li&gt;
&lt;li&gt;Add french (fr-FR) localization for about_PackageUpdateInfo.help file.&lt;/li&gt;
&lt;li&gt;Add polish (pl-PL) localization for about_PackageUpdateInfo.help file.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="changed"&gt;Changed&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Fix&lt;/strong&gt; Removed unintended dependency to PSFramework module in the PackageUpdateInfo.psm1 file. This was a leftover from refactoring a while ago. This module is explicitly intended to run without PSFramework. (even I very appreciate PSFramework and use it in many of my projects)&lt;/li&gt;
&lt;li&gt;Some code refactoring in the functions of the module (no functional changes, just code style and readability improvements)&lt;/li&gt;
&lt;li&gt;Refactoring of the comment-based help in the functions of the module (no functional changes, just code style and readability improvements)&lt;/li&gt;
&lt;li&gt;Refactoring about_PackageUpdateInfo.help file with more userfriendly guidance and information about the module and the usage&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Remove-PackageUpdateRule</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/remove-packageupdaterule/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/remove-packageupdaterule/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/remove-packageupdaterule/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/2026
PlatyPS schema version: 2024-05-01
title: Remove-PackageUpdateRule
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Removes one or more custom update-handling rules from the package update configuration.&lt;/p&gt;
&lt;h2 id="syntax"&gt;SYNTAX&lt;/h2&gt;
&lt;h3 id="byid-default"&gt;ById (Default)&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Remove-PackageUpdateRule -Id &amp;lt;int[]&amp;gt; [-Force] [-PassThru] [-SettingObject &amp;lt;Configuration&amp;gt;] [-WhatIf]
 [-Confirm] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="byinputobject"&gt;ByInputObject&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Remove-PackageUpdateRule -InputObject &amp;lt;ModuleRule[]&amp;gt; [-Force] [-PassThru]
 [-SettingObject &amp;lt;Configuration&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>Set-PackageUpdateRule</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/set-packageupdaterule/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/set-packageupdaterule/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/set-packageupdaterule/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/2026
PlatyPS schema version: 2024-05-01
title: Set-PackageUpdateRule
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Updates an existing PackageUpdateInfo rule that controls how module version changes are reported.&lt;/p&gt;
&lt;h2 id="syntax"&gt;SYNTAX&lt;/h2&gt;
&lt;h3 id="byid-default"&gt;ById (Default)&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Set-PackageUpdateRule -Id &amp;lt;int&amp;gt; [-IncludeModuleForChecking &amp;lt;string[]&amp;gt;]
 [-ExcludeModuleFromChecking &amp;lt;string[]&amp;gt;] [-ReportChangeOnMajor &amp;lt;bool&amp;gt;] [-ReportChangeOnMinor &amp;lt;bool&amp;gt;]
 [-ReportChangeOnBuild &amp;lt;bool&amp;gt;] [-ReportChangeOnRevision &amp;lt;bool&amp;gt;] [-SettingObject &amp;lt;Configuration&amp;gt;]
 [-PassThru] [-WhatIf] [-Confirm] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="byinputobject"&gt;ByInputObject&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Set-PackageUpdateRule -InputObject &amp;lt;ModuleRule[]&amp;gt; [-IncludeModuleForChecking &amp;lt;string[]&amp;gt;]
 [-ExcludeModuleFromChecking &amp;lt;string[]&amp;gt;] [-ReportChangeOnMajor &amp;lt;bool&amp;gt;] [-ReportChangeOnMinor &amp;lt;bool&amp;gt;]
 [-ReportChangeOnBuild &amp;lt;bool&amp;gt;] [-ReportChangeOnRevision &amp;lt;bool&amp;gt;] [-SettingObject &amp;lt;Configuration&amp;gt;]
 [-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>Set-PackageUpdateSetting</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/set-packageupdatesetting/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/set-packageupdatesetting/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/set-packageupdatesetting/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/2026
PlatyPS schema version: 2024-05-01
title: Set-PackageUpdateSetting
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Configures update-check behavior and reporting preferences for PackageUpdateInfo.&lt;/p&gt;
&lt;h2 id="syntax"&gt;SYNTAX&lt;/h2&gt;
&lt;h3 id="setbehaviour"&gt;SetBehaviour&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Set-PackageUpdateSetting [-ExcludeModuleFromChecking &amp;lt;string[]&amp;gt;]
 [-IncludeModuleForChecking &amp;lt;string[]&amp;gt;] [-ReportChangeOnMajor &amp;lt;bool&amp;gt;] [-ReportChangeOnMinor &amp;lt;bool&amp;gt;]
 [-ReportChangeOnBuild &amp;lt;bool&amp;gt;] [-ReportChangeOnRevision &amp;lt;bool&amp;gt;] [-UpdateCheckInterval &amp;lt;timespan&amp;gt;]
 [-LastCheck &amp;lt;datetime&amp;gt;] [-LastSuccessfulCheck &amp;lt;datetime&amp;gt;] [-InputObject &amp;lt;Configuration&amp;gt;]
 [-Path &amp;lt;string&amp;gt;] [-PassThru] [-WhatIf] [-Confirm] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="resetbehaviour"&gt;ResetBehaviour&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Set-PackageUpdateSetting [-Reset] [-Path &amp;lt;string&amp;gt;] [-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>Show-PackageUpdateReleaseNote</title><link>https://packageupdateinfo.andibellstedt.com/docs/commands/show-packageupdatereleasenote/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/docs/commands/show-packageupdatereleasenote/</guid><description>&lt;!-- This file is auto-generated using PlatyPS + HUGO Workflow automation. Avoid editing directly! Original Front-Matter:
date: 2026-06-22
document type: cmdlet
external help file: PackageUpdateInfo-Help.xml
flagTranslation: Primary
HelpUri: https://packageupdateinfo.andibellstedt.com/docs/commands/show-packageupdatereleasenote/
Locale: en-US
Module Name: PackageUpdateInfo
ms.date: 06/22/2026
PlatyPS schema version: 2024-05-01
title: Show-PackageUpdateReleaseNote
type: docs
--&gt;
&lt;h2 id="synopsis"&gt;SYNOPSIS&lt;/h2&gt;
&lt;p&gt;Displays release notes for one or more PowerShell modules.&lt;/p&gt;
&lt;h2 id="syntax"&gt;SYNTAX&lt;/h2&gt;
&lt;h3 id="bypackageupdeinfoobject"&gt;ByPackageUpdeInfoObject&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Show-PackageUpdateReleaseNote [[-InputObject] &amp;lt;Info[]&amp;gt;] [-WhatIf] [-Confirm] [&amp;lt;CommonParameters&amp;gt;]
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="bymoduleobject"&gt;ByModuleObject&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;Show-PackageUpdateReleaseNote [[-Module] &amp;lt;psmoduleinfo[]&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>Legal Notice</title><link>https://packageupdateinfo.andibellstedt.com/impressum/</link><pubDate>Sun, 18 Jan 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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/privacy-policy/</link><pubDate>Sun, 18 Jan 2026 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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>Release notes v1.2.6.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.6.0/</link><pubDate>Sun, 14 Dec 2025 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.6.0/</guid><description>&lt;h3 id="fixed"&gt;Fixed&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Update Invoke-WebRequest to use basic parsing (KB5074596)&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.2.5.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.5.0/</link><pubDate>Fri, 29 Sep 2023 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.5.0/</guid><description>&lt;h3 id="fixed"&gt;Fixed&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Issue Issue &lt;a href="https://github.com/AndiBellstedt/PackageUpdateInfo/issues/33"&gt;#33&lt;/a&gt; — &lt;code&gt;Get-PackageUpdateInfo&lt;/code&gt; ignores &lt;code&gt;ExcludeModuleFromChecking&lt;/code&gt;
&lt;ul&gt;
&lt;li&gt;Optimize filtering for module checking against galleries&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="updated"&gt;Updated&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Command &lt;code&gt;Get-PackageUpdateInfo&lt;/code&gt; — Optimize filtering to fit requirement on issue &lt;a href="https://github.com/AndiBellstedt/PackageUpdateInfo/issues/33"&gt;#33&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Command &lt;code&gt;Set-PackageUpdateSetting&lt;/code&gt; — Add examples in the documentation
&lt;ul&gt;
&lt;li&gt;Please read the examples before putting anything on the exclusion list&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.2.4.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.4.0/</link><pubDate>Tue, 26 Sep 2023 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.4.0/</guid><description>&lt;h3 id="fixed"&gt;Fixed&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Issue &lt;a href="https://github.com/AndiBellstedt/PackageUpdateInfo/issues/24"&gt;#24&lt;/a&gt; — Module version number 1.9 is higher than 1.10
&lt;ul&gt;
&lt;li&gt;The online gallery probably delivers version information not as a &amp;lsquo;version&amp;rsquo; type, but as a string.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.2.3.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.3.0/</link><pubDate>Thu, 29 Sep 2022 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.3.0/</guid><description>&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Fix: Issure #26 - Problem on running PSEdition core &amp;amp; desktop in parallel&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Export/Import commands now writes version specific files by default (e.g. PackageUpdateInfo_Desktop_5.xml)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fix: Issue #25 - Export-PackageUpdateInfo -PassThru&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;fix output issue and date conversion bug&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Upd: Add-PackageUpdateRule&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Parameter PassThru now actually works as intended.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fix: Fixing some typos&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fix: Remove files and command depend on PSFramework&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Upd: Add plattform and statistic information to readme file&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.2.1.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.1.0/</link><pubDate>Sun, 05 Jan 2020 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.1.0/</guid><description>&lt;h3 id="fixed"&gt;Fixed&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Ugly error messages if no configuration file exists due to fresh system installation
&lt;ul&gt;
&lt;li&gt;Implemented check and warning messages on this behavior&lt;/li&gt;
&lt;li&gt;Add init routine in module loading if no default config file is present&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="updated"&gt;Updated&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Try to suppress verbose messages on module up-to-dateness checking in &lt;code&gt;Get-PackageUpdateInfo&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.2.0.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.0.0/</link><pubDate>Sun, 29 Dec 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.2.0.0/</guid><description>&lt;h3 id="added"&gt;Added&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Enabling CORE and cross-platform compatibility
&lt;ul&gt;
&lt;li&gt;Code refactoring to bring PackageUpdateInfo into PowerShell version 6 &amp;amp; 7 (CORE)&lt;/li&gt;
&lt;li&gt;Module now also runs on Linux systems&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Command &lt;code&gt;Show-PackageUpdateReleaseNote&lt;/code&gt; — Possibility to get release notes from websites and display it on the console&lt;/li&gt;
&lt;li&gt;Command &lt;code&gt;Get-PackageUpdateSetting&lt;/code&gt; — Query the basic settings for check and report on up-to-dateness information on installed modules&lt;/li&gt;
&lt;li&gt;Command &lt;code&gt;Set-PackageUpdateSetting&lt;/code&gt; — Configure basic settings for check and report on up-to-dateness&lt;/li&gt;
&lt;li&gt;Command &lt;code&gt;Add-PackageUpdateRule&lt;/code&gt; — Declare how a module is handled in reporting&lt;/li&gt;
&lt;li&gt;Command &lt;code&gt;Get-PackageUpdateRule&lt;/code&gt; — Get existing custom rules&lt;/li&gt;
&lt;li&gt;Command &lt;code&gt;Set-PackageUpdateRule&lt;/code&gt; — Edit existing rules on how a module is handled in reporting&lt;/li&gt;
&lt;li&gt;Command &lt;code&gt;Remove-PackageUpdateRule&lt;/code&gt; — Remove existing custom rules&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="updated"&gt;Updated&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Remove dependency on module BurntToast
&lt;ul&gt;
&lt;li&gt;For now, BurntToast is an optional module in PackageUpdateInfo&lt;/li&gt;
&lt;li&gt;Toast notifications are available on Windows 10 in &amp;lsquo;Windows PowerShell&amp;rsquo; and &amp;lsquo;PowerShell&amp;rsquo; (Core)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="features"&gt;Features&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Get-PackageUpdateSetting&lt;/code&gt; introduces:
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;UpdateCheckInterval&lt;/code&gt; — how often &lt;code&gt;Get-PackageUpdateInfo&lt;/code&gt; seeks out for query updates on modules (default: once per hour)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;DefaultRule&lt;/code&gt; — general checking on which module to include/exclude and which part of the version number triggers an update report&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.1.1.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.1.1.0/</link><pubDate>Tue, 12 Feb 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.1.1.0/</guid><description>&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;Fix Issue #11 — error on command when more than 63 modules are installed. The command &lt;code&gt;Find-Module&lt;/code&gt; only accepts a maximum number of 63 strings in the Name parameter. Workaround with a for-each loop around this one.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Release notes v1.1.0.0</title><link>https://packageupdateinfo.andibellstedt.com/changelog/release-v1.1.0.0/</link><pubDate>Sat, 09 Feb 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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/changelog/release-v1.0.2.0/</link><pubDate>Sun, 13 Jan 2019 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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/changelog/release-v1.0.1.0/</link><pubDate>Sat, 10 Nov 2018 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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/about/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/about/</guid><description>&lt;link rel="preload" as="image" href="https://packageupdateinfo.andibellstedt.com/images/main-background_hu_e8c1d12ed7550570.jpg" media="(max-width: 1200px)"&gt;
&lt;link rel="preload" as="image" href="https://packageupdateinfo.andibellstedt.com/images/main-background_hu_92097a149ac58c9a.jpg" media="(min-width: 1200px)"&gt;
&lt;style&gt;
#td-cover-block-0 {
 background-image: url(/images/main-background_hu_e8c1d12ed7550570.jpg);
}
@media only screen and (min-width: 1200px) {
 #td-cover-block-0 {
 background-image: url(/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/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/search/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://packageupdateinfo.andibellstedt.com/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>