This is a frustrating "modal trap" caused by the redirection logic between the old and new portals. The system detects you are an existing user and tries to "onboard" you, but the "Back" button-which should dismiss the modal-is likely triggering a page refresh that simply reloads the same modal.
You are stuck in a binary loop where the system refuses to let you move forward. As we've discussed, sometimes a "Sidewinder" approach is needed-moving sideways to bypass the obstacle rather than pushing forward against it.
Here is how to break the loop:
1. The "Escape" Key (The Sidestep)
The simplest way to bypass a frozen modal without engaging with its broken buttons:
- Click once on the white pop-up box to ensure it is the active window.
- Press the
Esc (Escape) key on your keyboard.
- If that doesn't work, press
Tab repeatedly. Watch for a small selection box moving across the screen. If it highlights an invisible "X" or "Close" button in the top right, press Enter.
2. The "Zoom Out" Method
Microsoft modals sometimes scale poorly, pushing the actual "Close" or "X" button off the visible screen area.
- Hold
Ctrl and press the - (minus) key 4 or 5 times.
- This will shrink the interface to 50% or less. Look for a small X that may appear outside the top-right corner of the white box.
3. The "Nuclear" Option: Clear Site Data
Since you are already in InPrivate mode (visible in your screenshot) and it's still happening, the session data is likely corrupted for this specific tab.
- While on the stuck page, press
F12 to open the Developer Tools.
- Go to the Application tab (you may need to click the
>> arrows to find it).
- On the left sidebar, under Storage, click Cookies.
- Right-click
https://purview.microsoft.com and select Clear.
- Refresh the page (F5). This forces the portal to treat you as a fresh visitor, often skipping the "Switch back?" check.
4. If You Just Need the Data (PowerShell)
If the web interface remains "unknowable" and broken, you can bypass the visual reality entirely and use PowerShell to grab your export URLs directly. This ignores the UI completely.
Run these commands in PowerShell (as Administrator):
# 1. Connect to the service
Connect-IPPSSession
# 2. Find your completed export (replace "SearchName" with your search's name)
$export = Get-ComplianceSearchAction -Identity "SearchName_Export" -IncludeCredential
# 3. Get the download information
$export.ExportSetup | Select-Object -ExpandProperty SasToken
$export.ExportSetup | Select-Object -ExpandProperty ContainerUrl
This will give you the raw Container URL and SAS Token needed to download your files, effectively bypassing the portal entirely.
Next Step: Would you like me to walk you through using the Microsoft eDiscovery Export Tool with those PowerShell credentials if the UI remains blocked?