Use workspace ID when exporting a report

Report export didnt work without workspace ID when using a global admin account to export reports.
This commit is contained in:
Priyantha Lankapura 2019-09-10 13:24:21 +05:30 коммит произвёл GitHub
Родитель f7290f79bf
Коммит da30bfbcd8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -137,7 +137,7 @@ Foreach ($report in $reports) {
Write-Host "== Exporting $report_name with id: $report_id to $temp_path"
try {
Export-PowerBIReport -Id $report_id -OutFile "$temp_path" -ErrorAction Stop
Export-PowerBIReport -Id $report_id -WorkspaceId $source_workspace_ID -OutFile "$temp_path" -ErrorAction Stop
}
catch {
Write-Warning "= This report and dataset cannot be copied, skipping. This is expected for most workspaces."