mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 13:27:23 +00:00
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:
parent
c149678551
commit
4f90afc3ca
@ -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
|
||||
```
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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,
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
);
|
||||
|
@ -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
|
||||
);
|
||||
|
@ -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,
|
||||
|
@ -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
|
||||
|
@ -13,7 +13,7 @@ This method enables or disables Shell Launcher.
|
||||
|
||||
## Syntax
|
||||
|
||||
```powershell
|
||||
```mof
|
||||
[Static] uint32 SetEnabled(
|
||||
[In, Required] boolean Enabled
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user