Wednesday 8 March 2017

OneDrive folder opens itself

OneDrive folder opens itself (OneDrive 資料夾自動開打)

Since I upgraded to Windows 10. At random time around 10PM every day the OneDrive folder opens itself on Windows Explorer.. I don't know how it happens.

自從我升級到Windows 10 隨機時間,OneDrive文件夾會在Windows資源管理器中打開自己。我不知道如何發生。
                             
[Solution]
I found a scheduled task by name "OneDrive Auto Update" that runs OneDrive.exe from %localappdata% without any parameters. And that's the cause.
Deleted the task and it is solved.
我在(Task Scheduler)[任務排程器]發現一個任務的名稱“OneDrive Auto Update”運行OneDrive.exe。這就是原因,刪除掉這個任務,就解決了。



No comments:

Post a Comment

how-to-recursively-create-subfolder-in-each-folder-of-a-directory-in-cmd

test.cmd: @echo off setlocal for /f "usebackq tokens=*" %%a in (`dir /b /a:d`) do ( rem enter the directory pushd %%a echo...