Skip to content

Commit 46b461d

Browse files
authored
Merge pull request #11496 from MicrosoftDocs/main
10/28/2024 PM Publish
2 parents 2afcce4 + 6f101c6 commit 46b461d

File tree

47 files changed

+88
-52
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+88
-52
lines changed

reference/5.1/Microsoft.PowerShell.Core/About/about_Arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ Stopped AppIDSvc Application Identity
784784

785785
> [!NOTE]
786786
> Both `ForEach()` and `Where()` methods are intrinsic members. For more
787-
> information about intrinsic members, see [about_Instrinsic_Members][08].
787+
> information about intrinsic members, see [about_Intrinsic_Members][08].
788788
789789
## Get the members of an array
790790

reference/5.1/Microsoft.PowerShell.Core/About/about_For.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ the new variables `$sortedOriginal` and `$sortedPadded`. Finally, it uses a
349349
properties:
350350

351351
- **Index** represents the current index in the sorted arrays.
352-
- **Original** is the item in the sorted array of original filenamess at the
352+
- **Original** is the item in the sorted array of original filenames at the
353353
current index.
354354
- **Padded** is the item in the sorted array of padded filenames at the current
355355
index.

reference/5.1/Microsoft.PowerShell.Core/About/about_Signing.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ This topic explains how to run selected scripts that aren't signed, even while
2323
the execution policy is **RemoteSigned**, and how to sign scripts for your own
2424
use.
2525

26+
PowerShell checks the Authenticode signature of the following type types:
27+
28+
- `.ps1` script files
29+
- `.psm1` module files
30+
- `.psd1` module manifest and data files
31+
- `.ps1xml` type and format XML files
32+
- `.cdxml` CDXML script files
33+
- `.xaml` XAML script files
34+
2635
For more information about PowerShell execution policies, see
2736
[about_Execution_Policies][01].
2837

reference/5.1/Microsoft.PowerShell.Core/Invoke-Command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ names and the values are session option values.
12581258

12591259
> [!NOTE]
12601260
> If you specify a hashtable for **SessionOption**, PowerShell converts the hashtable into a
1261-
> **System.Management.Autiomation.Remoting.PSSessionOption** object. The values for keys specified
1261+
> **System.Management.Automation.Remoting.PSSessionOption** object. The values for keys specified
12621262
> in the hashtable are cast to the matching property of the object. This behaves differently from
12631263
> calling `New-PSSessionOption`. For example, the **System.TimeSpan** values for the timeout
12641264
> properties, like **IdleTimeout**, convert an integer value into ticks instead of milliseconds.

reference/5.1/Microsoft.PowerShell.Management/Suspend-Service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Suspend-Service [-PassThru] -DisplayName <String[]> [-Include <String[]>] [-Excl
4040

4141
The `Suspend-Service` cmdlet sends a suspend message to the Windows Service Controller for each of
4242
the specified services. While suspended, the service is still running, but its action is stopped
43-
until resumed, such as by usingthe `Resume-Service` cmdlet. You can specify the services by their
43+
until resumed, such as by using the `Resume-Service` cmdlet. You can specify the services by their
4444
service names or display names, or you can use the **InputObject** parameter to pass a service
4545
object that represents the services that you want to suspend.
4646

reference/5.1/Microsoft.PowerShell.Utility/Out-File.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ the file's content in the PowerShell console.
138138
### Example 5: Set file output width for entire scope
139139

140140
This example uses `$PSDefaultParameterValues` to set the `Width` parameter for all invocations of
141-
`Out-File` and the redirection operartors (`>` and `>>`) to 2000. This ensures that everywhere
141+
`Out-File` and the redirection operators (`>` and `>>`) to 2000. This ensures that everywhere
142142
within the current scope that you output table formatted data to file, PowerShell uses a line width
143143
of 2000 instead of a line width determined by the PowerShell host's console width.
144144

reference/5.1/Microsoft.PowerShell.Utility/Update-TypeData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ The second command uses the `Update-TypeData` cmdlet to set the default list pro
199199
**DefaultDisplayPropertySet** parameter to specify the default properties for a list. The selected
200200
properties include the new **Quarter** script property that was added in a previous example.
201201

202-
The last command gets the currnet date and displays it in a list format again. It only displays the
202+
The last command gets the current date and displays it in a list format again. It only displays the
203203
properties defined in the `Update-TypeData` command, instead of the full list of properties.
204204

205205
### Example 5: Set the property a type displays in wide format

reference/5.1/Microsoft.WSMan.Management/Disconnect-WSMan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ PS C:\> cd WSMan:
4141
PS WSMan:\> dir
4242
```
4343

44-
```Outpue
44+
```Output
4545
WSManConfig: Microsoft.WSMan.Management\WSMan::WSMan
4646
ComputerName Type
4747
------------ ----

reference/7.2/Microsoft.PowerShell.Core/About/about_Arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ Stopped AppIDSvc Application Identity
784784

785785
> [!NOTE]
786786
> Both `ForEach()` and `Where()` methods are intrinsic members. For more
787-
> information about intrinsic members, see [about_Instrinsic_Members][08].
787+
> information about intrinsic members, see [about_Intrinsic_Members][08].
788788
789789
## Get the members of an array
790790

reference/7.2/Microsoft.PowerShell.Core/About/about_For.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ the new variables `$sortedOriginal` and `$sortedPadded`. Finally, it uses a
349349
properties:
350350

351351
- **Index** represents the current index in the sorted arrays.
352-
- **Original** is the item in the sorted array of original filenamess at the
352+
- **Original** is the item in the sorted array of original filenames at the
353353
current index.
354354
- **Padded** is the item in the sorted array of padded filenames at the current
355355
index.

0 commit comments

Comments
 (0)