From 5f6cd777b47793a816ebd10b9ba4973575d9fe7a Mon Sep 17 00:00:00 2001 From: VARADHARAJAN K <3296790+RAJU2529@users.noreply.github.com> Date: Sat, 30 Sep 2023 19:05:02 +0530 Subject: [PATCH 1/3] Update Get-WindowsDriver.md --- docset/winserver2022-ps/dism/Get-WindowsDriver.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docset/winserver2022-ps/dism/Get-WindowsDriver.md b/docset/winserver2022-ps/dism/Get-WindowsDriver.md index 4dd23f0b88..d874409370 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsDriver.md +++ b/docset/winserver2022-ps/dism/Get-WindowsDriver.md @@ -61,6 +61,13 @@ PS C:\> Get-WindowsDriver -Path "c:\offline" -Driver "c:\drivers\Usb\Usb.inf" This command gets detailed information about the Usb.inf driver in a mounted Windows image. +### Example 5: Gets all drivers in an online image with logpath and loglevel +``` +PS C:\> Get-WindowsDriver -Online -All -LogPath C:\Temp\debug.log -LogLevel 2 +``` + +This command gets all of the drivers in an online Windows image with specified logpath with loglevel 2 + ## PARAMETERS ### -All From 7a69400169d966b50cb0e6b63a2571f49c4032b3 Mon Sep 17 00:00:00 2001 From: VARADHARAJAN K <3296790+RAJU2529@users.noreply.github.com> Date: Mon, 2 Oct 2023 15:21:54 +0530 Subject: [PATCH 2/3] Update docset/winserver2022-ps/dism/Get-WindowsDriver.md Accept Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/dism/Get-WindowsDriver.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/dism/Get-WindowsDriver.md b/docset/winserver2022-ps/dism/Get-WindowsDriver.md index d874409370..2c06bbbc48 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsDriver.md +++ b/docset/winserver2022-ps/dism/Get-WindowsDriver.md @@ -66,7 +66,7 @@ This command gets detailed information about the Usb.inf driver in a mounted Win PS C:\> Get-WindowsDriver -Online -All -LogPath C:\Temp\debug.log -LogLevel 2 ``` -This command gets all of the drivers in an online Windows image with specified logpath with loglevel 2 +This command gets all of the drivers in an online Windows image with a specified log path with log level 2. ## PARAMETERS From e140a9ff4155ef10f28a3a4cd5a55911f6cf6cd1 Mon Sep 17 00:00:00 2001 From: VARADHARAJAN K <3296790+RAJU2529@users.noreply.github.com> Date: Mon, 2 Oct 2023 15:22:27 +0530 Subject: [PATCH 3/3] Update docset/winserver2022-ps/dism/Get-WindowsDriver.md Accept Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/dism/Get-WindowsDriver.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/dism/Get-WindowsDriver.md b/docset/winserver2022-ps/dism/Get-WindowsDriver.md index 2c06bbbc48..259390c24a 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsDriver.md +++ b/docset/winserver2022-ps/dism/Get-WindowsDriver.md @@ -61,7 +61,7 @@ PS C:\> Get-WindowsDriver -Path "c:\offline" -Driver "c:\drivers\Usb\Usb.inf" This command gets detailed information about the Usb.inf driver in a mounted Windows image. -### Example 5: Gets all drivers in an online image with logpath and loglevel +### Example 5: Get all drivers in an online image with a log path and log level ``` PS C:\> Get-WindowsDriver -Online -All -LogPath C:\Temp\debug.log -LogLevel 2 ```