Skip to content

Commit 767f3b9

Browse files
Rob SewellRob Sewell
authored andcommitted
added script info for gallery
1 parent bf3a122 commit 767f3b9

File tree

1 file changed

+45
-1
lines changed

1 file changed

+45
-1
lines changed

PublishPBIXFile.ps1

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
2+
<#PSScriptInfo
3+
4+
.VERSION 1.0.0.0
5+
6+
.GUID 0b89f8fb-6de5-4f1b-8a0d-6172a89d4743
7+
8+
.AUTHOR Rob Sewell @sqldbawithbeard
9+
10+
.COMPANYNAME Sewells Consulting
11+
12+
.COPYRIGHT Rob Sewell @sqldbawithbeard
13+
14+
.TAGS Power Bi SSRS SQL Server Reporting Services PBIX deployment
15+
16+
.LICENSEURI https://github.com/SQLDBAWithABeard/Functions/blob/master/LICENSE
17+
18+
.PROJECTURI https://github.com/SQLDBAWithABeard/Functions
19+
20+
.ICONURI
21+
22+
.EXTERNALMODULEDEPENDENCIES
23+
24+
.REQUIREDSCRIPTS
25+
26+
.EXTERNALSCRIPTDEPENDENCIES
27+
28+
.RELEASENOTES
29+
30+
31+
#>
32+
33+
#Requires -Module ReportingServicesTools
34+
35+
<#
36+
37+
.DESCRIPTION
38+
Uploads PBIX files to a PowerBi report server and sets the data source
39+
40+
#>
41+
42+
Param()
43+
44+
145
<#
246
.SYNOPSIS
347
Publishes a Power Bi File to a PowerBi Report Server. It will overwrite existing
@@ -174,4 +218,4 @@ function Publish-PBIXFile {
174218
Return
175219
}
176220
Write-Verbose "Completed Successfully"
177-
}
221+
}

0 commit comments

Comments
 (0)