Jump to content

What is cloudstore? - Win 10 debloat code help

Go to solution Solved by Sauron,
11 minutes ago, CringeFire said:

I'm still skeptical about it.

Why? It's probably the folder Windows uses for cloud backups of your settings, whatever script you're running seems to delete it if it exists, presumably to free up some disk space.

CloudStore = 'HKCUSoftware\Microsoft\Windows\CurrentVersion\CloudStore'
            If (Test-Path $CloudStore) {
                Stop-Process Explorer.exe -Force
                Remove-Item $CloudStore
                Start-Process Explorer.exe -Wait
            }

Link to comment
https://linustechtips.com/topic/1122916-what-is-cloudstore-win-10-debloat-code-help/
Share on other sites

Link to post
Share on other sites

2 minutes ago, Sauron said:

Looks like it's a folder path

Yeah but idk what it does. When I search it up, it looks like windows use that to save all of the settings of the user but I'm still skeptical about it.

Edited by CringeFire
Mistyped
Link to post
Share on other sites

11 minutes ago, CringeFire said:

I'm still skeptical about it.

Why? It's probably the folder Windows uses for cloud backups of your settings, whatever script you're running seems to delete it if it exists, presumably to free up some disk space.

Don't ask to ask, just ask... please 🤨

sudo chmod -R 000 /*

Link to post
Share on other sites

1 hour ago, Sauron said:

Why? It's probably the folder Windows uses for cloud backups of your settings, whatever script you're running seems to delete it if it exists, presumably to free up some disk space.

Okay thanks! And yes I am currently modifying a windows 10 debloater to suit my needs

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×