I've been playing around with Windows Configuration designer (Ver 10.0.25398.1) and I'm having issues. A large majority of settings do not appear to have any impact.
As a test I decided to create a simple package that should block CTRL-ALT-DEL and WinD key combinations using keyboard filter.
I deployed this package to a Clean build of Windows 11 23H2(22631.3155) and it has no obvious impact at all. If I check features I see that keyboard filter hasn't been enabled. ( I assume it should?) And the blocked keys are still active.
If I check the registry I can see that new keys have been added under HKLM\Software\Microsoft\PolicyManager\current\device\knobs
They're titled SMISettings/KeyboardFilter/PredefinedKeyFilters/ followed by Key name. So the package did something!
The XML that is created from Windows Configuration Designer is as follows...
<?xml version="1.0" encoding="utf-8"?>
<WindowsCustomizations>
<PackageConfig xmlns="urn:schemas-Microsoft-com:Windows-ICD-Package-Config.v1.0">
<ID>{b2369e32-6deb-4e08-93cd-5b604203e614}</ID>
<Name>Keyboard</Name>
<Version>1.1</Version>
<OwnerType>OEM</OwnerType>
<Rank>0</Rank>
<Notes />
</PackageConfig>
<Settings xmlns="urn:schemas-microsoft-com:windows-provisioning">
<Customizations>
<Common>
<SMISettings>
<KeyboardFilter>
<Enable>Enable</Enable>
<PredefinedKeyFilters>
<AltTab>Block</AltTab>
<CtrlAltDel>Block</CtrlAltDel>
<Shift>Block</Shift>
<WinD>Block</WinD>
</PredefinedKeyFilters>
</KeyboardFilter>
</SMISettings>
</Common>
</Customizations>
</Settings>
</WindowsCustomizations>
So, Is this a case of me having missed out something vital or does this product just not work? I've had other issues with Assigned apps and other bits and pieces. Any guidance would be appreciated as this tool would be ideal for my requirements (if it worked)