When “cloud storage” decides for you: a dangerous trap for video surveillance
Modern video surveillance is supposed to be simple and human-friendly. If software records video into regular files, you can store the archive anywhere: on a local disk, in a cloud-synced folder, or in several places at once. No shamans, APIs, or “cloud licenses per pixel.”
That is exactly how SmartVision works. It honestly writes video to the location you specify. A disk is a disk. A folder is a folder. Just like it was back in the days when computers served people, not the other way around.
Which cloud drives are used in video surveillance
As a “budget cloud,” people usually rely on ordinary synced folders:
- Google Drive
- Dropbox
- Microsoft OneDrive
- Yandex Disk
- iCloud Drive
For SmartVision, this is just a storage location. Video is saved locally first, and then the cloud client decides when and how to upload files to the internet. The result is cheap archive backup and remote access, without subscribing to a “video surveillance cloud with an attitude.”
Where things go off the rails
Most cloud drives behave predictably. But there is one service that decided it is not storage, but the main life manager of your computer.
Yes, this is about OneDrive.
OneDrive: the cloud that decided it owns your computer
Windows users increasingly notice that OneDrive behaves not like a service, but like ransomware. Just polite, with a friendly smile and a “Recommended” checkbox.
Journalist Jason Pargin described a classic scenario. Windows can quietly assign OneDrive as the default storage without clear warning. Desktop files, documents, and images move to the cloud silently and without applause.
Usually the user realizes this when:
- the internet suddenly slows down,
- OneDrive reports that storage is full,
- Windows suggests buying a subscription.
Coincidence? Of course.
“I just wanted to disable backup”
This is where the real quest begins.
You disable backup in OneDrive and suddenly your local files disappear. Formally they are “in the cloud.” In reality, they are no longer on your computer.
Trying to delete files from OneDrive leads to a philosophical discovery. They are deleted locally as well, because now it is “the same thing.” Sync magic, adult edition.
Windows acts as if everything is obvious. No warnings, no explanations. If you want to understand what happened, welcome to Reddit and YouTube, just like in the old days.
Why this is especially bad for video surveillance
For camera archives, this approach is dangerous:
- files can suddenly “move” to the cloud;
- disabling sync removes the archive locally;
- freeing space in OneDrive can wipe video files from disk.
Surprises are the worst thing a surveillance system can have.
How to completely remove OneDrive from Windows 10/11
If OneDrive no longer inspires trust, it is better to remove it before it decides to “optimize” your camera archive.
1. Command Prompt (run as administrator)
Stop processes:
taskkill /f /im OneDrive.exe
taskkill /f /im OneDriveStandaloneUpdater.exe
Uninstall OneDrive:
"%SystemRoot%\SysWOW64\OneDriveSetup.exe" /uninstall
"%SystemRoot%\System32\OneDriveSetup.exe" /uninstall
2. Remove OneDrive folders
rd /s /q "%UserProfile%\OneDrive"
rd /s /q "%LocalAppData%\Microsoft\OneDrive"
rd /s /q "%ProgramData%\Microsoft OneDrive"
rd /s /q "C:\Program Files\Microsoft OneDrive"
rd /s /q "C:\Program Files (x86)\Microsoft OneDrive"
3. Registry: disable OneDrive permanently
Completely disable sync:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\OneDrive" ^
/v DisableFileSyncNGSC /t REG_DWORD /d 1 /f
Disable saving files to OneDrive by default:
reg add "HKLM\SOFTWARE\Policies\Microsoft\OneDrive" ^
/v DisableLibrariesDefaultSaveToOneDrive /t REG_DWORD /d 1 /f
Disable at user level:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" ^
/v LibrariesDefaultSaveToOneDrive /t REG_DWORD /d 0 /f
4. Remove OneDrive from File Explorer
reg add "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" ^
/v System.IsPinnedToNameSpaceTree /t REG_DWORD /d 0 /f
reg add "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" ^
/v System.IsPinnedToNameSpaceTree /t REG_DWORD /d 0 /f
5. Reboot
Mandatory. Windows needs time to process what just happened.
Conclusion
Cloud drives in video surveillance are convenient, cheap, and practical. SmartVision works perfectly with regular folders and does not require cloud faith.
But:
- the cloud should help, not command;
- the archive should remain yours;
- the desktop should not be a hostage of synchronization.
Like in the good old days. Just faster, quieter, and without surprises.