Skip to content
Follow
Windows 🟡 Intermediate

How to Tell Dropbox to Ignore Files on Windows 11

Richard
Written by
Richard
Aug 9, 2026 7 min read
How to Tell Dropbox to Ignore a File or Folder on Windows 11
How to Tell Dropbox to Ignore a File or Folder on Windows 11

Dropbox allows you to ignore specific files and folders on your Windows 11 computer, meaning they will remain on your PC but won’t sync to your Dropbox cloud storage.

This feature helps you save space in your Dropbox account or keep sensitive data off cloud servers. Ignored items stay on your computer for everyday use but are not uploaded to Dropbox’s servers or visible on other devices.

Learn how to select which files and folders Dropbox skips, ensuring your cloud storage stays lean and your private data stays local.

⚡ Quick Answer

Open PowerShell as administrator, then type `Set-Content -Path ‘PASTE_YOUR_PATH_HERE’ -Stream com.dropbox.ignored -Value 1` and press Enter. This command tells Dropbox to stop syncing the specified file or folder to your cloud storage.

Why You Might Want to Ignore Files in Dropbox

You can tell Dropbox to ignore certain files or folders to save space in your cloud storage. Ignoring these items means Dropbox won't upload them, which is helpful for large files you only need on your computer or temporary files that programs create.

  • Save Cloud Space: If you have very large files that you only need on your computer, ignoring them can free up your Dropbox storage space.
  • Temporary Files: Some programs create temporary files that you don’t need to save in the cloud.
  • Large Projects: If you work with large files like videos or graphics, you might only want to keep the latest versions on your computer and not sync every single change to the cloud.
  • App Folders: Some applications might create their own folders inside your Dropbox that you don’t want to be synced.
  • Private Files: You might have personal documents you want to keep on your computer but not make available on the Dropbox website or other devices.

Ignored files will not be saved by Dropbox. If your computer's hard drive breaks, you will lose these ignored files unless you have another backup plan. Always consider how you back up your important data before ignoring files.

How to Tell Dropbox to Ignore a File or Folder on Windows

On Windows, you can tell Dropbox to ignore files or folders using a special tool called PowerShell. It’s easier than it sounds. Here’s how:

Step 1Open PowerShell as an Administrator

To tell Dropbox to ignore a file or folder, you first need to open PowerShell with administrator rights on Windows 11. This special command window lets you perform advanced tasks. You can find it by clicking the Start button, typing 'PowerShell', right-clicking the result, and choosing 'Run as administrator'.

  1. Click the Start button in the bottom-left corner of your screen.
  2. Type PowerShell in the search box.
  3. In the search results, you'll see Windows PowerShell. Right-click on it.
  4. From the menu that appears, choose Run as administrator.
  5. If a message asks, "Do you want to allow this app to make changes to your device?", click Yes.
Command prompt window showing terminal commands for Dropbox.
Command prompt window showing terminal commands for Dropbox.

A blue PowerShell window will open, a command-line interface program that lets you run commands. You will use a specific command within this PowerShell window to tell Dropbox to ignore certain files or folders.

Step 2Get the Exact Address of Your File or Folder

You find a file or folder's exact address, called its path, by using File Explorer on Windows 11. Press the Windows key and E together to open File Explorer. Go to the specific file or folder you want Dropbox to ignore, then right-click that file or folder and choose 'Copy as path' from the menu.

  1. Open File Explorer. You can do this by pressing the Windows key + E on your keyboard.
  2. Go to the file or folder you want to ignore.
  3. Right-click on the file or folder.
  4. In the menu that appears, find and click on Copy as path.
File Explorer window showing a folder path in Windows 11.
File Explorer window showing a folder path in Windows 11.

This copies the full path, including quotation marks, to your computer's memory. It will look something like this: 'C:\Users\YourName\Dropbox (Personal)\MyImportantDocument.docx'

💡Tip
Make sure the file or folder you are copying the path for is inside your main Dropbox folder. If you're not sure, open your Dropbox folder in File Explorer and then find the item from there.

Step 3Enter the Command to Ignore the Item

Now, paste the file or folder's path into the PowerShell window you opened. Type the command Set-Content -Path 'PASTE_YOUR_PATH_HERE' -Stream com.dropbox.ignored -Value 1, replacing 'PASTE_YOUR_PATH_HERE' with the path you copied. Right-click inside PowerShell to paste the path, then press Enter to run the command.

  1. Go back to the PowerShell window you opened in Step 1.
  2. Type the following command, but do not press Enter yet:

    Your command to tell Dropbox to ignore a file or folder on Windows 11 should now look similar to this example, but with your specific file or folder address included: `dropboxexclude.exe "C:\Users\YourName\Documents\MyImportantFiles"` This command ensures Dropbox will not sync the specified path.

    PowerShell
    Set-Content -Path 'C:\Users\rworl\Dropbox\Public' -Stream com.dropbox.ignored -Value 1
    ⚠️Warning
    Make sure the address is surrounded by single quotes (') as shown in the example. If you used "Copy as path," it should already have these. Do not change the -Stream com.dropbox.ignored -Value 1 part of the command.
    1. Once you are sure the command is correct, press the Enter key on your keyboard.

    The command ran successfully if you see no error messages. PowerShell will display the prompt again, indicating the command completed its task. You can now close the PowerShell window.

    Step 4Check the Icon in Dropbox

    Dropbox now ignores a file or folder when a small, gray minus sign (-) icon appears next to its name in File Explorer. This icon indicates that Dropbox will not sync the file or folder to the cloud.

    Dropbox interface showing ignored files and folders on Windows.
    Dropbox interface showing ignored files and folders on Windows.

    Tip: If you ignored a whole folder, the minus sign will appear next to the folder's name. Any new files or folders you put inside that ignored folder will also be ignored automatically.

How to Stop Ignoring a File or Folder in Dropbox

You can easily change the ignore file or folder setting to make Dropbox save a specific file or folder again.

Step 1Open PowerShell as an Administrator (Again)

Just like before, you need to open PowerShell with administrator rights.

  1. Click the Start button.
  2. Type PowerShell.
  3. Right-click on Windows PowerShell.
  4. Choose Run as administrator.
  5. Click Yes if the User Account Control prompt appears.
Command prompt window showing terminal commands for Dropbox.
Command prompt window showing terminal commands for Dropbox.

Step 2Get the Exact Address of the Item You Want to Re-Sync

You need the full address of the file or folder you previously ignored.

  1. Open File Explorer (Windows key + E).
  2. Find the ignored file or folder inside your Dropbox folder.
  3. Right-click on it.
  4. Select Copy as path.
File Explorer window showing a folder path in Windows 11.
File Explorer window showing a folder path in Windows 11.

Step 3Enter the Command to Stop Ignoring

To make Dropbox sync a file or folder again, you need to remove the ignore setting using another command. Go back to your PowerShell window and type Clear-Content -Path 'PASTE_YOUR_PATH_HERE' -Stream com.dropbox.ignored, where 'PASTE_YOUR_PATH_HERE' is the path of the item. Right-click to paste the path, then press Enter.

  1. Go back to your PowerShell window.
  2. Type the following command, but do not press Enter yet:
    💻Code
    Clear-Content -Path 'PASTE_YOUR_PATH_HERE' -Stream com.dropbox.ignored
  3. Right-click inside the PowerShell window to paste the address you copied.
Dropbox command to allow syncing of a file or folder.
Dropbox command to allow syncing of a file or folder.

Your command should look something like this:

💻Code
Clear-Content -Path 'C:\Users\rworl\Dropbox\Public' -Stream com.dropbox.ignored

Important: Make sure the address is pasted correctly and is surrounded by single quotes. The -Stream com.dropbox.ignored part of the command is important.

  1. Press the Enter key.

PowerShell will run the command. If it's successful, you'll see the prompt again with no errors. You can now close PowerShell.

Step 4Verify the Icon Change

After using the command to stop ignoring, check your Dropbox folder in File Explorer. The gray minus sign icon should disappear, and you'll see the normal Dropbox icons again, like a green checkmark if the item is synced or a spinning icon if the item is syncing. This means Dropbox will now include the file or folder you previously told it to ignore.

Dropbox interface showing allowed files and folders on Windows.
Dropbox interface showing allowed files and folders on Windows.

References:

Summary

You can tell Dropbox to ignore specific files or folders on Windows 11 using PowerShell to save cloud space. By opening PowerShell as an administrator, copying the item's path, and using the Set-Content command, you can stop Dropbox from syncing it. To resume syncing, use the Clear-Content command with the same path.

How do I turn off Dropbox in 🪟 Windows 11?

And in general tab you could see the toggle for open Dropbox. Upon start up click on it to turn it off and now you can close this and next time when you turn on your computer Dropbox won't.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Change Dropbox Folder Location in Windows 11
Windows How to Change Dropbox Folder Location in Windows 11
How to change File Explorer default folder to open in Windows 11
Windows How to change File Explorer default folder to open in Windows 11
How to Make File Explorer Open to OneDrive in Windows 11
Windows How to Make File Explorer Open to OneDrive in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *