Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Describes arrays, which are data structures designed to store collections of items.
Locale: en-US
ms.date: 03/24/2026
ms.date: 07/29/2026
no-loc: [Count, Length, LongLength, Rank, ForEach, Clear, Default, First, Last, SkipUntil, Until, Split, Tuple]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_arrays?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
Expand Down Expand Up @@ -593,7 +593,7 @@ Consider the following example where the object `$myObject` has a property with
single value and a property containing an array of 11 integers.

```powershell
$myObject = [pscustomobject]@{
$myObject = @{
singleValue = 'Hello'
arrayValue = @(0..10)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
metadata:
description: >-
This article explains the intent of the update notification message in Windows PowerShell.
ms.date: 03/06/2026
ms.date: 07/30/2026
ms.topic: faq
title: Windows PowerShell update message FAQ

Expand Down Expand Up @@ -68,4 +68,6 @@ sections:
update channels.

- question: Can I disable the message?
answer: No. There is no way to disable the message.
answer: |
No. There is no way to remove the message. However, you can avoid all startup messages
by running `powershell.exe -nologo`.
Loading