Microsoft sign in

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

  1. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    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

    Nov 26, 2012
    3,396
    1,322
    120
    What does this mean? If You put a screenshot, then maybe is possible to figure out what you're talking about.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,232
    94,598
    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

    Jun 17, 2009
    1,332
    44
    60
    no, can i get rid of it still?
     
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,232
    94,598
    450
    So, it's a local account? Did you set a password? If yes, remove it.
     
  6. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    60
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,232
    94,598
    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

    Apr 8, 2008
    3,311
    1,938
    120
    @Pasta88 stop Onedrive to start when Windows starts
     
  9. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    60
    Thx. That worked.
     
  10. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,575
    15,646
    270
    :p
    brain-fart.jpg
     
  11. z110110

    z110110 MDL Junior Member

    Apr 15, 2017
    54
    12
    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