Modern rebuild of sccmclictr (Client Center for Configuration Manager) using WinUI 3 and PowerShell in-process Runspaces.
Built for Workplace Engineers who need a fast, modern tool to inspect and manage ConfigMgr clients β locally and remotely.
Warning
CMClientCenter can trigger destructive, hard-to-undo actions on the machines it connects to β resetting the Client GUID, purging cached policy, repairing/reinstalling the CM client, forced reboots, and OSD task sequence deployment. It is provided "as is", without warranty of any kind (see License). Test against a non-production client or a lab environment first, and make sure whoever runs it understands what each action does before pointing it at production. Actions with irreversible or high-impact effects (e.g. OSD) already require an in-app confirmation dialog, but that's not a substitute for knowing what you're about to do.
| Page | Description |
|---|---|
| Dashboard | CM Agent version, Site Code, Management Point, Cache, Hardware overview |
| Agent Status | Grouped health checks β Service, Client, Network, Cache, Inventory, Updates, System |
| Hardware | System, CPU, RAM slots, GPU, Disks, OS with full UBR build number |
| Software | Installed apps with filter and install date |
| Actions | Trigger CM client schedules β 13 Standard actions (Machine/User Policy, HW/SW Inventory, Discovery, File Collection, Software Metering, Source List Update, Software/Application Updates) plus a collapsible "Advanced" section with 13 further schedules (SUM install, DCM policy, Endpoint Protection, state messaging, ...) for troubleshooting |
| Software Center | Applications (Install/Repair/Uninstall) and Operating Systems (Task Sequences, incl. OSD with high-impact confirmation dialog) |
| Updates | All Updates / Pending Updates, with per-update Install action |
| Tools | Clear CCM cache, Client repair/reinstall, Reset Policy (purge cached machine policy + force re-download), Pending reboot |
| Console | Open Console β interactive remote PowerShell session (Enter-PSSession) in a new window, pass-through Kerberos/NTLM. Run PS β built-in script library (70 scripts from the original Client Center tool, grouped by folder) plus your own custom .ps1 scripts from a configurable folder, run against the connected computer with live, copyable output |
| Logs | CCM log viewer with CMTrace format parsing, filter, color-coded severity, separate tabs for CCM Client / CCMSetup / PSADT logs, selectable/copyable entries (per-field selection, "Copy All", right-click "Copy line") |
| Settings | Light/Dark/System theme, custom scripts folder location |
Click π Dark under any screenshot to toggle it.
Download the latest release: github.com/snowmountainer/CMClientCenter/releases/latest
Two artifacts are attached to every release:
| Artifact | Use case | How |
|---|---|---|
CMClientCenter-<version>-win-x64-Setup.msi |
Normal install β Start Menu shortcut, clean uninstall via Add/Remove Programs, silent-deployable | Double-click, or msiexec /i CMClientCenter-<version>-win-x64-Setup.msi /quiet for Intune/MECM/GPO deployment. Installs to C:\Program Files\snowmountainer\CMClientCenter, requires admin rights |
CMClientCenter-<version>-win-x64.zip |
Portable / xcopy-deploy, no install, no admin rights needed to unpack | Unzip anywhere, run CMClientCenter.App.exe directly |
Both are self-contained β no separate .NET or Windows App SDK runtime install needed. See Requirements below for OS/rights prerequisites.
Building from source instead (e.g. to contribute) is covered under Build.
- Windows 10 1809+ / Windows 11
- .NET 10 SDK
- Visual Studio 2022+ with Windows Application Development workload
- Admin rights (for WMI/CCM access)
Connect to remote machines using pass-through Kerberos/NTLM β no credentials dialog needed when running from an admin server in the same domain.
TrustedHosts are set automatically on first connection. For manual setup:
# On the admin server (once):
Set-Item WSMan:\localhost\Client\TrustedHosts -Value "*.yourdomain.local" -Force# Restore packages
dotnet restore CMClientCenter.sln
# Build (x64 required for WinUI 3)
dotnet build CMClientCenter.sln --configuration Release --arch x64
# Run
dotnet run --project src/CMClientCenter.App --arch x64CMClientCenter.App WinUI 3 Frontend (Views, ViewModels, Controls)
CMClientCenter.Core Services, Interfaces, Models
CMClientCenter.PowerShell Runspace Engine, Executors, PS Scripts (Embedded Resources)
CMClientCenter.Shared DTOs, Enums, Result<T>
PowerShell scripts come from three places, each serving a different purpose:
| Source | Location | Used by | Editable? |
|---|---|---|---|
| Embedded resources | CMClientCenter.PowerShell/Scripts/*.ps1 |
The app's own pages (Dashboard, Hardware, Actions, ...) | No β compiled into the app |
| Built-in script library | CMClientCenter.App/PSScripts/**/*.ps1 (loose files next to the .exe) |
"Console" page β "Run PS β Built-in Scripts" | Yes β originally from Client Center for Configuration Manager (Ms-PL, see PSScripts/LICENSE-and-SOURCE.md) |
| Custom scripts folder | %LOCALAPPDATA%\CMClientCenter\Scripts by default, configurable in Settings |
"Console" page β "Run PS β Custom Scripts" | Yes β your own scripts, subfolders are grouped automatically |
All scripts are compatible with PS 5.1 and PS 7+.
tests/CMClientCenter.Core.Tests Unit tests for Core services/models
tests/CMClientCenter.PowerShell.Tests Unit tests for the Runspace engine/executors
Project scaffolding is in place; test coverage is still being built out.
Bug reports, feature requests, and PRs are welcome β see CONTRIBUTING.md for how to get set up and what to know before opening a PR.
Found a security issue? Please don't open a public issue β see SECURITY.md for how to report it.
See CHANGELOG.md for what's new in each release.
Inspired by Client Center for Configuration Manager by Roger Zander.
GPL-3.0 β see LICENSE.txt





















