How to Clean Your Windows PC Using Command Prompt - Windows Basics

Latest

Tuesday, November 21, 2023

How to Clean Your Windows PC Using Command Prompt

Keeping your computer clutter-free can help improve performance and free up a lot of storage space. Windows has a number of built-in system cleanup utilities, including the Disk Cleanup tool. However, Command Prompt is a lesser-known way to clean up your computer.

Start cleaning up your computer using CMD

Below is a list of commands to launch the disk cleaning utility, clean temporary files, cache, etc. Some of these commands may require you to open Command Prompt with admin rights.

How to defragment hard drive using Command Prompt?

Although fragmentation on traditional hard drives is normal, it can cause performance problems. It affects the read and write speed of the drive, making your system run slow.

Defragmentation reorganizes fragmented data to help your drive operate more efficiently. You do not need to defragment your SSD storage device (this is also not recommended). But if you use a mechanical hard drive, here's how to defragment your hard drive using commands.

1. Open Command Prompt with admin rights.

2. In Command Prompt, type the following command and press Enter:

defrag c:

3. In the command above, c: is the drive you want to defragment. Change this character if you want to defragment another drive.

You can run the defrag command using optional switches. Refer to the article: Defrag command in Windows to better understand how to use different syntax with the defrag command to perform analysis, add exceptions, change priority, etc.

A. Clean up your drive quickly with Run

You can use the Run command to perform a quick disk cleanup without opening the Command Prompt. It's useful if you want to free up a few gigabytes of storage in two steps. This requires you to start the Disk Cleanup tool and specify the drive you want to clean through the Run dialog box.

To run Disk Cleanup:

1. Press Win + R to open Run.

2. Enter the following command in the Run dialog box:

C:\windows\SYSTEM32\cleanmgr.exe /dDrive

3. In the above command, replace Drive with the drive letter you want to delete. For example, if you want to perform a quick cleanup of drive E, the full command would be as follows:

C:\windows\SYSTEM32\cleanmgr.exe /dE

4. Click OK or press Enter to execute the command.

5. Run will quickly launch the Disk Cleanup tool with the drive you specify selected.

6. Select the files to delete and click OK.

B. How to use Disk Cleanup utility through Command Prompt

Disk Cleanup is a built-in Windows utility to help you free up space on your computer's hard drive. It can clean downloads, temporary Internet files, Recycle bin and even system files.

You can use Command Prompt to launch Disk Cleanup and perform automatic cleanup tasks directly. Here's how to use the tool and what command line switches are supported.

C. Delete basic files

You can use the cleanmgr command to launch the Disk Cleanup tool using Command Prompt.

1. Open Command Prompt, type cleanmgr and press Enter.

2. In the Drive Selection window, select the drive you want to clean and click OK.

3. In the Disk Cleanup window, select all the files you want to delete and click OK.

4. Click Delete Files to confirm action.

D. Clean up a specific drive/partition

You can use the cleanmgr command followed by the drive letter to run the Disk Cleanup tool against that drive. This is useful for freeing up space on a specific drive. For example, use the following command to run the Disk Cleanup tool on drive C:

cleanmgr /D C

The Disk Cleanup tool will scan and display all the files you can delete. Make your selection and click OK.

Configure Disk Cleanup tool settings

To customize Disk Cleanup tool settings, the cleanmgr command supports multiple switches, including sageset and sagerun.

  • sageset:x allows you to configure the settings of the Disk Cleanup tool. When executed, it launches the Disk Cleanup tool and allows you to select specific items you want to delete and assign them an x value. The x value, which can be any value from 1 to 9999, is stored in the registry.
  • sagerun:x runs the specified task assigned to the value x and automatically deletes all specified files.

Here's how it works:

1. Enter the following command into Command Prompt and press Enter:

cleanmgr /sageset:1

2. In the above command, replace 1 with any number from 1 to 9999. This tutorial will use 1. When executed, it will open the Disk Cleanup tool and display all the junk items you have can be deleted.

3. Select or deselect all the items you want to delete. For example, select temporary setup files, Windows Update Cleanup, downloaded program files, Recycle bin (be careful with this file), etc.

4. After selecting the file types to clean, click OK to save the configuration.

5. Now, use the following command to run the Disk Cleanup tool with your custom configuration:

cleanmgr /sagerun:1

6. This will launch the Disk Cleanup tool and start cleaning the file types previously specified and assigned to the value 1. In this case, it will delete temporary setup files, Windows Update Cleanup, downloaded program files and Recycle bin files.

E. Optimized for low amount of space

The lowdisk switch, as the name suggests, is useful if you are running out of storage space on your hard drive. When executed, it will automatically check all file types.

The lowdisk command is followed by the drive letter for the partition to free up space. A complete command will look something like this:

cleanmgr /lowdisk /d

When executed, Disk Cleanup will open with all junk file categories selected in drive D:.

To delete all junk files quickly without user prompts, use the following command instead:

cleanmgr /verylowdisk /d

F. How to delete temporary files using Command Prompt

Windows creates temporary files for use. They rarely take up a large amount of space on your hard drive and are essential for the system to function smoothly. When the task is complete, your system will automatically remove them from the temporary folders.

The Disk Cleanup tool will clean up temporary files older than 7 days. But if you have to clean your temporary folder regularly, you can do it manually or use Command Prompt.

To view temporary files, enter the following command in Command Prompt:

%SystemRoot%\explorer.exe %temp%\

You can delete these files manually (Ctrl + A > Delete) from File Explorer or use the following command to delete temporary files:

del %temp%\*.* /s /q

Command Prompt will automatically skip any files that are currently in use but it will delete the rest.

G. How to delete prefetch files using Command Prompt

Prefetch files are temporary files created when an application runs on your Windows system. These files contain information used to optimize program execution.

Like other temporary files, prefetch files usually don't take up much space on your hard drive. However, if you need to delete prefetch files regularly, you can use Command Prompt to clean up these files on your system.

To delete prefetched files using Command Prompt:

1. Open Command Prompt with admin rights.

2. In the Command Prompt window, type the following command to view prefetched files:

%SystemRoot%\explorer.exe C:\Windows\prefetch\

3. The command will open the Prefetch folder in File Explorer and display prefetch files that you can delete.

4. To delete prefetched files, use the following command and press Enter:

del C:\Windows\prefetch\*.*/s/q

5. Command Prompt will display a list of all deleted prefetch files.

H. Wipe your hard drive with Diskpart

If you want to wipe the entire disk, you can use the diskpart utility. Diskpart is a Windows command line utility that supports more than 38 commands for various functions.

To wipe the drive, you can use diskpart's clean command. Once executed, it deletes all data and converts the drive to unallocated space.

Use caution when using the diskpart utility. Using incorrect objects can cause you to lose all your data, and you may not be able to recover any of it. Therefore, make a backup of your important system data before using the diskpart tool.1. 

1. Type diskpart in Command Prompt and press Enter.

2. Next, type list disk to see all installed drives on your system

3. Select the drive you want to wipe. For example:

Select disk 0

4. If the drive status shows offline, type online disk and press Enter.

5. To wipe the drive, type the following command and press Enter:

Clean everything

6. Once completed, type exit to close diskpart.

Keep your computer clean of junk files with the command prompt

You can use the Command Prompt to perform a variety of advanced actions, including removing junk files from your computer. While you can use the GUI-based Disk Cleanup tool, the Command Prompt makes it easy to clean up specific file types and wipe the drive.

No comments:

Post a Comment