diff --git a/reference/5.1/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md b/reference/5.1/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
index 0aeeba7787dc..0e01b0a680f7 100644
--- a/reference/5.1/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
+++ b/reference/5.1/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
@@ -1,7 +1,7 @@
---
description: Both integer and real numeric literals can have type and multiplier suffixes.
Locale: en-US
-ms.date: 03/01/2023
+ms.date: 10/30/2024
no-loc: [482gb]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_numeric_literals?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
@@ -23,14 +23,14 @@ literals are prefixed with `0x` to distinguish them from decimal numbers.
Integer literals can have a type suffix and a multiplier suffix.
-| Suffix | Meaning |
-| ------ | ------------------- |
-| `l` | long data type |
-| `kb` | kilobyte multiplier |
-| `mb` | megabyte multiplier |
-| `gb` | gigabyte multiplier |
-| `tb` | terabyte multiplier |
-| `Pb` | petabyte multiplier |
+| Suffix | Meaning |
+| ------ | -------------------------------------- |
+| `l` | long data type |
+| `kb` | kibibyte (10241) multiplier |
+| `mb` | mebibyte (10242) multiplier |
+| `gb` | gigibyte (10243) multiplier |
+| `tb` | teribyte (10244) multiplier |
+| `pb` | petibyte (10245) multiplier |
The type of an integer literal is determined by its value, the type suffix, and
the numeric multiplier suffix.
@@ -65,14 +65,14 @@ the numeric value 100.
Real literals can have a type suffix and a multiplier suffix.
-| Suffix | Meaning |
-| ------ | ------------------- |
-| `d` | decimal data type |
-| `kb` | kilobyte multiplier |
-| `mb` | megabyte multiplier |
-| `gb` | gigabyte multiplier |
-| `tb` | terabyte multiplier |
-| `pb` | petabyte multiplier |
+| Suffix | Meaning |
+| ------ | -------------------------------------- |
+| `d` | decimal data type |
+| `kb` | kibibyte (10241) multiplier |
+| `mb` | mebibyte (10242) multiplier |
+| `gb` | gigibyte (10243) multiplier |
+| `tb` | teribyte (10244) multiplier |
+| `pb` | petibyte (10245) multiplier |
There are two kinds of real literal: double and decimal. These are indicated by
the absence or presence, respectively, of decimal-type suffix. PowerShell does
diff --git a/reference/5.1/Microsoft.PowerShell.Utility/Set-TraceSource.md b/reference/5.1/Microsoft.PowerShell.Utility/Set-TraceSource.md
index f0cf0a032f2f..73077fdf8de4 100644
--- a/reference/5.1/Microsoft.PowerShell.Utility/Set-TraceSource.md
+++ b/reference/5.1/Microsoft.PowerShell.Utility/Set-TraceSource.md
@@ -193,7 +193,7 @@ Specifies the type of events that are traced. The acceptable values for this par
- `Assert`
- `All`
-`All` is the default.
+`None` is the default.
The following values are combinations of other values:
diff --git a/reference/7.2/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md b/reference/7.2/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
index fa4297ba8ae8..1a74d4fd1ca2 100644
--- a/reference/7.2/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
+++ b/reference/7.2/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
@@ -1,7 +1,7 @@
---
description: Both integer and real numeric literals can have type and multiplier suffixes.
Locale: en-US
-ms.date: 03/01/2023
+ms.date: 10/30/2024
no-loc: [482gb]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_numeric_literals?view=powershell-7.2&WT.mc_id=ps-gethelp
schema: 2.0.0
@@ -24,21 +24,21 @@ with `0b` to distinguish them from decimal numbers.
Integer literals can have a type suffix and a multiplier suffix.
-| Suffix | Meaning | Note |
-| ------ | ------------------------------ | ----------------------- |
-| `y` | signed byte data type | Added in PowerShell 6.2 |
-| `uy` | unsigned byte data type | Added in PowerShell 6.2 |
-| `s` | short data type | Added in PowerShell 6.2 |
-| `us` | unsigned short data type | Added in PowerShell 6.2 |
-| `l` | long data type | |
-| `u` | unsigned int or long data type | Added in PowerShell 6.2 |
-| `ul` | unsigned long data type | Added in PowerShell 6.2 |
-| `n` | BigInteger data type | Added in PowerShell 7.0 |
-| `kb` | kilobyte multiplier | |
-| `mb` | megabyte multiplier | |
-| `gb` | gigabyte multiplier | |
-| `tb` | terabyte multiplier | |
-| `pb` | petabyte multiplier | |
+| Suffix | Meaning | Note |
+| ------ | -------------------------------------- | ----------------------- |
+| `y` | signed byte data type | Added in PowerShell 6.2 |
+| `uy` | unsigned byte data type | Added in PowerShell 6.2 |
+| `s` | short data type | Added in PowerShell 6.2 |
+| `us` | unsigned short data type | Added in PowerShell 6.2 |
+| `l` | long data type | |
+| `u` | unsigned int or long data type | Added in PowerShell 6.2 |
+| `ul` | unsigned long data type | Added in PowerShell 6.2 |
+| `n` | BigInteger data type | Added in PowerShell 7.0 |
+| `kb` | kibibyte (10241) multiplier | |
+| `mb` | mebibyte (10242) multiplier | |
+| `gb` | gigibyte (10243) multiplier | |
+| `tb` | teribyte (10244) multiplier | |
+| `pb` | petibyte (10245) multiplier | |
The type of an integer literal is determined by its value, the type suffix, and
the numeric multiplier suffix.
@@ -73,14 +73,14 @@ the numeric value 100.
Real literals can have a type suffix and a multiplier suffix.
-| Suffix | Meaning |
-| ------ | ------------------- |
-| `d` | decimal data type |
-| `kb` | kilobyte multiplier |
-| `mb` | megabyte multiplier |
-| `gb` | gigabyte multiplier |
-| `tb` | terabyte multiplier |
-| `pb` | petabyte multiplier |
+| Suffix | Meaning |
+| ------ | -------------------------------------- |
+| `d` | decimal data type |
+| `kb` | kibibyte (10241) multiplier |
+| `mb` | mebibyte (10242) multiplier |
+| `gb` | gigibyte (10243) multiplier |
+| `tb` | teribyte (10244) multiplier |
+| `pb` | petibyte (10245) multiplier |
There are two kinds of real literal: double and decimal. These are indicated by
the absence or presence, respectively, of decimal-type suffix. PowerShell does
@@ -143,27 +143,27 @@ PS> 0x12Lpb
PowerShell supports the following type accelerators:
-| Accelerator | Note | Description |
-| ----------- | -------------------- | -------------------------------- |
-| `[byte]` | | Byte (unsigned) |
-| `[sbyte]` | | Byte (signed) |
-| `[Int16]` | | 16-bit integer |
-| `[short]` | alias for `[int16]` | 16-bit integer |
-| `[UInt16]` | | 16-bit integer (unsigned) |
-| `[ushort]` | alias for `[uint16]` | 16-bit integer (unsigned) |
-| `[Int32]` | | 32-bit integer |
-| `[int]` | alias for `[int32]` | 32-bit integer |
-| `[UInt32]` | | 32-bit integer (unsigned) |
-| `[uint]` | alias for `[uint32]` | 32-bit integer (unsigned) |
-| `[Int64]` | | 64-bit integer |
-| `[long]` | alias for `[int64]` | 64-bit integer |
-| `[UInt64]` | | 64-bit integer (unsigned) |
-| `[ulong]` | alias for `[uint64]` | 64-bit integer (unsigned) |
-| `[bigint]` | | See [BigInteger Struct][bigint] |
-| `[single]` | | Single precision floating point |
-| `[float]` | alias for `[single]` | Single precision floating point |
-| `[double]` | | Double precision floating point |
-| `[decimal]` | | 128-bit floating point |
+| Accelerator | Note | Description |
+| ----------- | -------------------- | ------------------------------- |
+| `[byte]` | | Byte (unsigned) |
+| `[sbyte]` | | Byte (signed) |
+| `[Int16]` | | 16-bit integer |
+| `[short]` | alias for `[int16]` | 16-bit integer |
+| `[UInt16]` | | 16-bit integer (unsigned) |
+| `[ushort]` | alias for `[uint16]` | 16-bit integer (unsigned) |
+| `[Int32]` | | 32-bit integer |
+| `[int]` | alias for `[int32]` | 32-bit integer |
+| `[UInt32]` | | 32-bit integer (unsigned) |
+| `[uint]` | alias for `[uint32]` | 32-bit integer (unsigned) |
+| `[Int64]` | | 64-bit integer |
+| `[long]` | alias for `[int64]` | 64-bit integer |
+| `[UInt64]` | | 64-bit integer (unsigned) |
+| `[ulong]` | alias for `[uint64]` | 64-bit integer (unsigned) |
+| `[bigint]` | | See [BigInteger Struct][bigint] |
+| `[single]` | | Single precision floating point |
+| `[float]` | alias for `[single]` | Single precision floating point |
+| `[double]` | | Double precision floating point |
+| `[decimal]` | | 128-bit floating point |
> [!NOTE]
> The following type accelerators were added in PowerShell 6.2: `[short]`,
diff --git a/reference/7.2/Microsoft.PowerShell.Utility/Set-TraceSource.md b/reference/7.2/Microsoft.PowerShell.Utility/Set-TraceSource.md
index 9c601f70a60e..b5fc4548d12f 100644
--- a/reference/7.2/Microsoft.PowerShell.Utility/Set-TraceSource.md
+++ b/reference/7.2/Microsoft.PowerShell.Utility/Set-TraceSource.md
@@ -193,7 +193,7 @@ Specifies the type of events that are traced. The acceptable values for this par
- `Assert`
- `All`
-`All` is the default.
+`None` is the default.
The following values are combinations of other values:
diff --git a/reference/7.4/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md b/reference/7.4/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
index 3a7dc16dfbcc..6372fcc44325 100644
--- a/reference/7.4/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
+++ b/reference/7.4/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
@@ -1,7 +1,7 @@
---
description: Both integer and real numeric literals can have type and multiplier suffixes.
Locale: en-US
-ms.date: 03/01/2023
+ms.date: 10/30/2024
no-loc: [482gb]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_numeric_literals?view=powershell-7.4&WT.mc_id=ps-gethelp
schema: 2.0.0
@@ -24,21 +24,21 @@ with `0b` to distinguish them from decimal numbers.
Integer literals can have a type suffix and a multiplier suffix.
-| Suffix | Meaning | Note |
-| ------ | ------------------------------ | ----------------------- |
-| `y` | signed byte data type | Added in PowerShell 6.2 |
-| `uy` | unsigned byte data type | Added in PowerShell 6.2 |
-| `s` | short data type | Added in PowerShell 6.2 |
-| `us` | unsigned short data type | Added in PowerShell 6.2 |
-| `l` | long data type | |
-| `u` | unsigned int or long data type | Added in PowerShell 6.2 |
-| `ul` | unsigned long data type | Added in PowerShell 6.2 |
-| `n` | BigInteger data type | Added in PowerShell 7.0 |
-| `kb` | kilobyte multiplier | |
-| `mb` | megabyte multiplier | |
-| `gb` | gigabyte multiplier | |
-| `tb` | terabyte multiplier | |
-| `pb` | petabyte multiplier | |
+| Suffix | Meaning | Note |
+| ------ | -------------------------------------- | ----------------------- |
+| `y` | signed byte data type | Added in PowerShell 6.2 |
+| `uy` | unsigned byte data type | Added in PowerShell 6.2 |
+| `s` | short data type | Added in PowerShell 6.2 |
+| `us` | unsigned short data type | Added in PowerShell 6.2 |
+| `l` | long data type | |
+| `u` | unsigned int or long data type | Added in PowerShell 6.2 |
+| `ul` | unsigned long data type | Added in PowerShell 6.2 |
+| `n` | BigInteger data type | Added in PowerShell 7.0 |
+| `kb` | kibibyte (10241) multiplier | |
+| `mb` | mebibyte (10242) multiplier | |
+| `gb` | gigibyte (10243) multiplier | |
+| `tb` | teribyte (10244) multiplier | |
+| `pb` | petibyte (10245) multiplier | |
The type of an integer literal is determined by its value, the type suffix, and
the numeric multiplier suffix.
@@ -73,14 +73,14 @@ the numeric value 100.
Real literals can have a type suffix and a multiplier suffix.
-| Suffix | Meaning |
-| ------ | ------------------- |
-| `d` | decimal data type |
-| `kb` | kilobyte multiplier |
-| `mb` | megabyte multiplier |
-| `gb` | gigabyte multiplier |
-| `tb` | terabyte multiplier |
-| `pb` | petabyte multiplier |
+| Suffix | Meaning |
+| ------ | -------------------------------------- |
+| `d` | decimal data type |
+| `kb` | kibibyte (10241) multiplier |
+| `mb` | mebibyte (10242) multiplier |
+| `gb` | gigibyte (10243) multiplier |
+| `tb` | teribyte (10244) multiplier |
+| `pb` | petibyte (10245) multiplier |
There are two kinds of real literal: double and decimal. These are indicated by
the absence or presence, respectively, of decimal-type suffix. PowerShell does
@@ -143,27 +143,27 @@ PS> 0x12Lpb
PowerShell supports the following type accelerators:
-| Accelerator | Note | Description |
-| ----------- | -------------------- | -------------------------------- |
-| `[byte]` | | Byte (unsigned) |
-| `[sbyte]` | | Byte (signed) |
-| `[Int16]` | | 16-bit integer |
-| `[short]` | alias for `[int16]` | 16-bit integer |
-| `[UInt16]` | | 16-bit integer (unsigned) |
-| `[ushort]` | alias for `[uint16]` | 16-bit integer (unsigned) |
-| `[Int32]` | | 32-bit integer |
-| `[int]` | alias for `[int32]` | 32-bit integer |
-| `[UInt32]` | | 32-bit integer (unsigned) |
-| `[uint]` | alias for `[uint32]` | 32-bit integer (unsigned) |
-| `[Int64]` | | 64-bit integer |
-| `[long]` | alias for `[int64]` | 64-bit integer |
-| `[UInt64]` | | 64-bit integer (unsigned) |
-| `[ulong]` | alias for `[uint64]` | 64-bit integer (unsigned) |
-| `[bigint]` | | See [BigInteger Struct][bigint] |
-| `[single]` | | Single precision floating point |
-| `[float]` | alias for `[single]` | Single precision floating point |
-| `[double]` | | Double precision floating point |
-| `[decimal]` | | 128-bit floating point |
+| Accelerator | Note | Description |
+| ----------- | -------------------- | ------------------------------- |
+| `[byte]` | | Byte (unsigned) |
+| `[sbyte]` | | Byte (signed) |
+| `[Int16]` | | 16-bit integer |
+| `[short]` | alias for `[int16]` | 16-bit integer |
+| `[UInt16]` | | 16-bit integer (unsigned) |
+| `[ushort]` | alias for `[uint16]` | 16-bit integer (unsigned) |
+| `[Int32]` | | 32-bit integer |
+| `[int]` | alias for `[int32]` | 32-bit integer |
+| `[UInt32]` | | 32-bit integer (unsigned) |
+| `[uint]` | alias for `[uint32]` | 32-bit integer (unsigned) |
+| `[Int64]` | | 64-bit integer |
+| `[long]` | alias for `[int64]` | 64-bit integer |
+| `[UInt64]` | | 64-bit integer (unsigned) |
+| `[ulong]` | alias for `[uint64]` | 64-bit integer (unsigned) |
+| `[bigint]` | | See [BigInteger Struct][bigint] |
+| `[single]` | | Single precision floating point |
+| `[float]` | alias for `[single]` | Single precision floating point |
+| `[double]` | | Double precision floating point |
+| `[decimal]` | | 128-bit floating point |
> [!NOTE]
> The following type accelerators were added in PowerShell 6.2: `[short]`,
diff --git a/reference/7.4/Microsoft.PowerShell.Utility/Set-TraceSource.md b/reference/7.4/Microsoft.PowerShell.Utility/Set-TraceSource.md
index 3dfe7b8e2637..ee43261665e0 100644
--- a/reference/7.4/Microsoft.PowerShell.Utility/Set-TraceSource.md
+++ b/reference/7.4/Microsoft.PowerShell.Utility/Set-TraceSource.md
@@ -193,7 +193,7 @@ Specifies the type of events that are traced. The acceptable values for this par
- `Assert`
- `All`
-`All` is the default.
+`None` is the default.
The following values are combinations of other values:
diff --git a/reference/7.5/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md b/reference/7.5/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
index aa44f252faa2..25f9470c1944 100644
--- a/reference/7.5/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
+++ b/reference/7.5/Microsoft.PowerShell.Core/About/about_Numeric_Literals.md
@@ -1,7 +1,7 @@
---
description: Both integer and real numeric literals can have type and multiplier suffixes.
Locale: en-US
-ms.date: 03/01/2023
+ms.date: 10/30/2024
no-loc: [482gb]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_numeric_literals?view=powershell-7.5&WT.mc_id=ps-gethelp
schema: 2.0.0
@@ -24,21 +24,21 @@ with `0b` to distinguish them from decimal numbers.
Integer literals can have a type suffix and a multiplier suffix.
-| Suffix | Meaning | Note |
-| ------ | ------------------------------ | ----------------------- |
-| `y` | signed byte data type | Added in PowerShell 6.2 |
-| `uy` | unsigned byte data type | Added in PowerShell 6.2 |
-| `s` | short data type | Added in PowerShell 6.2 |
-| `us` | unsigned short data type | Added in PowerShell 6.2 |
-| `l` | long data type | |
-| `u` | unsigned int or long data type | Added in PowerShell 6.2 |
-| `ul` | unsigned long data type | Added in PowerShell 6.2 |
-| `n` | BigInteger data type | Added in PowerShell 7.0 |
-| `kb` | kilobyte multiplier | |
-| `mb` | megabyte multiplier | |
-| `gb` | gigabyte multiplier | |
-| `tb` | terabyte multiplier | |
-| `pb` | petabyte multiplier | |
+| Suffix | Meaning | Note |
+| ------ | -------------------------------------- | ----------------------- |
+| `y` | signed byte data type | Added in PowerShell 6.2 |
+| `uy` | unsigned byte data type | Added in PowerShell 6.2 |
+| `s` | short data type | Added in PowerShell 6.2 |
+| `us` | unsigned short data type | Added in PowerShell 6.2 |
+| `l` | long data type | |
+| `u` | unsigned int or long data type | Added in PowerShell 6.2 |
+| `ul` | unsigned long data type | Added in PowerShell 6.2 |
+| `n` | BigInteger data type | Added in PowerShell 7.0 |
+| `kb` | kibibyte (10241) multiplier | |
+| `mb` | mebibyte (10242) multiplier | |
+| `gb` | gigibyte (10243) multiplier | |
+| `tb` | teribyte (10244) multiplier | |
+| `pb` | petibyte (10245) multiplier | |
The type of an integer literal is determined by its value, the type suffix, and
the numeric multiplier suffix.
@@ -73,14 +73,14 @@ the numeric value 100.
Real literals can have a type suffix and a multiplier suffix.
-| Suffix | Meaning |
-| ------ | ------------------- |
-| `d` | decimal data type |
-| `kb` | kilobyte multiplier |
-| `mb` | megabyte multiplier |
-| `gb` | gigabyte multiplier |
-| `tb` | terabyte multiplier |
-| `pb` | petabyte multiplier |
+| Suffix | Meaning |
+| ------ | -------------------------------------- |
+| `d` | decimal data type |
+| `kb` | kibibyte (10241) multiplier |
+| `mb` | mebibyte (10242) multiplier |
+| `gb` | gigibyte (10243) multiplier |
+| `tb` | teribyte (10244) multiplier |
+| `pb` | petibyte (10245) multiplier |
There are two kinds of real literal: double and decimal. These are indicated by
the absence or presence, respectively, of decimal-type suffix. PowerShell does
@@ -143,27 +143,27 @@ PS> 0x12Lpb
PowerShell supports the following type accelerators:
-| Accelerator | Note | Description |
-| ----------- | -------------------- | -------------------------------- |
-| `[byte]` | | Byte (unsigned) |
-| `[sbyte]` | | Byte (signed) |
-| `[Int16]` | | 16-bit integer |
-| `[short]` | alias for `[int16]` | 16-bit integer |
-| `[UInt16]` | | 16-bit integer (unsigned) |
-| `[ushort]` | alias for `[uint16]` | 16-bit integer (unsigned) |
-| `[Int32]` | | 32-bit integer |
-| `[int]` | alias for `[int32]` | 32-bit integer |
-| `[UInt32]` | | 32-bit integer (unsigned) |
-| `[uint]` | alias for `[uint32]` | 32-bit integer (unsigned) |
-| `[Int64]` | | 64-bit integer |
-| `[long]` | alias for `[int64]` | 64-bit integer |
-| `[UInt64]` | | 64-bit integer (unsigned) |
-| `[ulong]` | alias for `[uint64]` | 64-bit integer (unsigned) |
-| `[bigint]` | | See [BigInteger Struct][bigint] |
-| `[single]` | | Single precision floating point |
-| `[float]` | alias for `[single]` | Single precision floating point |
-| `[double]` | | Double precision floating point |
-| `[decimal]` | | 128-bit floating point |
+| Accelerator | Note | Description |
+| ----------- | -------------------- | ------------------------------- |
+| `[byte]` | | Byte (unsigned) |
+| `[sbyte]` | | Byte (signed) |
+| `[Int16]` | | 16-bit integer |
+| `[short]` | alias for `[int16]` | 16-bit integer |
+| `[UInt16]` | | 16-bit integer (unsigned) |
+| `[ushort]` | alias for `[uint16]` | 16-bit integer (unsigned) |
+| `[Int32]` | | 32-bit integer |
+| `[int]` | alias for `[int32]` | 32-bit integer |
+| `[UInt32]` | | 32-bit integer (unsigned) |
+| `[uint]` | alias for `[uint32]` | 32-bit integer (unsigned) |
+| `[Int64]` | | 64-bit integer |
+| `[long]` | alias for `[int64]` | 64-bit integer |
+| `[UInt64]` | | 64-bit integer (unsigned) |
+| `[ulong]` | alias for `[uint64]` | 64-bit integer (unsigned) |
+| `[bigint]` | | See [BigInteger Struct][bigint] |
+| `[single]` | | Single precision floating point |
+| `[float]` | alias for `[single]` | Single precision floating point |
+| `[double]` | | Double precision floating point |
+| `[decimal]` | | 128-bit floating point |
> [!NOTE]
> The following type accelerators were added in PowerShell 6.2: `[short]`,
diff --git a/reference/7.5/Microsoft.PowerShell.Utility/Set-TraceSource.md b/reference/7.5/Microsoft.PowerShell.Utility/Set-TraceSource.md
index d275d4995896..ab5d9a16492c 100644
--- a/reference/7.5/Microsoft.PowerShell.Utility/Set-TraceSource.md
+++ b/reference/7.5/Microsoft.PowerShell.Utility/Set-TraceSource.md
@@ -193,7 +193,7 @@ Specifies the type of events that are traced. The acceptable values for this par
- `Assert`
- `All`
-`All` is the default.
+`None` is the default.
The following values are combinations of other values:
diff --git a/reference/docs-conceptual/overview.md b/reference/docs-conceptual/overview.md
index 5f85c28f4a82..2f7125056deb 100644
--- a/reference/docs-conceptual/overview.md
+++ b/reference/docs-conceptual/overview.md
@@ -1,6 +1,6 @@
---
description: This article is an introduction to the PowerShell scripting environment and its features.
-ms.date: 06/28/2023
+ms.date: 10/30/2024
ms.topic: overview
title: What is PowerShell?
---
@@ -69,7 +69,7 @@ enables you to manage your enterprise infrastructure with configuration as code.
Are you new to PowerShell and don't know where to start? Take a look at these resources.
- [Installing PowerShell][25]
-- [PowerShell Bits tutorials][26]
+- [Discover PowerShell][26]
- [PowerShell 101][27]
- [Microsoft Virtual Academy videos][28]
- [PowerShell Learn modules][29]
@@ -103,13 +103,13 @@ Take a look at how PowerShell is being used in different scenarios and on differ
[17]: /powershell/exchange/exchange-management-shell
[18]: /sql/powershell/sql-server-powershell
[19]: https://aws.amazon.com/powershell/
-[20]: https://core.vmware.com/vmware-powercli
+[20]: https://developer.broadcom.com/powercli
[21]: https://cloud.google.com/powershell/
[22]: /powershell/scripting/dsc/overview/dscforengineers
[23]: /powershell/scripting/dsc/configurations/configurations
[24]: /powershell/scripting/dsc/pull-server/enactingconfigurations
[25]: /powershell/scripting/install/installing-powershell
-[26]: /powershell/scripting/learn/tutorials/00-introduction
+[26]: discover-powershell.md
[27]: /powershell/scripting/learn/ps101/00-introduction
[28]: /shows/browse?terms=powershell
[29]: /training/browse/?terms=PowerShell