@@ -104,10 +104,10 @@ If you use the `Receive-PSSession` cmdlet to connect to a session in which no co
104104or suspended, ` Receive-PSSession ` connects to the session, but returns no output or errors.
105105
106106For more information about the Disconnected Sessions feature, see
107- [ about_Remote_Disconnected_Sessions] ( ./ About/about_Remote_Disconnected_Sessions.md) .
107+ [ about_Remote_Disconnected_Sessions] ( About/about_Remote_Disconnected_Sessions.md ) .
108108
109109Some examples use splatting to reduce the line length and improve readability. For more information,
110- see [ about_Splatting] ( ./ About/about_Splatting.md) .
110+ see [ about_Splatting] ( About/about_Splatting.md ) .
111111
112112## EXAMPLES
113113
@@ -179,7 +179,7 @@ disrupts a session connection. PowerShell automatically attempts to reconnect th
179179second for the next four minutes and abandons the effort only if all attempts in the four-minute
180180interval fail.
181181
182- ```
182+ ``` powershell
183183PS> $s = New-PSSession -ComputerName Server01 -Name AD -ConfigurationName ADEndpoint
184184PS> $s
185185
@@ -248,7 +248,7 @@ commands. And, the script resumed execution and is getting the script results.
248248This example uses the ` Receive-PSSession ` cmdlet to reconnect to sessions that were intentionally
249249disconnected and get the results of jobs that were running in the sessions.
250250
251- ```
251+ ``` powershell
252252PS> $parms = @{
253253 InDisconnectedSession = $True
254254 ComputerName = "Server01", "Server02", "Server30"
@@ -318,7 +318,7 @@ results are unexpected, the user can run commands in the sessions to investigate
318318
319319This example shows what happens to a job that's running in a disconnected session.
320320
321- ```
321+ ``` powershell
322322PS> $s = New-PSSession -ComputerName Server01 -Name Test
323323PS> $j = Invoke-Command -Session $s { 1..1500 | Foreach-Object {"Return $_"; sleep 30}} -AsJob
324324PS> $j
@@ -533,7 +533,7 @@ The parameter's value is used to select and filter sessions. It doesn't change t
533533configuration that the session uses.
534534
535535For more information about session configurations, see
536- [about_Session_Configurations](./ About/about_Session_Configurations.md).
536+ [about_Session_Configurations](About/about_Session_Configurations.md).
537537
538538` ` ` yaml
539539Type: System.String
@@ -786,9 +786,8 @@ precedence over maximum values, quotas, or limits set in the session configurati
786786
787787For a description of the session options that includes the default values, see
788788` New-PSSessionOption` . For information about the **$PSSessionOption** preference variable, see
789- [about_Preference_Variables](./About/about_Preference_Variables.md). For more information about
790- session configurations, see
791- [about_Session_Configurations](./About/about_Session_Configurations.md).
789+ [about_Preference_Variables](About/about_Preference_Variables.md). For more information about
790+ session configurations, see [about_Session_Configurations](About/about_Session_Configurations.md).
792791
793792` ` ` yaml
794793Type: System.Management.Automation.Remoting.PSSessionOption
@@ -977,13 +976,13 @@ When you disconnect a **PSSession**, the session state is Disconnected and the a
977976
978977# # RELATED LINKS
979978
980- [about_PSSessions](./ About/about_PSSessions.md)
979+ [about_PSSessions](About/about_PSSessions.md)
981980
982- [about_Remote](./ About/about_Remote.md)
981+ [about_Remote](About/about_Remote.md)
983982
984- [about_Remote_Disconnected_Sessions](./ About/about_Remote_Disconnected_Sessions.md)
983+ [about_Remote_Disconnected_Sessions](About/about_Remote_Disconnected_Sessions.md)
985984
986- [about_Session_Configurations](./ About/about_Session_Configurations.md)
985+ [about_Session_Configurations](About/about_Session_Configurations.md)
987986
988987[Connect-PSSession](Connect-PSSession.md)
989988
0 commit comments