|
71 | 71 | No output is generated when PassThru is not specified. |
72 | 72 |
|
73 | 73 | .EXAMPLE |
74 | | - Install-SqlDscBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' |
| 74 | + Install-SqlDscPowerBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' |
75 | 75 |
|
76 | 76 | Installs Power BI Report Server with default settings. |
77 | 77 |
|
78 | 78 | .EXAMPLE |
79 | | - Install-SqlDscBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' -ProductKey '12345-12345-12345-12345-12345' |
| 79 | + Install-SqlDscPowerBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' -ProductKey '12345-12345-12345-12345-12345' |
80 | 80 |
|
81 | 81 | Installs Power BI Report Server using a product key. |
82 | 82 |
|
83 | 83 | .EXAMPLE |
84 | | - Install-SqlDscBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' -Edition 'Evaluation' -InstallFolder 'C:\Program Files\Power BI Report Server' |
| 84 | + Install-SqlDscPowerBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' -Edition 'Evaluation' -InstallFolder 'C:\Program Files\Power BI Report Server' |
85 | 85 |
|
86 | 86 | Installs Power BI Report Server in evaluation edition to a custom folder. |
87 | 87 |
|
88 | 88 | .EXAMPLE |
89 | | - Install-SqlDscBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' -ProductKey '12345-12345-12345-12345-12345' -EditionUpgrade -LogPath 'C:\Logs\PowerBIReportServer_Install.log' |
| 89 | + Install-SqlDscPowerBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' -ProductKey '12345-12345-12345-12345-12345' -EditionUpgrade -LogPath 'C:\Logs\PowerBIReportServer_Install.log' |
90 | 90 |
|
91 | 91 | Installs Power BI Report Server and upgrades the edition using a product key. Also specifies a custom log path. |
92 | 92 |
|
93 | 93 | .EXAMPLE |
94 | | - $exitCode = Install-SqlDscBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' -PassThru |
| 94 | + $exitCode = Install-SqlDscPowerBIReportServer -AcceptLicensingTerms -MediaPath 'E:\PowerBIReportServer.exe' -PassThru |
95 | 95 |
|
96 | 96 | Installs Power BI Report Server with default settings and returns the setup exit code. |
97 | 97 | #> |
98 | | -function Install-SqlDscBIReportServer |
| 98 | +function Install-SqlDscPowerBIReportServer |
99 | 99 | { |
100 | 100 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSShouldProcess', '', Justification = 'Because ShouldProcess is used in Invoke-SetupAction')] |
| 101 | + [Alias('Install-SqlDscBIReportServer', 'Install-SqlDscPBIReportServer')] |
101 | 102 | [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'High')] |
102 | 103 | [OutputType([System.Int32])] |
103 | 104 | param |
|
0 commit comments