Skip to content
Merged
Changes from all 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
8 changes: 4 additions & 4 deletions reference/5.1/Microsoft.PowerShell.Utility/Start-Sleep.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: 01/22/2023
ms.date: 06/25/2025
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/start-sleep?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Start-Sleep
Expand Down Expand Up @@ -35,12 +35,12 @@ repeating an operation.

## EXAMPLES

### Example 1: Pause execution for 1.5 seconds
### Example 1: Pause execution for 1 second

In this example, the execution of commands pauses for one and one-half seconds.
In this example, the execution of commands pauses for one second.

```powershell
Start-Sleep -Seconds 1.5
Start-Sleep -Seconds 1
```

### Example 2: Pause execution at the command line
Expand Down
Loading