Hi Team,
I am trying to edit the IIS Applicationhost.Config file.We are trying to modify below three Values.
For Access OverrideModeDefault = Allow
For AnonymusAuthentication OverrideModeDefault = Allow
For WindowsAuthentication OverrideModeDefault
= Allow
To do that i used below Powershell command
Import-Module "WebAdministration"
Set-WebConfigurationProperty -PSPath IIS:\ -Filter '/ConfigSections/Sectiongroup{@name="system.webServer"}/SectionGorup{@name="Security"}' -Value @{name="access";overrideModeDefaul="Allow"} -Force
But it throw a error

How to achieve this using
Set-WebConfigurationProperty

Sunish Surendran.k