我正在使用添加 WebDAV authoringRule
Add-WebConfiguration /system.webserver/webdav/authoringRules -PSPath IIS: -Location "$site_name/$app_name/VD" -Value @{users="*";path="*";access="Read,Write"}
在某些环境中,这与父级中的相同创作规则冲突,因此会引发错误。我想在 authoringRules 的开头添加一个清晰的元素,所以它看起来像这样
<authoringRules>
<clear />
<add users="*" path="*" access="Read, Write" />
</authoringRules>
但Clear-WebConfiguration
只清除现有规则。如何使用 powershell 将<clear />
元素添加到配置文件?