Microsoft sign in

Discussion in 'Windows 10' started by Pasta88, Nov 16, 2018.

  1. Pasta88

    Pasta88 MDL Expert

    Joined:
    Jun 17, 2009
    Messages:
    1,154
    Likes Received:
    29
    Trophy Points:
    60
    Hi,

    Every time my PC boots up to my desktop, I a popup asking me to sign into M$. How can I prevent this from happening?

    thx
     
  2. kaljukass

    kaljukass MDL Guru

    Joined:
    Nov 26, 2012
    Messages:
    2,436
    Likes Received:
    883
    Trophy Points:
    90
    What does this mean? If You put a screenshot, then maybe is possible to figure out what you're talking about.
     
  3. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,563
    Likes Received:
    59,628
    Trophy Points:
    450
    You are on an online windows account? If yes, sign in and convert it to a local windows account.
     
  4. Pasta88

    Pasta88 MDL Expert

    Joined:
    Jun 17, 2009
    Messages:
    1,154
    Likes Received:
    29
    Trophy Points:
    60
    no, can i get rid of it still?
     
  5. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,563
    Likes Received:
    59,628
    Trophy Points:
    450
    So, it's a local account? Did you set a password? If yes, remove it.
     
  6. Pasta88

    Pasta88 MDL Expert

    Joined:
    Jun 17, 2009
    Messages:
    1,154
    Likes Received:
    29
    Trophy Points:
    60
  7. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,563
    Likes Received:
    59,628
    Trophy Points:
    450
    So it's onedrive and not windows.....:rolleyes::rolleyes:

    Just stop it from starting up with windows, if you don't want it to autostart.
     
  8. coleoptere2007

    coleoptere2007 MDL Guru

    Joined:
    Apr 8, 2008
    Messages:
    3,182
    Likes Received:
    1,796
    Trophy Points:
    120
    @Pasta88 stop Onedrive to start when Windows starts
     
  9. Pasta88

    Pasta88 MDL Expert

    Joined:
    Jun 17, 2009
    Messages:
    1,154
    Likes Received:
    29
    Trophy Points:
    60
    Thx. That worked.
     
  10. Mr.X

    Mr.X MDL Guru

    Joined:
    Jul 14, 2013
    Messages:
    7,625
    Likes Received:
    14,952
    Trophy Points:
    240
    :p
    brain-fart.jpg
     
  11. z110110

    z110110 MDL Junior Member

    Joined:
    Apr 15, 2017
    Messages:
    54
    Likes Received:
    11
    Trophy Points:
    0
    Code:
    @ECHO OFF
    %SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstall
    RD "%UserProfile%\OneDrive" /Q /S
    RD "%LocalAppData%\Microsoft\OneDrive" /Q /S
    RD "%ProgramData%\Microsoft OneDrive" /Q /S
    RD "C:\OneDriveTemp" /Q /S
    REG Delete "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
    REG Delete "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
    END