├── .gitattributes ├── .gitignore ├── .vs └── VSWorkspaceState.json ├── .vscode └── launch.json ├── Images └── PowerBIPS.PNG ├── LICENSE ├── Modules ├── PowerBIPS.Tools │ ├── CsvHelper.dll │ ├── GenerateDocs.ps1 │ ├── Microsoft.AnalysisServices.Core.dll │ ├── Microsoft.AnalysisServices.SPClient.Interfaces.dll │ ├── Microsoft.AnalysisServices.Tabular.Json.dll │ ├── Microsoft.AnalysisServices.Tabular.dll │ ├── Microsoft.AnalysisServices.dll │ ├── PowerBIPS.Tools.md │ ├── PowerBIPS.Tools.psd1 │ ├── PowerBIPS.Tools.psm1 │ ├── SQLHelper.psm1 │ ├── _ExportODCConnection.ContextMenu.Demo.gif │ ├── _ExportODCConnection.ContextMenu.reg │ └── doc │ │ ├── Convert-PowerBIDesktopToASTabular.md │ │ ├── Export-PBIDesktopODCConnection.md │ │ ├── Export-PBIDesktopToCSV.md │ │ ├── Export-PBIDesktopToSQL.md │ │ ├── Get-PBIDataSetFromPBIDesktop.md │ │ ├── Get-PBIDesktopTCPPort.md │ │ └── PowerBIPS.Tools.md └── PowerBIPS │ ├── .vscode │ └── launch.json │ ├── GenerateDocs.ps1 │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.dll │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.xml │ ├── PowerBIPS-Automation.json │ ├── PowerBIPS.md │ ├── PowerBIPS.psd1 │ ├── PowerBIPS.psm1 │ ├── Samples │ ├── CSVData │ │ ├── Sales.201501.csv │ │ ├── Sales.201502.csv │ │ ├── Sales.201503.csv │ │ ├── Sales.201504.csv │ │ ├── Sales.201505.csv │ │ ├── Sales.201506.csv │ │ └── _Aux │ │ │ └── CSVGenerator.ps1 │ ├── Modules │ │ └── InvokeTwitterAPIs.psm1 │ ├── PBIX │ │ └── MyMovies.pbix │ ├── PowerBIPS.OutPowerBI.ps1 │ ├── PowerBIPS.Sample.CSVUpload.ps1 │ ├── PowerBIPS.Sample.CopyReport.ps1 │ ├── PowerBIPS.Sample.DeleteDatasets.ps1 │ ├── PowerBIPS.Sample.DeleteReports.ps1 │ ├── PowerBIPS.Sample.DownloadReport.ps1 │ ├── PowerBIPS.Sample.Get.ps1 │ ├── PowerBIPS.Sample.GetRefreshHistory.ps1 │ ├── PowerBIPS.Sample.GetReportAndDashboard.ps1 │ ├── PowerBIPS.Sample.Groups.ps1 │ ├── PowerBIPS.Sample.ITRealTimeMonitor.ps1 │ ├── PowerBIPS.Sample.ImportPBIX.ps1 │ ├── PowerBIPS.Sample.RebindReportDataset.ps1 │ ├── PowerBIPS.Sample.RefreshDataset.1.ps1 │ ├── PowerBIPS.Sample.SetParameters.ps1 │ ├── PowerBIPS.Sample.Simple.ps1 │ ├── PowerBIPS.Sample.UpdateReportContent.ps1 │ ├── PowerBIPS.ServicePrincipal.ps1 │ ├── PowerBIPS.TestAuth.ps1 │ ├── PowerBIPS.Tests.ps1 │ └── PowerBIPS.TwitterRealTime.ps1 │ └── doc │ ├── Add-PBITableRows.md │ ├── Clear-PBITableRows.md │ ├── Copy-PBIReports.md │ ├── Export-PBIReport.md │ ├── Get-PBIAuthToken.md │ ├── Get-PBIAuthTokenHttp.md │ ├── Get-PBIDashboard.md │ ├── Get-PBIDashboardTile.md │ ├── Get-PBIDataSet.md │ ├── Get-PBIDataSetTables.md │ ├── Get-PBIDatasetParameters.md │ ├── Get-PBIDatasetRefreshHistory.md │ ├── Get-PBIDatasources.md │ ├── Get-PBIGroup.md │ ├── Get-PBIGroupUsers.md │ ├── Get-PBIImports.md │ ├── Get-PBIModuleConfig.md │ ├── Get-PBIReport.md │ ├── Import-PBIFile.md │ ├── Invoke-PBIRequest.md │ ├── New-PBIDashboard.md │ ├── New-PBIDataSet.md │ ├── New-PBIGroup.md │ ├── New-PBIGroupUser.md │ ├── Out-PowerBI.md │ ├── PowerBIPS.md │ ├── Remove-PBIDataSet.md │ ├── Remove-PBIReport.md │ ├── Request-PBIDatasetRefresh.md │ ├── Set-PBIDatasetParameters.md │ ├── Set-PBIGroup.md │ ├── Set-PBIModuleConfig.md │ ├── Set-PBIReportContent.md │ ├── Set-PBIReportsDataset.md │ ├── Test-PBIDataSet.md │ ├── Update-PBIDatasetDatasources.md │ └── Update-PBITableSchema.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Images/PowerBIPS.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Images/PowerBIPS.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/CsvHelper.dll -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/GenerateDocs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/GenerateDocs.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.Core.dll -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.SPClient.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.SPClient.Interfaces.dll -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.Tabular.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.Tabular.Json.dll -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.Tabular.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.Tabular.dll -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/Microsoft.AnalysisServices.dll -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/PowerBIPS.Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/PowerBIPS.Tools.md -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/PowerBIPS.Tools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/PowerBIPS.Tools.psd1 -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/PowerBIPS.Tools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/PowerBIPS.Tools.psm1 -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/SQLHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/SQLHelper.psm1 -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/_ExportODCConnection.ContextMenu.Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/_ExportODCConnection.ContextMenu.Demo.gif -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/_ExportODCConnection.ContextMenu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/_ExportODCConnection.ContextMenu.reg -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/doc/Convert-PowerBIDesktopToASTabular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/doc/Convert-PowerBIDesktopToASTabular.md -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/doc/Export-PBIDesktopODCConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/doc/Export-PBIDesktopODCConnection.md -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/doc/Export-PBIDesktopToCSV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/doc/Export-PBIDesktopToCSV.md -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/doc/Export-PBIDesktopToSQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/doc/Export-PBIDesktopToSQL.md -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/doc/Get-PBIDataSetFromPBIDesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/doc/Get-PBIDataSetFromPBIDesktop.md -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/doc/Get-PBIDesktopTCPPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/doc/Get-PBIDesktopTCPPort.md -------------------------------------------------------------------------------- /Modules/PowerBIPS.Tools/doc/PowerBIPS.Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS.Tools/doc/PowerBIPS.Tools.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/.vscode/launch.json -------------------------------------------------------------------------------- /Modules/PowerBIPS/GenerateDocs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/GenerateDocs.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Microsoft.IdentityModel.Clients.ActiveDirectory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Microsoft.IdentityModel.Clients.ActiveDirectory.dll -------------------------------------------------------------------------------- /Modules/PowerBIPS/Microsoft.IdentityModel.Clients.ActiveDirectory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Microsoft.IdentityModel.Clients.ActiveDirectory.xml -------------------------------------------------------------------------------- /Modules/PowerBIPS/PowerBIPS-Automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/PowerBIPS-Automation.json -------------------------------------------------------------------------------- /Modules/PowerBIPS/PowerBIPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/PowerBIPS.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/PowerBIPS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/PowerBIPS.psd1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/PowerBIPS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/PowerBIPS.psm1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/CSVData/Sales.201501.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/CSVData/Sales.201501.csv -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/CSVData/Sales.201502.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/CSVData/Sales.201502.csv -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/CSVData/Sales.201503.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/CSVData/Sales.201503.csv -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/CSVData/Sales.201504.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/CSVData/Sales.201504.csv -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/CSVData/Sales.201505.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/CSVData/Sales.201505.csv -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/CSVData/Sales.201506.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/CSVData/Sales.201506.csv -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/CSVData/_Aux/CSVGenerator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/CSVData/_Aux/CSVGenerator.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/Modules/InvokeTwitterAPIs.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/Modules/InvokeTwitterAPIs.psm1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PBIX/MyMovies.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PBIX/MyMovies.pbix -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.OutPowerBI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.OutPowerBI.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.CSVUpload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.CSVUpload.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.CopyReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.CopyReport.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.DeleteDatasets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.DeleteDatasets.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.DeleteReports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.DeleteReports.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.DownloadReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.DownloadReport.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.Get.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.Get.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.GetRefreshHistory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.GetRefreshHistory.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.GetReportAndDashboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.GetReportAndDashboard.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.Groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.Groups.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.ITRealTimeMonitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.ITRealTimeMonitor.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.ImportPBIX.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.ImportPBIX.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.RebindReportDataset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.RebindReportDataset.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.RefreshDataset.1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.RefreshDataset.1.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.SetParameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.SetParameters.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.Simple.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.Simple.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Sample.UpdateReportContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Sample.UpdateReportContent.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.ServicePrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.ServicePrincipal.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.TestAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.TestAuth.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.Tests.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/Samples/PowerBIPS.TwitterRealTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/Samples/PowerBIPS.TwitterRealTime.ps1 -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Add-PBITableRows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Add-PBITableRows.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Clear-PBITableRows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Clear-PBITableRows.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Copy-PBIReports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Copy-PBIReports.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Export-PBIReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Export-PBIReport.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIAuthToken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIAuthToken.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIAuthTokenHttp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIAuthTokenHttp.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIDashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIDashboard.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIDashboardTile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIDashboardTile.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIDataSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIDataSet.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIDataSetTables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIDataSetTables.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIDatasetParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIDatasetParameters.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIDatasetRefreshHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIDatasetRefreshHistory.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIDatasources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIDatasources.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIGroup.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIGroupUsers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIGroupUsers.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIImports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIImports.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIModuleConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIModuleConfig.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Get-PBIReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Get-PBIReport.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Import-PBIFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Import-PBIFile.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Invoke-PBIRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Invoke-PBIRequest.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/New-PBIDashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/New-PBIDashboard.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/New-PBIDataSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/New-PBIDataSet.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/New-PBIGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/New-PBIGroup.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/New-PBIGroupUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/New-PBIGroupUser.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Out-PowerBI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Out-PowerBI.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/PowerBIPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/PowerBIPS.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Remove-PBIDataSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Remove-PBIDataSet.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Remove-PBIReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Remove-PBIReport.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Request-PBIDatasetRefresh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Request-PBIDatasetRefresh.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Set-PBIDatasetParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Set-PBIDatasetParameters.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Set-PBIGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Set-PBIGroup.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Set-PBIModuleConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Set-PBIModuleConfig.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Set-PBIReportContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Set-PBIReportContent.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Set-PBIReportsDataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Set-PBIReportsDataset.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Test-PBIDataSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Test-PBIDataSet.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Update-PBIDatasetDatasources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Update-PBIDatasetDatasources.md -------------------------------------------------------------------------------- /Modules/PowerBIPS/doc/Update-PBITableSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/Modules/PowerBIPS/doc/Update-PBITableSchema.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevScope/powerbi-powershell-modules/HEAD/README.md --------------------------------------------------------------------------------