Can't see the "Scan" option after deploying Microsoft Ip Scanner

Niharika Ch 25 Reputation points
2025-04-16T15:45:29.3433333+00:00

Hi - I've deployed IP Scanner but i can't see the "Scan" option after selecting the content scan job? I tried to run "Start-Scan" command via powershell as well and then executed "Get-ScanStatus" command to see if the scan really kicked in or not. But the output was showing as,

Status


Idle

IsScanning


false

I'm trying to check each and every step of deployment but can't understand what is missing here. Anyone experienced this situation or know any solution for this please?

Microsoft Purview
Microsoft Purview
A Microsoft data governance service that helps manage and govern on-premises, multicloud, and software-as-a-service data. Previously known as Azure Purview.
1,532 questions
{count} votes

Accepted answer
  1. Ganesh Gurram 6,280 Reputation points Microsoft External Staff
    2025-04-17T10:21:31.5033333+00:00

    @Nikhita Cheemati

    The issue you're experiencing — where the "Scan" option is not visible and Start-Scan doesn’t start the job (status remains Idle) — is related to an authentication failure in the Microsoft Information Protection (MIP) Scanner.

    Based on your logs: MsalUiRequiredException: ErrorCode: no_prompt_failed

    This indicates that the scanner attempted silent authentication, but it failed because user interaction was required and not permitted in the current mode.

    According to this MS documentation: Resolve issues with MIP Scanner deployment

    Please follow these steps to resolve the issue:

    Run the scanner in interactive mode - You need to perform an interactive login once to allow the scanner to acquire and cache the necessary authentication token.

    Run the following command from an elevated PowerShell session:

    Start-Process "msip.scan.exe" -ArgumentList "-interactive"
    

    Re-run the scan - After signing in successfully, you can try to start the scan again:

    Start-Scan
    Get-ScanStatus
    

    You should now see the scan status changing from Idle to Running.

    Confirm required permissions - Ensure that the account you're using has the appropriate permissions assigned in Microsoft Entra ID (formerly Azure Active Directory). This includes roles like Compliance Administrator or Security Reader/Administrator.

    Review Scanner Configuration:

    The content scan job is configured properly

    The scanner profile is assigned and enabled

    The repositories have valid paths and scan rules applied

    You can validate this using:

    Get-ScannerConfiguration
    

    References

    I hope this information helps.

    Kindly consider upvoting the comment if the information provided is helpful. This can assist other community members in resolving similar issues. 


0 additional answers

Sort by: Most helpful

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.