我想通过命令行修改特定网站的设置,但找不到该命令的语法。
我想更改文件 c:/inetpub/wwwroot/wss/VirtualDirectories//web.config 中的以下 xml 部分。
<configuration>...
<SharePoint>...
<BlobCache location="x">
我知道我可以通过 appcmd 修改文件 C:\Windows\System32\inetsrv\config\applicationhost.conf,但我不知道如何修改特定网站的 web.config 文件。我猜我需要做这样的事情
appcmd set config "<site name>" /section:sharepoint/blobcache /enabled="true" /commit:site
但这会尝试修改文件 applicationhost.conf。
修改 web.config 文件的语法是什么,或者是否有其他实用程序可以比 appcmd 做得更好?