Dark mode

Dark mode

There are 0 results matching

article card image dark article card image light

Published by · Apr 11, 2024 tools · 2 mins read

Introducing: Intune Linux Onboarding Tool

Onboard Ubuntu Linux devices to Microsoft Intune using a bash script. Installs prerequisites and starts the user-driven enrollment. ...

See More
article card image dark article card image light

Published by · Apr 11, 2024 tools · 2 mins read

Introducing: Intune macOS Onboarding Tool

Onboard macOS devices to Microsoft Intune using a bash script that initiates the process. Optionally, the script converts mobile accounts, resets the FileVault key, and removes ...

See More
article card image dark article card image light

Published by · Jan 23, 2024 tools · 3 mins read

Introducing: Intune Device Renaming Tool

Rename Intune Devices by setting a Prefix or using a User Attribute as Prefix. Supports Windows, macOS, and Linux ...

See More
article card image dark article card image light

Published by · Dec 8, 2023 intune · 5 mins read

Intune Logs: A Deep Dive into Locations, Interpretation, and Configuration

A Comprehensive Guide to Locations, Interpretation, and Configuration of Intune Logs ...

See More
article card image dark article card image light

Published by · Aug 14, 2023 configmgr · 2 mins read

Configuration Manager Console Extension to show Device Collection Membership with Console Builder

Use the Configuration Manager Console Builder, to add Collection Membership View to the Device Node ...

See More
article card image dark article card image light

Published by · Aug 3, 2023 tools · 3 mins read

Introducing: Configuration Manager SSRS Dashboards

A Configuration Manager Dashboards solution with Reports for Software Updates, Bitlocker and more ...

See More
article card image dark article card image light

Published by · Aug 3, 2023 tools · 2 mins read

Introducing: PowerShell WMI Management Toolkit Module

Streamline your WMI Namespace, Class, and Instance Management with our PowerShell Module ...

See More
article card image dark article card image light

Published by · Jul 14, 2023 configmgr · 1 mins read

Configuration Manager detailed, filterable Port Documentation

Configuration Manager detailed, filterable port documentation as an excel document ...

See More
article card image dark article card image light

Published by · Jul 14, 2023 configmgr · 3 mins read

Configuration Manager PXE TFTP Window Size Bug

Configuration Manager TFTP Block Size and TFTP Window Size Correct Configuration ...

See More
article card image dark article card image light

Published by · Jun 18, 2023 tools · 4 mins read

Introducing: Configuration Manager Client Cache Cleanup Tool

Cleaning the Configuration Manager Client Cache the Right Way with PowerShell and Configuration Baselines ...

See More
article card image dark article card image light

Published by · Jun 18, 2023 tools · 2 mins read

Introducing: Windows Cache Cleanup Tool

Cleaning Windows and Configuration Manager Caches for Configuration Manager Build and Capture Task Sequence or Standalone Use ...

See More
article card image dark article card image light

Published by · Jun 17, 2023 tools · 1 mins read

Introducing: Windows Update Database Reinitialization Tool

Proactively repair corrupted Windows Update Database with Powershell and Configuration Manager ...

See More
article card image dark article card image light

Published by · Mar 31, 2023 tools · 3 mins read

Introducing: Configuration Manager SQL Products Reporting

A Complete SQL Products reporting solution using Configuration Manager ...

See More
article card image dark article card image light

Published by · Jan 28, 2023 configmgr · 1 mins read

Application Detection Method using the Configuration Manager Application Version

Replace hardcoded application version in scripts, with the Configuration Manager Application Version ...

See More
article card image dark article card image light

Published by · Jan 28, 2023 tools · 3 mins read

Introducing: Certificate Management Toolkit

Managing Certificates with Configuration Manager and PowerShell by using just the Public Key ...

See More
article card image dark article card image light

Published by · Jan 7, 2019 reports · 2 mins read

Configuration Manager Device Boundary and Network Information Report

List Device Boundaries and Network Information with Configuration Manager ...

See More
article card image dark article card image light

Published by · Sep 9, 1980 help · 5 mins read

MEM.Zone Blog Publishing Documentation

Publishing Documentation for MEM.Zone ...

See More

We couldn’t find anything related to

“SCCM”

BLOG / configmgr zone

Configuration Manager Console Extension to show Device Collection Membership with Console Builder

Published by Popovici Ioan · Aug 14, 2023 · 2 mins read
article card image dark article card image light

Quick Summary

This article was originally posted on the now defunct SCCM.Zone and it can be used as an example of how to use Console Builder to extend the Configuration Manager Console.

The Configuration Manager Console Builder is an amazing tool that is already built-in and allows a wide range of customization.
Zeng Yinghua’s blog post was used as a reference when creating this extension.

Notes

The Configuration Manager Console was updated to support this feature by default, at the time this article was republished.

Prerequisites

  • Configuration Manager Console

Recommendations

  • Back up the XmlStorage folder in the .\AdminConsole root.

  • Overwrite the XmlStorage folder on any system that needs the extension.

  • In this example, only AssetManagementNode.xml and ConnectedConsole.xml files need to be backed up.

article card image explorer-admin-console-folder.png
Xml storage folder

Configuration

These are the complete steps to extend the Configuration Manager console using ConsoleBuilder.

  • Start The Console Builder and Open the Connected Console

  • Start with PowerShell

&$env:SMS_ADMIN_UI_PATH.Replace('i386','AdminUI.ConsoleBuilder.exe')
  • Open the Connected Console
article card image console-builder-open-connected-console.png
  • Add a new tab page to the Devices Detail Panel
article card image console-builder-device-detail-panel-new-tab-page.png
  • Configure the tab to run a query
article card image console-builder-device-detail-panel-new-tab-page-add-query-01.png
  • Configure the tab query settings
article card image console-builder-device-detail-panel-new-tab-page-add-query-02.png
  • Add the tab query
SELECT SMS_Collection.*
FROM SMS_Collection
JOIN SMS_FullcollectionMembership ON SMS_FullCollectionMembership.CollectionID=SMS_Collection.CollectionID
WHERE SMS_FullCollectionMembership.ResourceID=##SUB:ResourceID##
article card image console-builder-device-detail-panel-new-tab-page-add-query-03.png
  • Open the Navigation Alias Table and edit the MemberOfCollection Alias
article card image console-builder-navigation-alias-table-memberofcollection.png
  • Edit the Devices View
article card image console-builder-navigation-alias-table-edit-devices-view.png
  • Add a New Tab to the Devices View Detail Panel
article card image console-builder-navigation-alias-table-memberofcollection-new-tab-page.png
  • Configure the tab to run a query
article card image console-builder-navigation-alias-table-memberofcollection-new-tab-page-add-query-01.png
  • Add the tab query
SELECT SMS_Collection.*
FROM SMS_Collection
JOIN SMS_FullcollectionMembership ON SMS_FullCollectionMembership.CollectionID=SMS_Collection.CollectionID
WHERE SMS_FullCollectionMembership.ResourceID=##SUB:ResourceID##
article card image console-builder-navigation-alias-table-memberofcollection-new-tab-page-add-query-02.png

Commit Changes

  • Click Ok on all open settings, close the Console Builder and start/restart the Configuration Manager Console.
Notes

Console Builder has no save function, changes will be committed when the Console Builder is closed!


Preview

article card image configmgr-device-collection-membership-device-node.png
Device Node Extension Preview
article card image configmgr-device-collection-membership-collection-node.png
Collection Node Extension Preview

SHARE

article card image dark article card image light

Published by · Aug 3, 2023 tools · 3 mins read

Introducing: Configuration Manager SSRS Dashboards

A Configuration Manager Dashboards solution with Reports for Software Updates, Bitlocker and more ...

See More
article card image dark article card image light

Published by · Aug 3, 2023 tools · 2 mins read

Introducing: PowerShell WMI Management Toolkit Module

Streamline your WMI Namespace, Class, and Instance Management with our PowerShell Module ...

See More