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. 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. 1. Create a new directory.
```CMD ```cmd
md c:\wim md c:\wim
``` ```
1. Mount the image. 1. Mount the image.
```CMD ```cmd
dism /mount-wim /wimfile:c:\bootmedia\sources\install.wim /index:1 /MountDir:c:\wim dism /mount-wim /wimfile:c:\bootmedia\sources\install.wim /index:1 /MountDir:c:\wim
``` ```
1. Enable the feature. 1. Enable the feature.
```CMD ```cmd
dism /image:c:\wim /enable-feature /all /featureName:Client-EmbeddedShellLauncher dism /image:c:\wim /enable-feature /all /featureName:Client-EmbeddedShellLauncher
``` ```
1. Commit the change. 1. Commit the change.
```CMD ```cmd
dism /unmount-wim /MountDir:c:\wim /Commit dism /unmount-wim /MountDir:c:\wim /Commit
``` ```

View File

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

View File

@ -13,7 +13,7 @@ This class configures which application Shell Launcher starts based on the secur
## Syntax ## Syntax
```powershell ```mof
class WESL_UserSetting { class WESL_UserSetting {
[read, write, Required] string Sid; [read, write, Required] string Sid;
[read, write, Required] string Shell; [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 ## Syntax
```powershell ```mof
[Static] uint32 GetCustomShell ( [Static] uint32 GetCustomShell (
[In, Required] string Sid, [In, Required] string Sid,
[Out, Required] string Shell, [Out, Required] string Shell,

View File

@ -13,7 +13,7 @@ This method retrieves the default Shell Launcher configuration.
## Syntax ## Syntax
```powershell ```mof
[Static] uint32 GetDefaultShell ( [Static] uint32 GetDefaultShell (
[Out, Required] string Shell, [Out, Required] string Shell,
[Out, Required] sint32 DefaultAction [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 ## Syntax
```powershell ```mof
[Static] uint32 IsEnabled( [Static] uint32 IsEnabled(
[Out, Required] boolean Enabled [Out, Required] boolean Enabled
); );

View File

@ -13,7 +13,7 @@ This method removes a Shell Launcher configuration for a specific user or group,
## Syntax ## Syntax
```powershell ```mof
[Static] uint32 RemoveCustomShell ( [Static] uint32 RemoveCustomShell (
[In, Required] string Sid [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 ## Syntax
```powershell ```mof
[Static] uint32 SetCustomShell ( [Static] uint32 SetCustomShell (
[In, Required] string Sid, [In, Required] string Sid,
[In, Required] string Shell, [In, Required] string Shell,

View File

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

View File

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