If you want to iterate a range on numbers from 1..10 (one to ten) using PowerShell, you can do that with the help of the foreach loop.
Let's take a look with a help of a few examples.
Example 1: One-Liner Example
PS /> 1..10 | ForEach-Object { Write-Host "Number: $_" }
Number: 1
Number: 2
Number: 3
Number: 4
Number: 5
Number: 6
Number: 7
Number: 8
Number: 9
Number: 10
Example 2: Using a PowerShell Script
# foreach 1..10
foreach ($number in 1..10) {
Write-Host "Number: $number"
}
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Powershell,
- How to upgrade PowerShell on Mac
- How to install AWS CLI 2 on Windows 11 using PowerShell
- How to switch to Powershell on Mac Terminal
- How to connect to Microsoft Exchange Online using PowerShell
- How to Check PowerShell Version? [Windows/Mac/Linux]
- How to Comment out Code in PowerShell Script
- How to Identify installed PowerShell version
- How to install PowerShell on macOS
- Open PowerShell Terminal in Visual Studio Code (VSCode)
- PowerShell ps1 script is not digitally signed, you cannot run this script on the current system
- Update Powershell Using Command Line
- PowerShell 1..10 foreach Example
- PowerShell Fix: Get-Help cannot find the Help files for this cmdlet on this computer
- List of PowerShell Cmdlet Commands for Mac
- Help or Man equivalent in PowerShell
- PowerShell SubString with Examples
- PowerShell: How to Get Folder Size
- PowerShell Traditional For Loop Example
- PowerShell Switch Statement with Examples
- PowerShell Concatenate String Examples
- PowerShell For Each Loop Examples
- PowerShell: Grep Command Alternative - Select-String
- How to delete a file using PowerShell [Windows/macOS]
- Fix: nano is not recognized as an internal or external command - Windows PowerShell
- PowerShell on Mac: The term get-service is not recognized as a name of a cmdlet, function, script file, or executable program
More Posts:
- How to Setup maven on Mac (macOS) - Mac-OS-X
- git fatal: Authentication failed error [fix] - Git
- Fix: error: could not lock config file /etc/gitconfig: Permission denied - Git
- Install Homebrew (brew) on Mac M2 - MacOS
- List of jars required for Struts2 project - Java
- When Does macOS Sonoma 14 Release? 26 September 2023 - MacOS
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException - Java
- Mac Shortcut for Fullscreen mode for App Window - MacOS