-
Notifications
You must be signed in to change notification settings - Fork 83
IEEnhancedSecurityConfiguration
dscbot edited this page Dec 11, 2022
·
4 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
Role | Key | String | Specifies the role for which the IE Enhanced Security Configuration should be changed. |
Administrators , Users
|
Enabled | Required | Boolean | Specifies if IE Enhanced Security Configuration should be enabled or disabled. | |
SuppressRestart | Write | Boolean | Specifies if a restart of the node should be suppressed. By default the node will be restarted if the value is changed. |
This resource allows you to configure the IE Enhanced Security Configuration for administrator or user roles.
This configuration will disable the IE Enhanced Security Configuration for administrators.
Configuration IEEnhancedSecurityConfiguration_DisableForAdministrators_Config
{
Import-DscResource -Module ComputerManagementDsc
Node localhost
{
IEEnhancedSecurityConfiguration 'DisableForAdministrators'
{
Role = 'Administrators'
Enabled = $false
}
}
}
This configuration will disable the IE Enhanced Security Configuration for users.
Configuration IEEnhancedSecurityConfiguration_DisableForUsers_Config
{
Import-DscResource -Module ComputerManagementDsc
Node localhost
{
IEEnhancedSecurityConfiguration 'DisableForUsers'
{
Role = 'Users'
Enabled = $false
}
}
}
- Computer
- IEEnhancedSecurityConfiguration
- OfflineDomainJoin
- PendingReboot
- PowerPlan
- PowerShellExecutionPolicy
- PSResourceRepository
- RemoteDesktopAdmin
- ScheduledTask
- SmbServerConfiguration
- SmbShare
- SystemLocale
- SystemProtection
- SystemRestorePoint
- TimeZone
- UserAccountControl
- VirtualMemory
- WindowsCapability
- WindowsEventLog