Enable-PSSessionConfiguration
啟用本機電腦上的會話設定。
語法
Enable-PSSessionConfiguration
[[-Name] <String[]>]
[-Force]
[-SecurityDescriptorSddl <String>]
[-SkipNetworkProfileCheck]
[-NoServiceRestart]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
此 Cmdlet 僅適用於 Windows 平臺。
Cmdlet Enable-PSSessionConfiguration
會啟用已停用的已註冊會話組態,例如使用 Disable-PSSessionConfiguration
或 Disable-PSRemoting
Cmdlet,或 的 Register-PSSessionConfiguration
AccessMode 參數。 這是一個進階 Cmdlet,其設計目的是由系統管理員用來管理其使用者的自定義會話設定。
如果沒有參數, Enable-PSSessionConfiguration
請啟用 Microsoft.PowerShell 組態,這是用於會話的預設組態。
Enable-PSSessionConfiguration
會 從受影響會話組態的安全性描述元中移除Deny_All 設定、開啟接受任何IP位址要求的接聽程式,然後重新啟動WinRM服務。 從 PowerShell 3.0 開始,Enable-PSSessionConfiguration
也會將會話組態WSMan:\<computer>\PlugIn\<SessionConfigurationName>\Enabled
的 Enabled 屬性的值設定為 True。 不過, Enable-PSSessionConfiguration
不會移除或變更 只允許本機計算機用戶用於會話設定的 Network_Deny_All (AccessMode=Local
) 安全性描述元設定。
範例
範例 1:重新啟用預設工作階段
此範例會重新啟用 電腦上的 Microsoft.PowerShell 預設會話設定。
Enable-PSSessionConfiguration
範例 2:重新啟用指定的工作階段
此範例會重新啟用 電腦上的 MaintenanceShell 和 AdminShell 工作階段設定。
Enable-PSSessionConfiguration -Name MaintenanceShell, AdminShell
範例 3:重新啟用所有工作階段
此範例會重新啟用電腦上的所有會話設定。 這些命令是相等的。 因此,您可以使用任一項。
Enable-PSSessionConfiguration -Name *
Get-PSSessionConfiguration | Enable-PSSessionConfiguration
Enable-PSSessionConfiguration
如果您啟用已啟用的會話設定,則不會產生錯誤。
範例 4:重新啟用會話並指定新的安全性描述元
此範例會重新啟用 MaintenanceShell 工作階段設定,並指定組態的新安全性描述元。
$sddl = "O:NSG:BAD:P(A;;GXGWGR;;;BA)(A;;GAGR;;;S-1-5-21-123456789-188441444-3100496)S:P"
Enable-PSSessionConfiguration -Name MaintenanceShell -SecurityDescriptorSDDL $sddl
參數
-Confirm
執行 Cmdlet 之前先提示您確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Force
指出 Cmdlet 不會提示您進行確認,而且不會提示重新啟動 WinRM 服務。 重新啟動服務會讓設定變更生效。
若要防止重新啟動並隱藏重新啟動提示,請使用 NoServiceRestart 參數。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Name
指定要啟用的工作階段組態名稱。 輸入一或多個組態名稱。 允許通配符。
您也可以使用管線將包含群組態名稱或工作階段組態物件的字串傳送至 Enable-PSSessionConfiguration
。
如果您省略此參數, Enable-PSSessionConfiguration
請啟用 Microsoft.PowerShell 會話設定。
類型: | String[] |
Position: | 0 |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | True |
-NoServiceRestart
表示 Cmdlet 不會重新啟動服務。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-SecurityDescriptorSddl
指定此 Cmdlet 取代會話組態上之安全性描述項的安全性描述項。
如果您省略此參數, Enable-PSSessionConfiguration
則只會從安全性描述元中刪除拒絕所有專案。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-SkipNetworkProfileCheck
指出當電腦位於公用網路上時,此 Cmdlet 會啟用工作階段設定。 此參數會啟用公用網路的防火牆規則,只允許從相同本機子網的計算機進行遠端訪問。 根據預設, Enable-PSSessionConfiguration
公用網路上會失敗。
此參數是針對 Windows 作業系統的用戶端版本所設計。 Windows 作業系統的伺服器版本具有公用網路的本機子網防火牆規則。 不過,如果在 Windows 作業系統的伺服器版本上停用本機子網防火牆規則,此參數會重新啟用它。
若要移除本機子網限制,並啟用來自公用網路上所有位置的遠端訪問,請使用 Set-NetFirewallRule
NetSecurity 模組中的 Cmdlet。 如需詳細資訊,請參閱Enable-PSRemoting
。
此參數是在 PowerShell 3.0 中引進的。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-WhatIf
顯示執行 Cmdlet 後會發生的情況。 未執行 Cmdlet。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
Microsoft.PowerShell.Commands.PSSessionConfigurationCommands
您可以使用管線將會話組態物件傳送至此 Cmdlet。
您可以使用管線將包含工作階段組態名稱的字串傳送至此 Cmdlet。
輸出
None
此 Cmdlet 不會傳回任何輸出。
備註
此 Cmdlet 僅適用於 Windows 平臺。
若要使用此 Cmdlet,您必須使用 [ 以系統管理員 身分執行] 選項啟動 PowerShell。
相關連結
- Disable-PSSessionConfiguration
- Get-PSSessionConfiguration
- New-PSSessionConfigurationFile
- New-PSSessionOption
- Register-PSSessionConfiguration
- Set-PSSessionConfiguration
- Test-PSSessionConfigurationFile
- Unregister-PSSessionConfiguration
- WSMan 提供者
- about_Session_Configurations
- about_Session_Configuration_Files