Skip to content

Commit

Permalink
Activity param is now optional
Browse files Browse the repository at this point in the history
  • Loading branch information
sdwheeler committed Jun 22, 2023
1 parent c95d72a commit 23e4426
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions reference/7.4/Microsoft.PowerShell.Utility/Write-Progress.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml
Locale: en-US
Module Name: Microsoft.PowerShell.Utility
ms.date: 05/10/2023
ms.date: 06/22/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/write-progress?view=powershell-7.4&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Write-Progress
Expand All @@ -16,9 +16,9 @@ Displays a progress bar within a PowerShell command window.
## SYNTAX

```
Write-Progress [-Activity] <String> [[-Status] <String>] [[-Id] <Int32>] [-PercentComplete <Int32>]
[-SecondsRemaining <Int32>] [-CurrentOperation <String>] [-ParentId <Int32>] [-Completed]
[-SourceId <Int32>] [<CommonParameters>]
Write-Progress [[-Activity] <String>] [[-Status] <String>] [[-Id] <Int32>]
[-PercentComplete <Int32>] [-SecondsRemaining <Int32>] [-CurrentOperation <String>]
[-ParentId <Int32>] [-Completed] [-SourceId <Int32>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -189,7 +189,7 @@ Type: System.String
Parameter Sets: (All)
Aliases:

Required: True
Required: False
Position: 0
Default value: None
Accept pipeline input: False
Expand Down

0 comments on commit 23e4426

Please sign in to comment.