diff --git a/windows/manage/change-history-for-manage-and-update-windows-10.md b/windows/manage/change-history-for-manage-and-update-windows-10.md index 5f836451bc..cbf16e02fc 100644 --- a/windows/manage/change-history-for-manage-and-update-windows-10.md +++ b/windows/manage/change-history-for-manage-and-update-windows-10.md @@ -126,7 +126,7 @@ This topic lists new and updated topics in the [Manage and update Windows 10](in New -Customize Windows 10 Start with mobile device management (MDM) +[Customize Windows 10 Start with mobile device management (MDM)](customize-windows-10-start-screens-by-using-mobile-device-management.md) diff --git a/windows/manage/customize-windows-10-start-screens-by-using-mobile-device-management.md b/windows/manage/customize-windows-10-start-screens-by-using-mobile-device-management.md index b45f20140d..d3c9160101 100644 --- a/windows/manage/customize-windows-10-start-screens-by-using-mobile-device-management.md +++ b/windows/manage/customize-windows-10-start-screens-by-using-mobile-device-management.md @@ -83,17 +83,8 @@ This example uses Microsoft Intune to configure an MDM policy that applies a cus Example of the same layout file with escape characters replacing the markup characters: - - - - - - - - - - - - - -
XML
<wdcml:p xmlns:wdcml="http://microsoft.com/wdcml">Example of a layout file produced by Export-StartLayout:</wdcml:p><wdcml:snippet xmlns:wdcml="http://microsoft.com/wdcml"><![CDATA[<LayoutModificationTemplate Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
+```
+    <wdcml:p xmlns:wdcml="http://microsoft.com/wdcml">Example of a layout file produced by Export-StartLayout:</wdcml:p><wdcml:snippet xmlns:wdcml="http://microsoft.com/wdcml"><![CDATA[<LayoutModificationTemplate Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
       <DefaultLayoutOverride>
         <StartLayoutCollection>
           <defaultlayout:StartLayout GroupCellWidth="6" xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout">
@@ -105,10 +96,8 @@ This example uses Microsoft Intune to configure an MDM policy that applies a cus
           </defaultlayout:StartLayout>
         </StartLayoutCollection>
       </DefaultLayoutOverride>
-    </LayoutModificationTemplate>]]></wdcml:snippet>
+ </LayoutModificationTemplate>]]></wdcml:snippet> +``` 2. In the Microsoft Intune administration console, click **Policy** > **Add Policy**. diff --git a/windows/manage/lockdown-xml.md b/windows/manage/lockdown-xml.md index 2c7a2b68d6..4108cd3ae2 100644 --- a/windows/manage/lockdown-xml.md +++ b/windows/manage/lockdown-xml.md @@ -87,7 +87,7 @@ To support pinning applications in multiple app packages, an AUMID parameter can The following example shows how to pin both Outlook Mail and Outlook Calendar: -``` syntax +``` diff --git a/windows/manage/reset-a-windows-10-mobile-device.md b/windows/manage/reset-a-windows-10-mobile-device.md index cef13c549f..40b79a96a5 100644 --- a/windows/manage/reset-a-windows-10-mobile-device.md +++ b/windows/manage/reset-a-windows-10-mobile-device.md @@ -50,7 +50,8 @@ To perform a "wipe and persist" reset, preserving the provisioning applied to th 3 - ./Vendor/MSFT/RemoteWipe/DoWipePersistProvisionedData + + ./Vendor/MSFT/RemoteWipe/DoWipePersistProvisionedData diff --git a/windows/manage/set-up-a-kiosk-for-windows-10-for-desktop-editions.md b/windows/manage/set-up-a-kiosk-for-windows-10-for-desktop-editions.md index 51f8190e05..e4d8f2ceb8 100644 --- a/windows/manage/set-up-a-kiosk-for-windows-10-for-desktop-editions.md +++ b/windows/manage/set-up-a-kiosk-for-windows-10-for-desktop-editions.md @@ -288,27 +288,21 @@ Alternatively, you can turn on Shell Launcher using the Deployment Image Servici **To set your custom shell** -- Modify the following PowerShell script as appropriate and run the script on the kiosk device. +Modify the following PowerShell script as appropriate and run the script on the kiosk device. - - - - - - - - - - -
$COMPUTER = "localhost"
+```
+    $COMPUTER = "localhost"
     $NAMESPACE = "root\standardcimv2\embedded"
 
-# Create a handle to the class instance so we can call the static methods.
+    # Create a handle to the class instance so we can call the static methods.
     $ShellLauncherClass = [wmiclass]"\\$COMPUTER\${NAMESPACE}:WESL_UserSetting"
 
 
-# This well-known security identifier (SID) corresponds to the BUILTIN\Administrators group.
+    # This well-known security identifier (SID) corresponds to the BUILTIN\Administrators group.
 
     $Admins_SID = "S-1-5-32-544"
 
-# Create a function to retrieve the SID for a user account on a machine.
+    # Create a function to retrieve the SID for a user account on a machine.
 
     function Get-UsernameSID($AccountName) {
 
@@ -319,56 +313,53 @@ Alternatively, you can turn on Shell Launcher using the Deployment Image Servici
         
     }
 
-# Get the SID for a user account named "Cashier". Rename "Cashier" to an existing account on your system to test this script.
+    # Get the SID for a user account named "Cashier". Rename "Cashier" to an existing account on your system to test this script.
 
     $Cashier_SID = Get-UsernameSID("Cashier")
 
-# Define actions to take when the shell program exits.
+    # Define actions to take when the shell program exits.
 
     $restart_shell = 0
     $restart_device = 1
     $shutdown_device = 2
 
-# Examples
+    # Examples
 
-# Set the command prompt as the default shell, and restart the device if it's closed.
+    # Set the command prompt as the default shell, and restart the device if it's closed.
 
     $ShellLauncherClass.SetDefaultShell("cmd.exe", $restart_device)
 
-# Display the default shell to verify that it was added correctly.
+    # Display the default shell to verify that it was added correctly.
 
     $DefaultShellObject = $ShellLauncherClass.GetDefaultShell()
 
     "`nDefault Shell is set to " + $DefaultShellObject.Shell + " and the default action is set to " + $DefaultShellObject.defaultaction
 
-# Set Internet Explorer as the shell for "Cashier", and restart the machine if it's closed.
+    # Set Internet Explorer as the shell for "Cashier", and restart the machine if it's closed.
 
     $ShellLauncherClass.SetCustomShell($Cashier_SID, "c:\program files\internet explorer\iexplore.exe www.microsoft.com", ($null), ($null), $restart_shell)
 
-# Set Explorer as the shell for administrators.
+    # Set Explorer as the shell for administrators.
 
     $ShellLauncherClass.SetCustomShell($Admins_SID, "explorer.exe")
 
-# View all the custom shells defined.
+    # View all the custom shells defined.
 
     "`nCurrent settings for custom shells:"
     Get-WmiObject -namespace $NAMESPACE -computer $COMPUTER -class WESL_UserSetting | Select Sid, Shell, DefaultAction
 
-# Enable Shell Launcher
+    # Enable Shell Launcher
 
     $ShellLauncherClass.SetEnabled($TRUE)
 
     "`nEnabled is set to " + $DefaultShellObject.IsEnabled()
 
-# Remove the new custom shells.
+    # Remove the new custom shells.
 
     $ShellLauncherClass.RemoveCustomShell($Admins_SID)
 
     $ShellLauncherClass.RemoveCustomShell($Cashier_SID)
-    
+ ``` ## Related topics