How to remove "Enter your email address popup" automatically in PowerBI

Priya Jha 871 Reputation points
2024-08-27T12:49:35.9766667+00:00

I am receiving a popup for "Enter your email address" in my PowerBI report. How can we remove this popup or get it cancelled via an automated way utilizing PowerShell or python coding.

PowerBIPopup

Note - We have tried to obtain processname by running following PowerShell code before and after the popup is received, but we are unable to find a distinct process.

cls
#Get-Process | Sort-Object -Property Id #28552
$x=Get-process
$y= $x.processname
WRITE-HOST "Sleep"
Start-Sleep -Seconds 75

$x=Get-process
$y1= $x.processname
$y | Where-Object {$_ -notin $y1}

Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,384 questions
PowerShell
PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
2,509 questions
0 comments No comments
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.