3

如何使用 PowerShell 更新或更改 RSReportServer.config 文件?

我想将服务标记内的 IsReportManagerEnabled 标记中的值从 True 更改为 False。

非常感谢。

4

1 回答 1

5

根据http://msdn.microsoft.com/en-us/library/bb630448.aspx,您的配置文件很可能在 c:\Program Files\Microsoft SQL Server\MSSQL.n\Reporting Services\ReportServer\但更新以下内容以适合您的系统。并在做任何其他事情之前备份文件。

[xml]$config = gc "c:\Program Files\Microsoft SQL Server\MSSQL.n\Reporting Services\ReportServer\RSReportServer.config"
$config.SelectSingleNode("//IsReportManagerEnabled").InnerText = "False";
$config.save("c:\Program Files\Microsoft SQL Server\MSSQL.n\Reporting Services\ReportServer\RSReportServer.config")

您可能需要重新启动 ReportServer 服务才能使其生效。

于 2012-09-12T16:03:25.320 回答