| external help file | System.Management.Automation.dll-Help.xml |
|---|---|
| Locale | en-US |
| Module Name | Microsoft.PowerShell.Core |
| ms.date | 12/09/2022 |
| online version | https://learn.microsoft.com/powershell/module/microsoft.powershell.core/disable-pssessionconfiguration?view=powershell-7.4&WT.mc_id=ps-gethelp |
| schema | 2.0.0 |
| title | Disable-PSSessionConfiguration |
Disables session configurations on the local computer.
Disable-PSSessionConfiguration [[-Name] <String[]>] [-Force] [-NoServiceRestart] [-WhatIf] [-Confirm]
[<CommonParameters>]
This cmdlet is only available on the Windows platform.
The Disable-PSSessionConfiguration cmdlet disables session configurations on the local computer,
which prevents all users from using the session configurations to create a user-managed sessions
(PSSessions) on the local computer. This is an advanced cmdlet that is designed to be used by
system administrators to manage customized session configurations for their users.
Starting in PowerShell 3.0, the Disable-PSSessionConfiguration cmdlet sets the Enabled setting
of the session configuration (WSMan:\localhost\Plugins\<SessionConfiguration>\Enabled) to False.
In PowerShell 2.0, the Disable-PSSessionConfiguration cmdlet adds a Deny_All entry to the
security descriptor of one or more registered session configurations.
Without parameters, Disable-PSSessionConfiguration disables the Microsoft.PowerShell
configuration, the default configuration used for sessions. Unless the user specifies a different
configuration, both local and remote users are effectively prevented from creating any sessions that
connect to the computer.
To disable all session configurations on the computer, use Disable-PSRemoting.
This example disables the Microsoft.PowerShell session configuration.
Disable-PSSessionConfigurationThis example disables all registered session configurations on the computer.
Disable-PSSessionConfiguration -Name *This example disables all session configurations that have names that begin with Microsoft. The
Force parameter suppresses all user prompts from the cmdlet.
Disable-PSSessionConfiguration -Name Microsoft* -ForceThis example disables the MaintenanceShell and AdminShell session configurations. The
pipeline operator (|) sends the results of a Get-PSSessionConfiguration to
Disable-PSSessionConfiguration.
Get-PSSessionConfiguration -Name MaintenanceShell, AdminShell | Disable-PSSessionConfigurationThis example shows the permissions before and after running Disable-PSSessionConfiguration and the
effect of disabling a session configuration.
PS> Get-PSSessionConfiguration | Format-Table -Property Name, Permission -Auto
Name Permission
---- ----------
MaintenanceShell BUILTIN\Administrators AccessAllowed
microsoft.powershell BUILTIN\Administrators AccessAllowed
microsoft.powershell32 BUILTIN\Administrators AccessAllowed
PS> Disable-PSSessionConfiguration -Name MaintenanceShell -Force
PS> Get-PSSessionConfiguration | Format-Table -Property Name, Permission -Auto
Name Permission
---- ----------
MaintenanceShell Everyone AccessDenied, BUILTIN\Administrators AccessAllowed
microsoft.powershell BUILTIN\Administrators AccessAllowed
microsoft.powershell32 BUILTIN\Administrators AccessAllowed
PS> New-PSSession -ComputerName localhost -ConfigurationName MaintenanceShell
[localhost] Connecting to remote server failed with the following error message : Access is denied.
For more information, see the about_Remote_Troubleshooting Help topic.
+ CategoryInfo : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportException
+ FullyQualifiedErrorId : PSSessionOpenFailed
Note
Disabling the configuration does not prevent you from changing the configuration using the
Set-PSSessionConfiguration cmdlet. It only prevents use of the configuration.
Forces the command to run without asking for user confirmation.
Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseSpecifies an array of names of session configurations to disable. Enter one or more configuration
names. Wildcard characters are permitted. You can also pipe a string that contains a configuration
name or a session configuration object to Disable-PSSessionConfiguration.
If you omit this parameter, Disable-PSSessionConfiguration disables the Microsoft.PowerShell
session configuration.
Type: System.String[]
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: TrueUsed to prevent the restart of the WSMan service. It is not necessary to restart the service to disable the configuration.
Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalsePrompts you for confirmation before running the cmdlet.
Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: FalseShows what would happen if the cmdlet runs. The cmdlet is not run.
Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
You can pipe a session configuration object to this cmdlet.
You can pipe a string that contains the name of a session configuration to this cmdlet.
This cmdlet returns no output.
This cmdlet is only available on Windows platforms.
To run this cmdlet you must start PowerShell by using the Run as administrator option.
New-PSSessionConfigurationFile
Register-PSSessionConfiguration
Test-PSSessionConfigurationFile