Correct slugs for content types

For a list of valid slugs, see the instructions in https://review.learn.microsoft.com/en-us/help/platform/metadata-taxonomies?branch=main
This commit is contained in:
Gary Moore 2025-03-10 14:09:01 -07:00
parent c149678551
commit 4f90afc3ca
10 changed files with 13 additions and 13 deletions

View File

@ -86,25 +86,25 @@ This example uses a Windows image called install.wim, but you can use the same p
1. Copy install.wim to a temporary folder on hard drive (in the following steps, we assume it's called C:\\wim).
1. Create a new directory.
```CMD
```cmd
md c:\wim
```
1. Mount the image.
```CMD
```cmd
dism /mount-wim /wimfile:c:\bootmedia\sources\install.wim /index:1 /MountDir:c:\wim
```
1. Enable the feature.
```CMD
```cmd
dism /image:c:\wim /enable-feature /all /featureName:Client-EmbeddedShellLauncher
```
1. Commit the change.
```CMD
```cmd
dism /unmount-wim /MountDir:c:\wim /Commit
```

View File

@ -13,7 +13,7 @@ This Windows Management Instrumentation (WMI) provider class configures settings
## Syntax
```powershell
```mof
class WEDL_AssignedAccess {
[Key] string UserSID;
[Read, Write] string AppUserModelId;

View File

@ -13,7 +13,7 @@ This class configures which application Shell Launcher starts based on the secur
## Syntax
```powershell
```mof
class WESL_UserSetting {
[read, write, Required] string Sid;
[read, write, Required] string Shell;

View File

@ -13,7 +13,7 @@ This method retrieves the Shell Launcher configuration for a specific user or gr
## Syntax
```powershell
```mof
[Static] uint32 GetCustomShell (
[In, Required] string Sid,
[Out, Required] string Shell,

View File

@ -13,7 +13,7 @@ This method retrieves the default Shell Launcher configuration.
## Syntax
```powershell
```mof
[Static] uint32 GetDefaultShell (
[Out, Required] string Shell,
[Out, Required] sint32 DefaultAction

View File

@ -13,7 +13,7 @@ This method retrieves a value that indicates if Shell Launcher is enabled or dis
## Syntax
```powershell
```mof
[Static] uint32 IsEnabled(
[Out, Required] boolean Enabled
);

View File

@ -13,7 +13,7 @@ This method removes a Shell Launcher configuration for a specific user or group,
## Syntax
```powershell
```mof
[Static] uint32 RemoveCustomShell (
[In, Required] string Sid
);

View File

@ -13,7 +13,7 @@ This method configures Shell Launcher for a specific user or group, based on the
## Syntax
```powershell
```mof
[Static] uint32 SetCustomShell (
[In, Required] string Sid,
[In, Required] string Shell,

View File

@ -13,7 +13,7 @@ This method sets the default Shell Launcher configuration.
## Syntax
```powershell
```mof
[Static] uint32 SetDefaultShell (
[In, Required] string Shell,
[In, Required] sint32 DefaultAction

View File

@ -13,7 +13,7 @@ This method enables or disables Shell Launcher.
## Syntax
```powershell
```mof
[Static] uint32 SetEnabled(
[In, Required] boolean Enabled
);