windows_taskbar

pdk
Manage the taskbar within Microsoft Windows.

190 downloads

177 latest version

Version information

  • 0.2.2 (latest)
  • 0.2.1
  • 0.2.0 (deleted)
released Jun 30th 2025
This version is compatible with:
  • Puppet Enterprise 2025.5.x, 2025.4.x, 2025.3.x, 2025.2.x, 2025.1.x, 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x
  • Puppet >= 6.21.0 < 99.0.0
  • Windows

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'rfbennett-windows_taskbar', '0.2.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add rfbennett-windows_taskbar
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install rfbennett-windows_taskbar --version 0.2.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

rfbennett/windows_taskbar — version 0.2.2 Jun 30th 2025

Windows Taskbar

Manage the taskbar within Microsoft Windows.

Table of Contents

  1. Description
  2. Usage - Configuration options and additional functionality
  3. Limitations - OS compatibility, etc.
  4. Development - Guide for contributing to the module

Description

This module allows for easy management of the Windows taskbar. Current focus is on simply adding pinned items, but future enhancements may be incorporated. Please note that some settings may only take effect for new user profiles.

NOTE: This module may assume that you have puppet/stdlib available in your Puppet environment.

Usage

Using a .YAML file (such as common.yaml or for a Node or Role):

  windows_taskbar::pins:
    [
      {
        value: "%windir%\\system32\\services.msc",
        type: "DesktopApplicationLinkPath",
      },
      {
        value: "Microsoft.Windows.Explorer",
        type: "DesktopApplicationID",
      },
      {
        value: "Microsoft.WindowsTerminal_8wekyb3d8bbwe!App",
        type: "AppUserModelID",
      },
    ]

Using a .PP file:

  windows_taskbar {
    pins => [
      {
        value => '%windir%\\system32\\services.msc',
        type  => 'DesktopApplicationLinkPath',
      },
      {
        value => 'Microsoft.Windows.Explorer',
        type  => 'DesktopApplicationID',
      },
      {
        value => 'Microsoft.WindowsTerminal_8wekyb3d8bbwe!App',
        type  => 'AppUserModelID',
      },
    ]
  }

Limitations

  1. This modules uses the following to generate the contents of the REFERENCE.md file:
  • puppet strings generate --format markdown --out REFERENCE.md
  1. This module has been evaluated against the following (determined via $PSVersionTable):
  • Microsoft Windows Server 2025 (running PowerShell 5.1.26100.4202)
  • Microsoft Windows Server 2022 (running PowerShell 5.1.20348.2849)
  • Microsoft Windows Server 2019 (running PowerShell 5.1.17763.7434)
  • Microsoft Windows Server 2016 (running PowerShell 5.1.14393.8146)
  • Microsoft Windows 11 (running PowerShell 5.1.26100.4061)

Development

Feedback and ideas are always welcome - please contact an Author (listed in metadata.json) to discuss your input, or feel free to simply open an Issue.

Command to apply this module locally (and try it out): puppet apply --modulepath="<PathToModuleParentFolders>" --execute "include <ModuleName>" --environment "<EnvironmentName>" --no-splay --verbose --debug

For example: puppet apply --modulepath="C:\ProgramData\PuppetLabs\code\environments\production\modules;c:\projects\forge" --execute "include windows_taskbar" --environment "production" --no-splay