Skip to main content

Notifications

Announcements

No record found.

Dynamics 365 Community / Blogs / DaxGeek / Deploy Reports in PowerShell

Deploy Reports in PowerShell

After you have loaded the Microsoft Dynamics AX PowerShell module and
retrieved a list of reports, you can deploy the reports. The Publish-AXReport
cmdlet is used to deploy the reports. The following examples show you how to
use this cmdlet.


1. To deploy a specific report, enter the name of the report. For
example, the following command is used to deploy the
CustTransList report: "
Publish-AXReport -ReportName
CustTransList
", and then press Enter.

2. To deploy two or more specific reports, enter the names of the
reports. For example, the following command is used to deploy the
CustTransList and CustTransOpenPerDate reports: "
PublishAXReport -ReportName CustTransList, CustTransOpenPerDate", and then press Enter.

3. To deploy all reports, enter the following command: "
PublishAXReport –ReportName *", and then press Enter.

Regards,
Hossein Karimi

Comments

*This post is locked for comments