Skip to content

Commit 851c4b6

Browse files
it-praktykSean Wheeler
authored andcommitted
Replace Windows PowerShell with PowerShell (#2781)
1 parent b6ec385 commit 851c4b6

12 files changed

+21
-21
lines changed

reference/6/PowerShellGet/Find-DscResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ This parameter supports wildcard characters.
175175
If you do not specify wildcard characters, only resources that exactly match the specified names are returned.
176176
If no matches are found, and you have not used any wildcard characters, the command returns an error.
177177
If you use wildcard characters, but do not find matching results, no error is returned.
178-
This follows standard wildcard character matching behavior for Windows PowerShell.
178+
This follows standard wildcard character matching behavior for PowerShell.
179179
180180
```yaml
181181
Type: String[]

reference/6/PowerShellGet/Find-Module.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Accept wildcard characters: False
141141
142142
### -DscResource
143143
Specifies the name, or part of the name, of modules that contain DSC resources.
144-
Per Windows PowerShell conventions, performs an OR search when you provide multiple arguments.
144+
Per PowerShell conventions, performs an OR search when you provide multiple arguments.
145145
146146
```yaml
147147
Type: String[]
@@ -187,7 +187,7 @@ Accept wildcard characters: False
187187
```
188188
189189
### -Includes
190-
Returns only those modules that include specific kinds of Windows PowerShell functionality.
190+
Returns only those modules that include specific kinds of PowerShell functionality.
191191
For example, you might only want to find modules that include DSCResource.
192192
The acceptable values for this parameter are:
193193

reference/6/PowerShellGet/Get-InstalledModule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Get-InstalledModule [[-Name] <String[]>] [-MinimumVersion <Version>] [-RequiredV
2121
```
2222

2323
## DESCRIPTION
24-
The **Get-InstalledModule** cmdlet gets Windows PowerShell modules that are installed on a computer.
24+
The **Get-InstalledModule** cmdlet gets PowerShell modules that are installed on a computer.
2525

2626
## EXAMPLES
2727

reference/6/PowerShellGet/Install-Module.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ You cannot add this parameter if you are attempting to install multiple modules.
120120
The *MinimumVersion* and the *RequiredVersion* parameters are mutually exclusive; you cannot use both parameters in the same command.
121121
122122
If you are installing multiple modules in a single command, and a specified minimum version for a module is not available for installation, the **Install-Module** command silently continues without installing the unavailable module.
123-
For example, if you try to install the ContosoServer module with a minimum version of 2.0, but the latest version of the ContosoServer module is 1.5, the **Install-Module** command does not install the ContosoServer module; it goes to install the next specified module, and Windows PowerShell display errors when the command is finished.
123+
For example, if you try to install the ContosoServer module with a minimum version of 2.0, but the latest version of the ContosoServer module is 1.5, the **Install-Module** command does not install the ContosoServer module; it goes to install the next specified module, and PowerShell display errors when the command is finished.
124124
125125
```yaml
126126
Type: Version
@@ -352,7 +352,7 @@ If the version of the installed module is greater than the value of the *Minimum
352352
To install multiple modules, specify an array of the module names, separated by commas.
353353
You cannot add *MinimumVersion* or *RequiredVersion* if you specify multiple module names.
354354
355-
By default, modules are installed to the Program Files folder, to prevent confusion when you are installing Windows PowerShell Desired State Configuration (DSC) resources.You can pipe multiple **PSGetItemInfo** objects to **Install-Module**; this is another way of specifying multiple modules to install in a single command.
355+
By default, modules are installed to the Program Files folder, to prevent confusion when you are installing PowerShell Desired State Configuration (DSC) resources.You can pipe multiple **PSGetItemInfo** objects to **Install-Module**; this is another way of specifying multiple modules to install in a single command.
356356
357357
To help prevent running modules that contain malicious code, installed modules are not automatically imported by installation.
358358
As a security best practice, evaluate module code before running any cmdlets or functions in a module for the first time.

reference/6/PowerShellGet/New-ScriptFileInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ Accept wildcard characters: False
371371
372372
### -RequiredModules
373373
Specifies modules that must be in the global session state.
374-
If the required modules are not in the global session state, Windows PowerShell imports them.
374+
If the required modules are not in the global session state, PowerShell imports them.
375375
376376
```yaml
377377
Type: Object[]

reference/6/PowerShellGet/Publish-Script.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Specifies a path to one or more locations.
109109
Unlike the *Path* parameter, the value of the *LiteralPath* parameter is used exactly as entered.
110110
No characters are interpreted as wildcards.
111111
If the path includes escape characters, enclose them in single quotation marks.
112-
Single quotation marks tell Windows PowerShell not to interpret any characters as escape sequences.
112+
Single quotation marks tell PowerShell not to interpret any characters as escape sequences.
113113

114114
```yaml
115115
Type: String

reference/6/PowerShellGet/Save-Module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Specifies a path to one or more locations.
119119
Unlike the *Path* parameter, the value of the *LiteralPath* parameter is used exactly as entered.
120120
No characters are interpreted as wildcards.
121121
If the path includes escape characters, enclose them in single quotation marks.
122-
Windows PowerShell does not interpret any characters that are enclosed in single quotation marks as escape sequences.
122+
PowerShell does not interpret any characters that are enclosed in single quotation marks as escape sequences.
123123
124124
```yaml
125125
Type: String

reference/6/PowerShellGet/Save-Script.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Specifies a path to one or more locations.
8383
Unlike the *Path* parameter, the value of the *LiteralPath* parameter is used exactly as entered.
8484
No characters are interpreted as wildcards.
8585
If the path includes escape characters, enclose them in single quotation marks.
86-
Single quotation marks tell Windows PowerShell not to interpret any characters as escape sequences.
86+
Single quotation marks tell PowerShell not to interpret any characters as escape sequences.
8787
8888
```yaml
8989
Type: String

reference/6/PowerShellGet/Test-ScriptFileInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Specifies a path to one or more locations.
9292
Unlike the *Path* parameter, the value of the *LiteralPath* parameter is used exactly as it is entered.
9393
No characters are interpreted as wildcards.
9494
If the path includes escape characters, enclose them in single quotation marks.
95-
Single quotation marks tell Windows PowerShell not to interpret any characters as escape sequences.
95+
Single quotation marks tell PowerShell not to interpret any characters as escape sequences.
9696

9797
```yaml
9898
Type: String

reference/6/PowerShellGet/Update-Module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Update-Module [[-Name] <String[]>] [-RequiredVersion <Version>] [-MaximumVersion
2222
```
2323

2424
## DESCRIPTION
25-
The **Update-Module** cmdlet installs a newer version of a Windows PowerShell module that was installed from the online gallery by running Install-Module on the local computer.
25+
The **Update-Module** cmdlet installs a newer version of a PowerShell module that was installed from the online gallery by running Install-Module on the local computer.
2626

2727
By default, the newest version of the specified module available in online gallery is installed, unless you specify a required version.
2828
You can update an existing, installed module by specifying the name of the module; **Update-Module** searches $env:PSModulePath for the module that you want to update.

0 commit comments

Comments
 (0)