Share via

Turn Off/Remove "Microsoft Account Sign in" Tab In Windows 11 Settings

Anonymous
2024-06-24T20:44:41+00:00

Looking for a way to turn off/remove/hide the "Microsoft Account Sign in" Tab In Windows 11 Settings completely.

I found the following thread, which sounded like it could be what I am after.

I performed the recommended action from the sole reply in the thread.

I can confirm that I have a DWORD labelled NoConnectedUser and the value set to 1, in the following registry pathway: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

After a reboot, I navigated back to the above screenshot's location in Windows 11 settings, and the tab did appear to be gone. However after closing out of the Windows 11 settings screen completely, and then once again navigating to the section, it was back already. Have tried rebooting a couple more times, and the tab seems to be back (visible) for good again.

Windows for home | Windows 11 | Settings

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

10 answers

Sort by: Most helpful
  1. Anonymous
    2024-07-01T14:32:44+00:00

    Hey David,

    I was not able to locate the specified policy at the path you provided.

    I did some searching and found the policy at the following path in GPO Editor:

    Computer Configuration >> Windows Settings >> Security Settings >> Local Policies >> Security Options >> Accounts: Block Microsoft accounts

    After setting the policy setting to "Users can't add or log on with Microsoft accounts", I have observed that the tabs/sections are still visible.

    This policy setting does have the effect of blocking actual sign-in, by throwing an error when you try to authenticate with your password. However, the prompts to sign in are still visible.

    10+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2024-06-26T13:44:18+00:00

    Ran both commands. Both returned success.

    Rebooted, still no change.

    Yes, I am using Windows 11 Pro.

    4 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2024-06-24T23:31:09+00:00

    Hello!

    My name is David N., and I am a Windows fan and assist users here with Windows questions. I will be happy to assist you with your issue.

    In order to resolve this issue I suggest that we run a few Powershell commands:

    1. Choose Start and type "powershell". Open Powershell as admin.
    2. Enter these commands one at a time:

    New-Item -Path "HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Settings" -Force

    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Settings" -Name "AllowYourAccount" -Value 0 -PropertyType DWORD -Force

    New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\Settings" -Name "AllowSignInOptions" -Value 0 -PropertyType DWORD -Force

    1. Exit Powershell and reboot.

    This should disable the option permanently.

    I hope this helps! Please let me know if this resolves your issue or if you require additional assistance.

    Regards,

    David N.

    3 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2024-10-18T08:48:23+00:00

    epk2039, I followed your instructions but the suggestions to sign into Microsoft persist in Settings under Home and Accounts.

    2 people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2024-10-01T01:05:40+00:00

    Get Rid of Windows 11 Settings Ads

    Guide using PowerShell to take ownership of the key and then proceed with creating the subkey:
    Step 1: Take Ownership of the Parent Registry Key

    Open PowerShell as Administrator.  
    Take ownership of the parent key (ActivatableClassId):  
    
    powershell  
    
    Set-Location 'HKLM:\SOFTWARE\Microsoft\WindowsRuntime\'  
    Start-Process "powershell" -ArgumentList "Set-ACL -Path 'HKLM:\SOFTWARE\Microsoft\WindowsRuntime\ActivatableClassId' -AclObject (Get-Acl -Path 'HKLM:\SOFTWARE\Microsoft\WindowsRuntime\ActivatableClassId')" -Verb runAs  
    

    This will launch another elevated PowerShell session to take ownership. It will flash blue then close.

    Then the manual step
    Open Registry Editor (regedit) as Administrator.
    Navigate to the following path:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsRuntime\ActivatableClassId
    Right-click on the ActivatableClassId key and select Permissions.
    Click Advanced.
    Change the Owner to your user account, as explained in the previous response.
    Grant yourself Full Control.

    Exit the advanced panel, then on the main panel click on your user and administrators, and click allow full control tick. Then click do it for both, then click apply then okay.  
    

    Step 2: Create the Registry Key and Set the Value

    Once you have the appropriate permissions, go back to PowerShell and run the command to create the key and set the value:

    powershell

    New-Item -Path 'HKLM:\SOFTWARE\Microsoft\WindowsRuntime\ActivatableClassId\ValueBanner.IdealStateFeatureControlProvider' -Force
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsRuntime\ActivatableClassId\ValueBanner.IdealStateFeatureControlProvider' -Name 'ActivationType' -Value 0 -Type DWord

    Then reboot.

    The Ads should be gone.

    2 people found this answer helpful.
    0 comments No comments