diff --git a/windows/configuration/ue-v/uev-changing-the-frequency-of-scheduled-tasks.md b/windows/configuration/ue-v/uev-changing-the-frequency-of-scheduled-tasks.md index 5a395338bf..9bc89c945f 100644 --- a/windows/configuration/ue-v/uev-changing-the-frequency-of-scheduled-tasks.md +++ b/windows/configuration/ue-v/uev-changing-the-frequency-of-scheduled-tasks.md @@ -58,7 +58,7 @@ The **Sync Controller Application** task is used to start the Sync Controller to For example, the following command configures the agent to synchronize settings every 15 minutes instead of the default 30 minutes. -```cmd +```console Schtasks /change /tn “Microsoft\UE-V\Sync Controller Application” /ri 15 ``` @@ -81,7 +81,7 @@ The **Template Auto Update** task checks the settings template catalog for new, **Example:** The following command configures the UE-V service to check the settings template catalog store every hour. -```cmd +```console schtasks /change /tn "Microsoft\UE-V\Template Auto Update" /ri 60 ``` diff --git a/windows/deployment/mbr-to-gpt.md b/windows/deployment/mbr-to-gpt.md index ae11741f04..33e8f5ceec 100644 --- a/windows/deployment/mbr-to-gpt.md +++ b/windows/deployment/mbr-to-gpt.md @@ -81,7 +81,7 @@ If any of these checks fails, the conversion will not proceed and an error will In the following example, disk 0 is validated for conversion. Errors and warnings are logged to the default location, **%windir%**. -```cmd +```console X:\>mbr2gpt /validate /disk:0 MBR2GPT: Attempting to validate disk 0 MBR2GPT: Retrieving layout of disk @@ -102,7 +102,7 @@ In the following example: >As noted in the output from the MBR2GPT tool, you must make changes to the computer firmware so that the new EFI system partition will boot properly. -```cmd +```console X:\>DiskPart Microsoft DiskPart version 10.0.15048.0 @@ -307,8 +307,7 @@ To view a list of options available when using the tool, type **mbr2gpt /?** The following text is displayed: -```cmd - +```console C:\> mbr2gpt /? Converts a disk from MBR to GPT partitioning without modifying or deleting data on the disk. @@ -385,7 +384,7 @@ You can also view the partition type of a disk by opening the Disk Management to If Windows PowerShell and Disk Management are not available, such as when you are using Windows PE, you can determine the partition type at a command prompt with the DiskPart tool. To determine the partition style from a command line, type **diskpart** and then type **list disk**. See the following example: -```cmd +```console X:\>DiskPart Microsoft DiskPart version 10.0.15048.0 @@ -435,7 +434,7 @@ To fix this issue, mount the Windows PE image (WIM), copy the missing file from **Command 1:** - ```cmd + ```console copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Setup\amd64\Sources\ReAgent*.*" "C:\WinPE_Mount\Windows\System32" ``` @@ -447,7 +446,7 @@ To fix this issue, mount the Windows PE image (WIM), copy the missing file from **Command 2:** - ```cmd + ```console copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Setup\amd64\Sources\En-Us\ReAgent*.*" "C:\WinPE_Mount\Windows\System32\En-Us" ```