Skip to main content

Posts

Showing posts with the label Powershell

Modify Microsoft Dynamics AX 2012 SSRS configuration files using PowerShell

This post is to highlight a pet project I have been working on. Working for a partner I frequently do new environment installations. AX 2012 allows you install multiple SSRS environments on the one machine but it can be tedious with the SSRS configuration file changes. http://technet.microsoft.com/en-us/library/hh389762.aspx I have scripted the process and loaded on here  http://dax2012ssrs.codeplex.com . Updated 26 March 2012: Added permission issue http://blogs.msdn.com/b/axsupport/archive/2012/02/02/microsoft-dynamics-ax-2012-reporting-extensions-error-system-security-permissions-environmentpermission-while-running-report.aspx Updated 21 January 2013: Added changes to be compatible with R2 http://dynamicsnavax.blogspot.com/2013/01/modify-microsoft-dynamics-ax-2012-r2.html

AX2012 - Install multiple instances of Reporting Services (SSRS) on the same computer scripted with powershell

I have been working on a side project to script Install multiple instances of Reporting Services on the same computer (for use with Microsoft Dynamics AX) [AX 2012] Most of the steps are straight forward but the Modify Reporting Services configuration files [AX 2012] is a little tedious. I have scripted some of the steps. It is incomplete but I think it could be useful for our internal SSRS installs. I hope someone out there can contribute and we can share the load to complete it. 1) Modify the Report Manager Web.config file 2) Modify the report server RsReportServer.config file 3) Modify the report server RsSrvPolicy.config file 4) Modify the report server Web.config file If you get a message saying scripting is not allowed. Just start powershell - run as administrator. Then type the following Set-ExecutionPolicy Unrestricted Warning: This is in no way complete but a start. I will update when I have something. Updated 12 September 2012 Refer to...