Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates-to-get-windowsupdatelog #3683

Merged
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
external help file: WindowsUpdateLog.psm1-help.xml
Module Name: WindowsUpdate
ms.date: 12/20/2016
ms.date: 10/31/2023
online version: https://learn.microsoft.com/powershell/module/windowsupdate/get-windowsupdatelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
schema: 2.0.0
title: Get-WindowsUpdateLog
Expand All @@ -18,7 +18,7 @@ Merges Windows Update `.etl` files into a single log file.

```
Get-WindowsUpdateLog [[-ETLPath] <String[]>] [[-LogPath] <String>]
[-ProcessingType <String>] [-ForceFlush] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProcessingType <String>] [-IncludeAllLogs] [-ForceFlush] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -141,6 +141,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -IncludeAllLogs

Decodes all update related logs: Windows Update, Update Session Orchestrator (USO), and Update user interface (UX). This parameter is mutually exclusive of all other parameters of this cmdlet. Specifying this parameter will use defaults for all other parameters. This paramater causes a folder to be created on the desktop and readable WindowsUpdate.log, USO.log, and UX.log files are written to it.
mestew marked this conversation as resolved.
Show resolved Hide resolved


```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```


### -LogPath

Specifies the full path to which `Get-WindowsUpdateLog` writes `WindowsUpdate.log`.
Expand Down