Bringing together the previous two recipes, this recipe will show you how to connect to different session configurations easily with PowerShell Core.
Connecting to endpoints using different session configuration
Getting ready
Install and start PowerShell Core.
How to do it...
Let's perform the following steps:
- Connecting to a different session configuration is extremely simple, if you know the session configuration name. You can test your user's effective session capabilities with the following command:
$configurationName = 'SupportSession'
# If your...