Skip to content

Commit 1240924

Browse files
authored
Add commands missing from module listing (#12128)
* Add commands missing from module listing * fix xref
1 parent 747b95f commit 1240924

File tree

4 files changed

+75
-7
lines changed

4 files changed

+75
-7
lines changed

reference/7.4/Microsoft.PowerShell.Core/Microsoft.PowerShell.Core.md

Lines changed: 72 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,185 +20,253 @@ startup. This is not a module. You can't import it using `Import-Module` or remo
2020
## Microsoft.PowerShell.Core Cmdlets
2121

2222
### [Add-History](Add-History.md)
23+
2324
Appends entries to the session history.
2425

2526
### [Clear-History](Clear-History.md)
27+
2628
Deletes entries from the PowerShell session command history.
2729

2830
### [Clear-Host](Clear-Host.md)
31+
2932
Clears the display in the host program.
3033

3134
### [Connect-PSSession](Connect-PSSession.md)
35+
3236
Reconnects to disconnected sessions.
3337

3438
### [Debug-Job](Debug-Job.md)
35-
Debugs a running background, remote, or PowerShell Workflow job.
39+
40+
Debugs a running background or remote job.
3641

3742
### [Disable-ExperimentalFeature](Disable-ExperimentalFeature.md)
43+
3844
Disable an experimental feature on startup of new instance of PowerShell.
3945

4046
### [Disable-PSRemoting](Disable-PSRemoting.md)
47+
4148
Prevents PowerShell endpoints from receiving remote connections.
4249

4350
### [Disable-PSSessionConfiguration](Disable-PSSessionConfiguration.md)
51+
4452
Disables session configurations on the local computer.
4553

4654
### [Disconnect-PSSession](Disconnect-PSSession.md)
55+
4756
Disconnects from a session.
4857

4958
### [Enable-ExperimentalFeature](Enable-ExperimentalFeature.md)
59+
5060
Enable an experimental feature on startup of new instance of PowerShell.
5161

5262
### [Enable-PSRemoting](Enable-PSRemoting.md)
63+
5364
Configures the computer to receive remote commands.
5465

5566
### [Enable-PSSessionConfiguration](Enable-PSSessionConfiguration.md)
67+
5668
Enables the session configurations on the local computer.
5769

5870
### [Enter-PSHostProcess](Enter-PSHostProcess.md)
71+
5972
Connects to and enters into an interactive session with a local process.
6073

6174
### [Enter-PSSession](Enter-PSSession.md)
75+
6276
Starts an interactive session with a remote computer.
6377

6478
### [Exit-PSHostProcess](Exit-PSHostProcess.md)
79+
6580
Closes an interactive session with a local process.
6681

6782
### [Exit-PSSession](Exit-PSSession.md)
83+
6884
Ends an interactive session with a remote computer.
6985

7086
### [Export-ModuleMember](Export-ModuleMember.md)
87+
7188
Specifies the module members that are exported.
7289

7390
### [ForEach-Object](ForEach-Object.md)
91+
7492
Performs an operation against each item in a collection of input objects.
7593

7694
### [Get-Command](Get-Command.md)
95+
7796
Gets all commands.
7897

7998
### [Get-ExperimentalFeature](Get-ExperimentalFeature.md)
99+
80100
Gets experimental features.
81101

82102
### [Get-Help](Get-Help.md)
103+
83104
Displays information about PowerShell commands and concepts.
84105

85106
### [Get-History](Get-History.md)
107+
86108
Gets a list of the commands entered during the current session.
87109

88110
### [Get-Job](Get-Job.md)
111+
89112
Gets PowerShell background jobs that are running in the current session.
90113

91114
### [Get-Module](Get-Module.md)
92-
Gets the modules that have been imported or that can be imported into the current session.
115+
116+
List the modules imported in the current session or that can be imported from the PSModulePath.
93117

94118
### [Get-PSHostProcessInfo](Get-PSHostProcessInfo.md)
119+
95120
Gets process information about the PowerShell host.
96121

97122
### [Get-PSSession](Get-PSSession.md)
123+
98124
Gets the PowerShell sessions on local and remote computers.
99125

100126
### [Get-PSSessionCapability](Get-PSSessionCapability.md)
127+
101128
Gets the capabilities of a specific user on a constrained session configuration.
102129

103130
### [Get-PSSessionConfiguration](Get-PSSessionConfiguration.md)
131+
104132
Gets the registered session configurations on the computer.
105133

106134
### [Get-PSSubsystem](Get-PSSubsystem.md)
135+
107136
Retrieves information about the subsystems registered in PowerShell. (Experimental Feature)
108137

109138
### [Import-Module](Import-Module.md)
139+
110140
Adds modules to the current session.
111141

112142
### [Invoke-Command](Invoke-Command.md)
143+
113144
Runs commands on local and remote computers.
114145

115146
### [Invoke-History](Invoke-History.md)
147+
116148
Runs commands from the session history.
117149

118150
### [New-Module](New-Module.md)
151+
119152
Creates a new dynamic module that exists only in memory.
120153

121154
### [New-ModuleManifest](New-ModuleManifest.md)
155+
122156
Creates a new module manifest.
123157

124158
### [New-PSRoleCapabilityFile](New-PSRoleCapabilityFile.md)
159+
125160
Creates a file that defines a set of capabilities to be exposed through a session configuration.
126161

127162
### [New-PSSession](New-PSSession.md)
163+
128164
Creates a persistent connection to a local or remote computer.
129165

130166
### [New-PSSessionConfigurationFile](New-PSSessionConfigurationFile.md)
167+
131168
Creates a file that defines a session configuration.
132169

133170
### [New-PSSessionOption](New-PSSessionOption.md)
171+
134172
Creates an object that contains advanced options for a PSSession.
135173

136174
### [New-PSTransportOption](New-PSTransportOption.md)
175+
137176
Creates an object that contains advanced options for a session configuration.
138177

139178
### [Out-Default](Out-Default.md)
179+
140180
Sends the output to the default formatter and to the default output cmdlet.
141181

142182
### [Out-Host](Out-Host.md)
183+
143184
Sends output to the command line.
144185

145186
### [Out-Null](Out-Null.md)
187+
146188
Hides the output instead of sending it down the pipeline or displaying it.
147189

148190
### [Receive-Job](Receive-Job.md)
191+
149192
Gets the results of the PowerShell background jobs in the current session.
150193

151194
### [Receive-PSSession](Receive-PSSession.md)
195+
152196
Gets results of commands in disconnected sessions
153197

154198
### [Register-ArgumentCompleter](Register-ArgumentCompleter.md)
199+
155200
Registers a custom argument completer.
156201

157202
### [Register-PSSessionConfiguration](Register-PSSessionConfiguration.md)
203+
158204
Creates and registers a new session configuration.
159205

160206
### [Remove-Job](Remove-Job.md)
207+
161208
Deletes a PowerShell background job.
162209

163210
### [Remove-Module](Remove-Module.md)
211+
164212
Removes modules from the current session.
165213

166214
### [Remove-PSSession](Remove-PSSession.md)
215+
167216
Closes one or more PowerShell sessions (PSSessions).
168217

169218
### [Save-Help](Save-Help.md)
219+
170220
Downloads and saves the newest help files to a file system directory.
171221

172222
### [Set-PSDebug](Set-PSDebug.md)
223+
173224
Turns script debugging features on and off, sets the trace level, and toggles strict mode.
174225

175226
### [Set-PSSessionConfiguration](Set-PSSessionConfiguration.md)
227+
176228
Changes the properties of a registered session configuration.
177229

178230
### [Set-StrictMode](Set-StrictMode.md)
231+
179232
Establishes and enforces coding rules in expressions, scripts, and script blocks.
180233

181234
### [Start-Job](Start-Job.md)
235+
182236
Starts a PowerShell background job.
183237

184238
### [Stop-Job](Stop-Job.md)
239+
185240
Stops a PowerShell background job.
186241

242+
### [Switch-Process](Switch-Process.md)
243+
244+
On Linux and macOS, the cmdlet calls the `execv()` function to provide similar behavior as POSIX shells.
245+
246+
### [TabExpansion2](TabExpansion2.md)
247+
248+
A helper function that wraps the `CompleteInput()` method of the **CommandCompletion** class to provide tab completion for PowerShell scripts.
249+
187250
### [Test-ModuleManifest](Test-ModuleManifest.md)
251+
188252
Verifies that a module manifest file accurately describes the contents of a module.
189253

190254
### [Test-PSSessionConfigurationFile](Test-PSSessionConfigurationFile.md)
255+
191256
Verifies the keys and values in a session configuration file.
192257

193258
### [Unregister-PSSessionConfiguration](Unregister-PSSessionConfiguration.md)
259+
194260
Deletes registered session configurations from the computer.
195261

196262
### [Update-Help](Update-Help.md)
263+
197264
Downloads and installs the newest help files on your computer.
198265

199266
### [Wait-Job](Wait-Job.md)
200-
Suppresses the command prompt until one or all of the PowerShell background jobs running in the session are completed.
267+
268+
Waits until one or all of the PowerShell jobs running in the session are in a terminating state.
201269

202270
### [Where-Object](Where-Object.md)
203-
Selects objects from a collection based on their property values.
204271

272+
Selects objects from a collection based on their property values.

reference/7.5/Microsoft.PowerShell.Core/Microsoft.PowerShell.Core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Gets the registered session configurations on the computer.
133133

134134
### [Get-PSSubsystem](Get-PSSubsystem.md)
135135

136-
Retrieves information about the subsystems registered in PowerShell.
136+
Retrieves information about the subsystems registered in PowerShell. (Experimental Feature)
137137

138138
### [Import-Module](Import-Module.md)
139139

reference/7.5/Microsoft.PowerShell.Security/About/about_Certificate_Provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ Get-Help Get-ChildItem -Path Cert:
599599
<!-- link references -->
600600
[01]: ../../Microsoft.PowerShell.Core/About/about_Providers.md
601601
[02]: ../../Microsoft.PowerShell.Core/About/about_Signing.md
602-
[03]: xref:PKI.New-SelfSignedCertificate
602+
[03]: xref:pki.New-SelfSignedCertificate
603603
[04]: /windows-server/security/tls/what-s-new-in-tls-ssl-schannel-ssp-overview#BKMK_TrustedIssuers
604604
[05]: xref:Microsoft.PowerShell.Core.Get-Help
605605
[06]: xref:Microsoft.PowerShell.Management.Get-ChildItem

reference/7.6/Microsoft.PowerShell.Core/Microsoft.PowerShell.Core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Gets the registered session configurations on the computer.
133133

134134
### [Get-PSSubsystem](Get-PSSubsystem.md)
135135

136-
Retrieves information about the subsystems registered in PowerShell.
136+
Retrieves information about the subsystems registered in PowerShell. (Experimental Feature)
137137

138138
### [Import-Module](Import-Module.md)
139139

0 commit comments

Comments
 (0)