Skip to content

Commit 1d5daf4

Browse files
committed
Fix metadata to support cabgen
1 parent bea5c96 commit 1d5daf4

File tree

4 files changed

+42
-15
lines changed

4 files changed

+42
-15
lines changed

docset/mapping/cabgenConfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"exclude": [
66
"docset/winserver2022-ps/Microsoft.DiagnosticDataViewer",
77
"docset/winserver2022-ps/windowsdiagnosticdata",
8+
"docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration",
89
"docset/winserver2022-ps/hyper-v"
910
]
1011
}

docset/winserver2022-ps/dism/DISM.md

+37-12
Original file line numberDiff line numberDiff line change
@@ -6,34 +6,58 @@ Help Version: 5.0.1.1
66
Locale: en-US
77
manager: jasgro
88
Module Guid: 389c464d-8b8d-48e9-aafe-6d8a590d6798
9-
Module Name: System.Object[]
9+
Module Name: DISM
1010
ms.author: v-anbarr
1111
ms.date: 12/21/2016
1212
ms.mktglfcycl: manage
1313
ms.prod: w10
14-
ms.reviewer:
14+
ms.reviewer:
1515
ms.sitesec: library
1616
ms.technology: powershell-windows
1717
ms.topic: reference
1818
title: DISM
1919
---
2020

2121
# DISM Module
22-
## Description
23-
The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows images before deployment. A subset of DISM commands can be used on online Windows images. You can use DISM tools to mount, and get information about, Windows image (.wim) files or virtual hard disks (.vhd or .vhdx). You can also use it to install, uninstall, configure, and update Windows features, packages, and drivers in a Windows image or to change the edition of a Windows image.
24-
25-
This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can install the DISM module from the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587). For more information about how to use the DISM PowerShell module installed with the ADK, see [How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927).
26-
27-
For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation. For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1, Windows Server 2012, and Windows Server 2008 R2 SP1), you must install Windows Management Framework 4.0. You can download and install [Windows Management Framework 4.0](https://go.microsoft.com/fwlink/?LinkId=293881) from the Microsoft Download Center.
2822

29-
The DISM platform also includes a command-line tool, DISM.exe, and the [DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) and includes additional functionality that supports servicing commands for international settings.
23+
## Description
3024

31-
You can check for errors when running DISM cmdlets by checking if the $?. If set to True the last operation succeeded. If False the last operation failed. The $LASTEXITCODE contains the exit code of the last Win32 executable run. For example, to check that the **Get-WindowsImage** cmdlet fails to get information about the Windows image contained in the file, E:\images\c.wim, type the following:
25+
The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows
26+
images before deployment. A subset of DISM commands can be used on online Windows images. You can
27+
use DISM tools to mount, and get information about, Windows image (.wim) files or virtual hard disks
28+
(.vhd or .vhdx). You can also use it to install, uninstall, configure, and update Windows features,
29+
packages, and drivers in a Windows image or to change the edition of a Windows image.
30+
31+
This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is
32+
available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can
33+
install the DISM module from the
34+
[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587).
35+
For more information about how to use the DISM PowerShell module installed with the ADK, see
36+
[How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927).
37+
38+
For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation.
39+
For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1,
40+
Windows Server 2012, and Windows Server 2008 R2 SP1), you must install Windows Management Framework
41+
4.0. You can download and install
42+
[Windows Management Framework 4.0](https://go.microsoft.com/fwlink/?LinkId=293881) from the
43+
Microsoft Download Center.
44+
45+
The DISM platform also includes a command-line tool, DISM.exe, and the
46+
[DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in
47+
the
48+
[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587)
49+
and includes additional functionality that supports servicing commands for international settings.
50+
51+
You can check for errors when running DISM cmdlets by checking if the `$?`. If set to True the last
52+
operation succeeded. If False the last operation failed. The `$LASTEXITCODE` contains the exit code
53+
of the last Win32 executable run. For example, to check that the `Get-WindowsImage` cmdlet fails to
54+
get information about the Windows image contained in the file, `E:\images\c.wim`, type the
55+
following:
3256

3357
```
3458
try
3559
{
36-
60+
3761
Get-WindowsImage -ImagePath E:\images\c.wim
3862
}
3963
catch
@@ -44,7 +68,8 @@ catch
4468
4569
```
4670

47-
For more information about error handling, see the [about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390).
71+
For more information about error handling, see the
72+
[about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390).
4873

4974
## DISM Cmdlets
5075
### [Add-AppxProvisionedPackage](./Add-AppxProvisionedPackage.md)

docset/winserver2022-ps/networkcontroller/NetworkController.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ author: andreabarr
33
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
44
Download Help Link: https://aka.ms/winsvr-2022-pshelp
55
Help Version: 5.0.6.1
6-
Locale: en-us
6+
Locale: en-US
77
manager: jasgro
88
Module Guid: 05718206-c147-47b6-83f5-92f52af61c6e
99
Module Name: NetworkController
1010
ms.author: v-anbarr
1111
ms.date: 12/20/2016
1212
ms.mktglfcycl: manage
1313
ms.prod: w10
14-
ms.reviewer:
14+
ms.reviewer:
1515
ms.sitesec: library
1616
ms.technology: powershell-windows
1717
ms.topic: reference

docset/winserver2022-ps/networkcontrollerdiagnostics/NetworkControllerDiagnostics.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ author: andreabarr
33
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
44
Download Help Link: https://aka.ms/winsvr-2022-pshelp
55
Help Version: 5.0.1.0
6+
Locale: en-US
67
manager: jasgro
78
Module Guid: d6df305a-d5c8-4ad6-9161-5ee6ba44b501
89
Module Name: NetworkControllerDiagnostics
910
ms.author: v-anbarr
1011
ms.date: 12/20/2016
1112
ms.mktglfcycl: manage
1213
ms.prod: w10
13-
ms.reviewer:
14+
ms.reviewer:
1415
ms.sitesec: library
1516
ms.technology: powershell-windows
1617
ms.topic: reference

0 commit comments

Comments
 (0)