Forum Discussion
OneDrive does NOT start when I sign in to Windows 11
Hello,
I have recently upgraded my PC to Windows 11. However, since then OneDrive doesn't start automatically when I sign in to Windows. I have already verified that:
- The option "Start OneDrive automatically when I sign in to Windows" is enable on the General settings.
- Onedrive is enable in the Startup of the Task Manager.
Despite the above, I still need to manually open OneDrive each time I restart my PC. Any idea on how to solve this issue? Thanks in advance!
7 Replies
- des_rimaCopper Contributor
SOLVED!!!
Hello Andres_Eduardo
So simply adding an OneDrive shortcut to startup folder ain't gonna start it, I tried making it work through task scheduler but also gave me errors so I decided to force it using cmd and by saving that cmd file and placing it in the startup folder it will actually work.
Open a text file and write the below code in it and make sure you seperate the path of folder and .exe file by putting the path in " " and starting the second part with /MIN
Then save the text file as .cmd and put it in your startup folder. Press 🪟 + R to open Run
- BradM403Copper Contributor
I can confirm that this works. You can even fine-tune the script a bit so that it checks the tasklist first see if it's running to avoid duplicate launches:
ech0 off :: Check if OneDrive.exe is already running tasklist /FI "IMAGENAME eq OneDrive.exe" | find /I "OneDrive.exe" >nul if not errorlevel 1 ( echo OneDrive is already running. exit ) :: If not running, start OneDrive minimized start /D "C:\Program Files\Microsoft OneDrive\" /MIN OneDrive.exe exit
- KevinM57Copper ContributorI have the same issue. If I click on the Settings gear in Win 11, I do not see the checkbox/option for starting OneDrive automatically. Has it been removed, maybe? Also, applying the registry fix did not work either.
- bear919Copper Contributor
Andres_Eduardo I have the same issue. If I click on the Settings gear in Win 11, I do not see the checkbox/option for starting OneDrive automatically. Has it been removed, maybe?
- mariomohCopper Contributor
Hi! Did you get it sorted out eventually?
I'm in the same boat. I usually have to manually terminate the OneDrive task and reopen the app. To use the Windows Explorer hiccup free, I need to go to Fullscreen mode (F11) as that for some reason bypasses whatever OneDrive shenanigans is keeping it from working as intended.
My current OneDrive version is Build 22.116.0529.0003 64-bit as I'm enrolled in the Insider program.
The underlying issue seems to be the same related to this old post and looks like we've got no real fix since then.
Hello Andres_Eduardo,
See if the registry fix mentioned here helps you (works with Windows 11 as well):
https://www.kapilarya.com/fix-onedrive-not-starting-automatically-with-windows-10
Let us know if this helps!
Note: Included link in this reply refers to blog post by a trusted Microsoft MVP.
- Andres_EduardoCopper Contributor
Hello KapilArya!
Thanks a lot for your help. I have tried the fix that you described, but unfortunately it didn't work.