Под очисткой жесткого диска средствами классической «Командной строки» можно понимать как удаление временных файлов, так и полное удаление всех данных с физического накопителя или конкретного логического раздела. Ниже приведены все три варианта очистки.
Вариант 1: Утилита очистки
Системная утилита «Очистка диска» больше известна пользователям как классическое приложение с интерфейсом, запускаемое через «Свойства» любого локального диска. С ее помощью можно безопасно удалить неактуальные файлы, накопившиеся в разных инструментах Windows. Она же поможет и тем пользователям, кому удобнее совершать различные действия по управлению системой, в том числе очистку накопителя от мусора, через консоль.
- Вызовите «Командную строку» от имени администратора из поиска Windows или другим известным способом.
- Запустите штатную утилиту «Очистка диска», выполнив команду
cleanmgr /sageset. - Если желаете пропустить выбор файлов для удаления и выполнить очистку без диалога с настройками по умолчанию, используйте команду
cleanmgr /sagerun. - Для максимальной очистки системного раздела в «cleanmgr» предусмотрена команда
cleanmgr /verylowdisk, для очистки временных файлов предыдущих установок Windows – командаcleanmgr /setup.
Вариант 2: Полная очистка диска
Если необходимо удалить все данные с физического диска, воспользуйтесь консольным средством «Diskpart».
- Откройте от имени администратора «Командную строку» и выполните команду
diskpart, чтобы запустить одноименную утилиту управления дисками и разделами. - Выполните набор следующих команд:
list diskselect disk 1clean
В результате выполнения этих команд с диска будут удалены все разделы. Кроме того, диск станет помечен как не проинициализированный. Также обратите внимание, что команда clean неприменима к физическому диску, на котором находится активная операционная система. Если необходимо очистить не весь диск, а конкретный раздел, используйте следующие команды:
list volumeselect volume №delete volume
Первая команда в «Diskpart» выводит список не физических дисков, а имеющихся на них томов. Второй командой выбирается конкретный том, третьей командой выполняется его удаление.
Вариант 3: Форматирование
Такой вариант очистки отличается тем, что удаляются только данные, а не содержащие их разделы. Первоначальная разметка диска в этом случае остается неизменной.
- Откройте «Командную строку» от имени администратора.
- Выполните команду
format d: /fs:ntfs /q, в которой d — это буква очищаемого раздела, ntfs — тип файловой системы, а q — ключ быстрого форматирования.
Как вариант, отформатировать раздел можно средствами консольной утилиты «Diskpart».
- Запустите в «Командной строке» утилиту «Diskpart» как было показано выше.
- Выполните одну за другой следующие команды:
list volumeselect volume №format fs=ntfs quick
Как и в предыдущем варианте, первая команда выводит список доступных томов, а вторая выбирает нужный том. Форматирование выполняется третьей командой, в данном примере в файловую систему NTFS. Если необходимо отформатировать раздел в FAT32, соответственно, в качестве значения параметра «fs» необходимо указать fat32. Ключ «quick» указывает, что форматирование будет быстрым, то есть без фактической перезаписи данных на диске. Если файлы на разделе нужно удалить без возможности восстановления, не используйте этот параметр.
Наша группа в TelegramПолезные советы и помощь
Многие пользователи знают о встроенной утилите Windows 7, 8 и Windows 10 — Очистка диска (cleanmgr), позволяющей удалить разного рода временные файлы системы, а также некоторые системные файлы, которые не требуются для штатной работы ОС. Преимущества этой утилиты по сравнению с самыми разными программами для очистки компьютера — в том, что при ее использовании любой, даже начинающий пользователь, скорее всего, ничего не повредит в системе.
Однако, мало кто знает о возможности запуска этой утилиты в расширенном режиме, позволяющем очистить компьютер от еще большего количества различных файлов и компонентов системы. Именно о таком варианте использования утилиты очистки диска и пойдет речь в статье.
Некоторые материалы, которые могут быть полезны в данном контексте:
- Как очистить диск от ненужных файлов
- Как очистить папку WinSxS в Windows 7, Windows 10 и 8
- Как удалить временные файлы Windows
- Как очистить папку DriverStore/FileRepository (обычно очень большую)
Запуск утилиты очистки диска с дополнительными опциями
Стандартный способ запуска утилиты очистки диска Windows — нажать клавиши Win+R на клавиатуре и ввести cleanmgr, затем — нажать Ок или Enter. Также ее можно запустить в разделе Панели управления «Администрирование».
В зависимости от количества разделов на диске, появится либо выбор одного из них, либо сразу откроется список временных файлов и других элементов, которые можно очистить. По нажатию кнопки «Очистить системные файлы», можно будет также удалить некоторые дополнительные вещи с диска.
Однако, с помощью расширенного режима, можно выполнить еще более «глубокую очистку» и задействовать анализ и удаление еще большего количество не совсем нужных файлов с компьютера или ноутбука.
Процесс запуска очистки диска Windows с возможностью использования дополнительных опций начинается с запуска командной строки от имени администратора. Сделать это в Windows 10 и 8 можно через меню правого клика по кнопке «Пуск», а в Windows 7 — просто выбрав командную строку в списке программ, кликнув по ней правой кнопкой мыши и выбрав пункт «Запуск от имени администратора». (Подробнее: Как запустить командную строку).
После запуска командной строки, введите следующую команду:
%systemroot%\system32\cmd.exe /c cleanmgr /sageset:65535 & cleanmgr /sagerun:65535
И нажмите Enter (после этого, пока не завершите действия по очистке, не закрывайте командную строку). Откроется окно очистки диска Windows с большим, чем обычно количеством пунктов для удаления ненужных файлов с HDD или SSD.
Список будет включать в себя следующие пункты (те, что появляются в данном случае, но отсутствуют в обычном режиме, выделены курсивом):
- Temporary Setup Files
- Старые файлы программы Chkdsk
- Файлы журнала установки
- Очистка обновлений Windows
- Защитник Windows
- Файлы журнала обновления Windows
- Загруженные файлы программ
- Временные файлы Интернета
- Файлы дампа памяти для системных ошибок
- Файлы мини-дампа для системных ошибок
- Файлы, оставшиеся после обновления Windows
- Пользовательские архивы отчетов об ошибках
- Пользовательские очереди отчетов об ошибках
- Системные архивы отчетов об ошибках
- Системные очереди отчетов об ошибках
- Временные файлы отчетов об ошибках
- Файлы установки Windows ESD
- BranchCache
- Предыдущие установки Windows (см. как удалить папку Windows.old)
- Корзина
- RetailDemo Offline Content
- Файлы резервной копии пакета обновления
- Временные файлы
- Временные файлы установки Windows
- Эскизы
- История файлов пользователя
Однако, к сожалению, в данном режиме не отображается, какое количество места на диске занимает каждый из пунктов. Также при таком запуске из пунктов очистки исчезают «Пакеты драйверов устройств» и «Файлы оптимизации доставки».
Так или иначе, думаю, такая возможность в утилите Cleanmgr может оказаться полезной и интересной.
Многие люди сталкивались проблема с нехваткой места на диске in Windows 10 компьютер. Windows Обновления, системный журнал, временные файлы, программы и многие другие типы файлов постоянно записываются на диск C, поэтому C полностью заполнен рано или поздно. Если вы замените диск на новый, производители жестких дисков будут очень рады. В этой статье я расскажу, как очистить диск C: Windows 10 чтобы освободить место на диске. Вы можете запустить очистку диска в Windows 10 с помощью команды или мастера графического интерфейса. Если вы не можете получить достаточно свободного места, попробуйте дополнительные эффективные методы.
Содержание:
- О Windows 10 Утилита очистки диска
- Как открыть Очистку диска в Windows 10
- Как очистить диск C Windows 10 с волшебником
- Как почистить диск в Windows 10 с командой
- Дополнительные параметры после очистки диска
О Windows 10 Утилита очистки диска
«Очистка диска«это Майкрософт Windows встроенная в компьютер служебная программа, которая используется для освободить место на диске на жестких дисках. Эта утилита проста в использовании и работает быстро. Он анализирует жесткий диск и ищет файлы, которые больше не нужны, а затем безопасно удаляет ненужные файлы. Эти ненужные и ненужные файлы включают Windows Обновления, временные файлы, журналы, кеш, файлы в корзине и т. Д.
Вы можете запустить очистку диска во всех Windows версии от XP, правда, в некоторых Windows версия такая как Server 2008 и 2012, очистка диска не включена по умолчанию, поэтому вам нужно установить этот компонент вручную. Начиная с Windows 10 версия 1803, очистка диска включена в Windows 10Однако в приложении «Настройки» по-прежнему доступна автономная утилита очистки диска.
Как открыть Очистку диска в Windows 10
Есть 3 распространенных способа открыть Очистку диска в Windows 10 ноутбук / настольный / планшетный компьютер:
① Press Windows + R клавиша на клавиатуре, тип cleanmgr, А затем нажмите OK.
Выберите диск C: или другой, который вы хотите очистить.
② Откройте Windows Проводник, щелкните правой кнопкой мыши диск C: и выберите НЕДВИЖИМОСТИ
.
Нажмите Очистка диска во всплывающем окне.
③ Поиск из панели задач в левом нижнем углу. Тип clean затем вверху отображается Очистка диска.
Как очистить диск C Windows 10 с волшебником
Когда открывается окно «Очистка диска», выполнить следующие шаги очень легко, достаточно лишь нескольких щелчков мышью.
Шаги для запуска очистки диска в Windows 10 для очистки диска C:
1. Установите флажки, чтобы выбрать файлы, которые вы хотите удалить, и нажмите OK начать. Если вы не уверены в значении этих файлов, щелкните по ним, и вы увидите соответствующее описание внизу.
2. Подтвердите эту операцию, нажав Удалить файлы.
После этого Disk Cleanup начнет удалять ненужные и ненужные файлы.
3. Повторите, чтобы очистить системные файлы.
Как почистить диск в Windows 10 с командой
Есть 3 способа запустить очистку диска в Windows 10 через командную строку выберите тот, который вам подходит.
① Команда со всеми выбранными файлами
- Press Windows и R вместе на клавиатуре.
- вход cleanmgr /LOWDISK и нажмите Enter.
- Появится диалоговое окно «Очистка диска» со всеми типами файлов, выбранных по умолчанию, поэтому вам просто нужно нажать «ОК» для подтверждения.
② Очистить все ненужные файлы автоматически
- Press Windows и R вместе на клавиатуре.
- вход cleanmgr /VERYLOWDISK и нажмите Enter.
Затем Очистка диска удалит ВСЕ ненужные файлы автоматически, а затем покажет вам диалоговое окно с результатом.
③ Очистить указанные ненужные файлы автоматически
- Press Windows и R вместе на клавиатуре, чтобы открыть Run.
- вход cleanmgr /sageset:1 и нажмите Enter. (Вы можете указать значение от 0 до 65535).
- Появится диалоговое окно «Очистка диска», выберите файлы для удаления и нажмите «ОК».
- В будущем вам просто нужно запустить cleanmgr /sageset:1 и нажмите Enter, предварительно выбранных ненужные файлы будут удалены автоматически. Если вы хотите удалить файлы разных типов, введите cleanmgr /sageset:2 на шаге 2 и запустить cleanmgr / Sageset: 2 на этапе 4.
5. Дополнительные параметры после очистки диска
Если после запуска очистки диска в Windows 10, 3 метода ниже очень полезны.
① Переместить установленные приложения и игры
При установке программ многие люди используют настройки по умолчанию для диска C :. Чем больше вы установили, тем меньше места осталось. Лучше устанавливать программы на отдельный раздел. Лучше, чем предыдущие версии, Windows 10 может перемещать приложения, установленные из Windows Сохранить в другой раздел без переустановки.
Как почистить диск С Windows 10 перемещая приложения:
- Press Windows и X на клавиатуре, затем нажмите Настройки> Приложения> Приложения и функции
- Нажмите на приложение или игру.
- Нажмите Двигаемся внизу.
- Выберите новое местоположение из выпадающего списка.
- Нажмите Двигаемся .
- Повторите шаги, чтобы переместить больше предметов.
② Сохранить файлы в новом месте
Windows 10 есть еще одна новая опция для сохранения новых файлов приложений, документов, музыки, изображений и видео в другое место, шаги:
- Press Windows и X на клавиатуре, затем нажмите Настройки
- Нажмите Система> Память.
- Нажмите Изменение, где сохраняется новый контент недооценивают ее Дополнительные настройки хранилища.
- Нажмите раскрывающийся список, чтобы выбрать новое местоположение и нажмите Применить.
③ Переместите больше свободного места на диск C:
Если вы не можете освободить большой объем дискового пространства (не менее 20 ГБ), диск C в ближайшем будущем снова будет заполнен, поэтому вам лучше выделить больше места на диск C. На большинстве компьютеров есть свободное место в другом разделе на том же диске, NIUBI Partition Editor можно переместить это свободное пространство на диск C без потери данных. Операционная система, программы и связанные с ними настройки остаются прежними. У него есть бесплатная версия для Windows 11/10/8/7/Vista/XP пользователи домашних компьютеров.
Скачать этот инструмент и следуйте инструкциям в видео, чтобы увеличить место на диске C:
Помимо сжатия, перемещения и расширения раздела, этот бесплатный инструмент поможет вам копировать, конвертировать, дефрагментировать, скрывать, стирать разделы, сканировать поврежденные сектора, оптимизировать файловую систему и многое другое.
Thinking to clean a disk using CMD for your Windows 11/10/8.1/8/7? Or you’re confused about the pros and cons of the «clean disk using CMD» method? This EaseUS tutorial guide covers everything you need to understand. Also, check out our alternative way of disk cleaning without CMD.
| Workable Solutions | Step-by-step Troubleshooting |
|---|---|
| Fix 1. Delete All Partitions to Clean a Disk in CMD | Step 1. Hold down the Windows + S keys to open the search bar and type cmd…Full steps |
| Fix 2. Wipe to Clean a Disk Using CMD | Step 1. Press the Windows + S keys and type cmd in the search box…Full steps |
| Fix 3. CMD Alternative for Cleaning a Disk | Step 1. Run EaseUS BitWiper. Click the «Wipe Disk» tab. Step 2. Select the targeted HDD…Full steps |
Can I Clean a Disk in CMD?
Absolutely Yes! You can clean disk using CMD by following the guidelines in this tutorial. The CMD works in two ways: to clean disk by deleting all partitions or wiping the disk’s contents at once.
| Pros of using CMD to clean disk | Cons of using CMD to clean disk |
|---|---|
|
|
Getting started: How to clean disk using CMD?
Whether your hard disk is corrupt or you want to change ownership, an efficient solution is to clean disk using CMD. However, the process would mean you lose all existing data, including the essential ones. That’s why a backup is always advised.
It’s all right if you do not know how to back up a hard drive. Downloading an excellent third-party application like the EaseUS ToDo backup would help.
Now, let’s get started with the options to clean disk using CMD.
Option 1. Delete All Partitions to Clean a Disk in CMD
This first option uses the clean command to delete all existing partitions on the targeted hard disk. It’s a one-time operation that erases all saved data on the internal or external hard drive. Therefore, if you’re looking to clean a disk and remove all partitions and data quickly, this CMD clean command option is what you need.
Step 1. Hold down the Windows + S keys to open the search bar and type cmd in the box provided. Right-click Command Prompt and pick the Run as administrator option. Select Yes for the next prompt.
Step 2. A dark CMD command window should open. Type diskpart and hit Enter.
Step 3. Type list disk, and the command prompt will display all available disks. Go through the listed disks and type select disk # (replace # with the specific number of your targeted disk). Here, the target disk is disk 2. So, we enter select disk 2.
Step 4. You should see a message that Disk 2 is now the selected disk. Type clean and press Enter.
Step 5. Another message should display that Diskpart succeeded in cleaning the disk. Type exit and close the CMD command prompt windows.
Option 2. Wipe to Clean a Disk Using CMD
The CMD command prompt offers more than cleaning all partitions on your hard disk. You can also use the commands to wipe clean a disk using CMD. The clean all command is used in this case.
Compared to the clean command, the clean all command completely wipes the disk beyond recovery. Deleted partitions and data using this option 2 are permanently erased, and the disk is reset to its original state.
See the following steps to run the clean all command lines for your internal/external hard disks.
Step 1. Press the Windows + S keys and type cmd in the search box. Next, locate Command Prompt and right-click. Select the Run as administrator option. A pop-up dialogue box will appear. Select Yes to continue.
Step 2. The CMD command prompt will then open in the form of a dark window. Type diskpart and press Enter.
Step 3. Enter the following commands one after the other and press Enter after each.
- list disk
- select disk 0 (Here, we have only one disk 0. Remember to replace 0 with the number of the targeted disk)
- clean all
Step 4. Wait for the cleaning process to complete. Input Exit and close the CMD command prompt window.
CMD Alternative for Cleaning a Disk
Despite its effectiveness, many people might not want to clean disk using CMD command lines because of the setup that appears complicated. If that’s the case, using a professional disk cleaning tool like the EaseUS BitWiper becomes the recommended solution.
Regardless of the Windows version or disk type, the BitWiper software offers direct disk wipe assistance. It’s a reliable tool and does not have complex command lines like the CMD methods. The features of the EaseUS BitWiper are:
1. Clean and wipe multiple internal/external disks or HDDs/SSDs simultaneously.
Instead of running a CMD command prompt for the different disks one after the other, the EaseUS BitWiper helps wipe all targeted disks at once. Only ensure you have connected the internal or external disks to the same computer.
2. Delete all partitions, including the Operating System drive.
When trying a manual format, deleting the partition with the OS is impossible. However, BitWiper can perform a complete disk wipe of all data, including the OS drive.
3. Instantly erase or shred multiple files/folders.
You can also use the EaseUS BitWiper to shred selected files/folders on your internal or external hard drive. It’s called shredding because it only erases the specific items you selected and nothing more.
4. Allows different disk clean modes
It also supports rapid, quick, slow, and different disk clean modes. Just ensure you find the most suitable one for what you aim to achieve.
5. Compatible with Windows Server 2022-2012 and Windows 11/10/8.1/8/7 devices.
Works on all versions of Windows starting from Windows 7. That means you do not have to worry about the compatibility of the BitWiper tool during installation.
How to Clean a Disk using CMD Alternative – EaseUS BitWiper
Carefully follow these steps to use the EaseBitWiper to clean your SSDs, internal or external hard drives.
Step 1. Run EaseUS BitWiper. Click the «Wipe Disk» tab.
Step 2. Select the targeted HDD or SSD to wipe.
Notice: Please make sure you have chosen the correct HDD or SSD. Once the wiping starts, your data is irrecoverable.
Step 3. Choose Wiping Method and click «Next.»
Choose a suitable wiping method. Recommend EaseUS Secure Erase!
Step 4. Check the warning message and click «Wipe» to confirm.
Step 5. Wait for wiping finish and click «Done.»
Conclusion
It is possible to clean a Disk using CMD. And there are two methods of achieving that. Either you carry out a clean command for the partitions/data or a clean all command for a permanent/complete disk wipe.
However, these methods can be sometimes complicated for beginners and unrecoverable for the clean all command. That’s when we recommend a safer, user-friendly, and reliable option – the EaseUS BitWiper software. Download it from the official page and get started. Are you having questions about the BitWiper tool? Don’t hesitate to contact the EaseUS support team.
How to clean computer using CMD if you find the PC runs slowly with low disk space? You come to the right place and you can find out how to run commands for cleaning PC from this post on the MiniTool website to free up disk space and improve the PC performance.
It Is Necessary to Clean Computer
Windows operating system is a popular system and you can use many features on the PC running Windows. But as time goes on, many background tasks run to take up many system resources, and temporary files are created to take up disk space although these files are small. As a result, the computer goes slow and low disk space will appear.
In this case, you need to clean your computer regularly to speed up the machine and improve the PC’s performance. Disk cleaning can let your PC work smoothly and eliminate some issues that cause the PC to crash.
Windows comes with some cleaning tools like Disk Cleanup, defragment tool, etc. But some of you choose to clean computer using CMD (Command Prompt). Although a graphical interface is handy for most people, some of you may prefer to use Command Prompt to do many tasks since it is more efficient, fun, and really powerful and brings performance benefits.
If you don’t know how to run commands for cleaning PC, follow the given guide to clean computer including deleting unwanted files, temp files, & prefetch files, defragging your hard drive, erasing a disk, and more.
In this part, we will show you how to use different commands to clean different files. Firstly, you need to open Command Prompt with admin rights.
Step 1: In Windows 10/11, type cmd into the search box.
Step 2: Click Run as administrator from the popup to open the CMD window.
Tips:
In addition to this way, you can open Command Prompt in other methods and refer to this related post — How to Open Command Prompt (CMD) in Windows 11? (7 Ways).
Next, perform the cleaning operation via some clean commands in CMD.
Run Cleanmgr to Clean Unwanted Files
Cleanmgr is an automating disk cleanup tool in Windows operating system. It can search and analyze your hard drive to find files that are no longer needed and delete them automatically to free up disk space on the hard drive.
By configuring cleanmgr.exe with command-line switches, temp setup files, Internet files, downloaded programs files, old chkdsk files, Recycle Bin files and more can be deleted. You can use the Scheduled Tasks tool to schedule the task to run at a specific time.
Let’s see how to clean computer using CMD – Cleanmgr.
Step 1: Open CMD with admin rights.
Step 2: Type Cleanmgr into the CMD window and press Enter.
Step 3: A small window pops up to ask you to choose the drive you want to clean up. Then, click OK.
Step 4: Check the items you want to delete and then this tool will delete them to free up disk space.
Cleanmgr – the command for disk cleanup, offers multiple parameters dedicated to specific functions, and let’s see examples.
1. Cleanmgr /sageset
This command for disk cleanup helps to directly skip the selection of the drive and redirect you to the Disk Cleanup Settings window to choose the items you want Disk Cleanup to automatically clean up during its scheduled run times.
2. Cleanmgr /sagerun
This command doesn’t choose the category and helps to automate the disk-cleaning process.
3. Cleanmgr /lowdisk
This command is very useful when the hard drive meets low disk space. When running this command, all checkboxes of file categories will be selected by default. The command example is like – cleanmgr /lowdisk/dc. Here c refers to the drive letter.
The command – cleanmgr /verylowdisk/dc helps to delete all junk files quickly without the user prompt.
Tips:
To know more information about this clean manager, you can refer to our previous post — What Is Cleanmgr.exe & Is It Safe & How to Use It.
Run CMD to Temp Files
Windows can create temporary files for temporary use and they are called Temp. During the operation of a program, these files are generated for backup purposes and store information in a short time. They are primarily to store, transfer data and recover lost data.
Temp files won’t take up much disk space and play an important role in the smooth functioning of your system. After finishing tasks, the system will automatically remove them from the temporary folders. It is safe only when temp files are not used by any apps. Or else, Windows will block you from deleting them with the result – failing app tasks.
For temporary files created by Windows operating system, the storage path is %system%/windows/temp. While for the temporary files created by the users, the path is C:\Users\username\AppData\Local\Temp.
If you want to view temporary files, run this command – %SystemRoot%\explorer.exe %temp%\. This can open the Temp folder in File Explorer. Just press Ctrl + A to choose all the files and delete them. Or run the command – del %temp%\*.* /s /q to delete them. The CMD tool can automatically skip any files that are currently in use but delete the rest files.
Defragment Your Hard Drive via CMD
When talking about “clean computer using CMD”, there is one thing you should think of is the disk defrag. Although fragmentation on the hard drive (only for the traditional hard disk) is a natural occurrence, it may lead to PC performance issues, for example, the access and write speed can be impacted, slowing down the system.
Defrag can reorganize fragmented data in the hard drive so that your PC can access files from the hard drive. You don’t need to defragment your SSDs since this may destroy them or reduce their lifespan. Only defragment your HDDs by following the clean command in CMD – defrag driver letter:.
Step 1: Open Command Prompt as an administrator.
Step 2: Type defrag c: into the CMD window and press Enter. Here replace c: with your drive letter
Delete Prefetch Files Using Command Prompt
When you use a program first, Windows operating system will create prefetch files that can work as a cache later. That is, prefetch files are used to store information regarding software activity, including how many times the software has run, when the app was running and associated files used by the software.
These prefetch files are text files with a .pf extension and they are very useful in the quicker loading of programs. But they could take up much disk space. And if you run into app bugs or lags, you can choose to delete these files. Deleting them is harmless and Windows will create prefetch files again the next time you open programs on your computer.
See how to clean computer using CMD by deleting prefetch files:
Step 1: Open CMD with admin permissions in Windows.
Step 2: Type %SystemRoot%\explorer.exe C:\Windows\prefetch\ to the Command Prompt window and press Enter to check the prefetch files. This can open the Prefetch folder in File Explorer.
Step 3: Type del C:\Windows\prefetch\*.*/s/q and press Enter to delete these prefetch files. Alternatively, you can directly delete the Prefetch folder from Windows Explorer.
Clear Cache Memory in Windows
Cache files can dramatically improve performance, availability, and scalability, and they can bring the ability to serve data quickly and faster response times. However, if cache files go wrong, data fetching issues, glitches, or even crashes can happen. A common solution is to clear cache files regularly.
You can choose to clear the DNS cache and Windows store cache. If something goes wrong during the cache-clearing process, the Windows system will tell you.
To clear the DNS cache, execute the command – ipconfig/flushDNS in the CMD window. To clear the Windows store cache, execute this command – wsreset.exe.
DISM Windows Image Cleanup
Deployment Image Servicing and Management (DISM) is a useful command tool that can help to service and prepare system images. You can use DISM to manage a Windows image (.wim) and virtual hard disk (.vhd). It is used for Windows Recovery Environment (WinRE), Windows PE, and Windows Setup. Via the DISM tool, you can fix many system errors including update errors, boot errors, and more.
To check if there is any corruption, run DISM /online /Cleanup-Image /CheckHealth in the CMD window.
To scan the Windows image, execute this command – DISM /Online /Cleanup-Image /ScanHealth.
To fix Windows images, type DISM /Online /Cleanup-Image /RestoreHealth into the CMD window and press Enter.
Clean Command in Diskpart
In addition to cleaning the computer using CMD by deleting unwanted files, temp files, and prefetch files, clearing cache, defragmenting your hard drive, and running DISM, there is another aspect to clean your PC and that is using Diskpart to delete all the disk data.
Diskpart is a command-line disk utility included in Windows 2000 and later Windows operating systems to replace its predecessor – fdisk. It can be used to manage your disks and partitions, for example, create partitions, delete partitions, wipe the entire disk data, etc. To know more information about this tool, refer to our library document – What Is DiskPart and How to Use It? (Ultimate Guide & Tips).
If you prepare to give up your hard drive or USB flash drive, you can choose to use Diskpart to erase all the disk data and let the drive become unallocated space.
Note:
During using Diskpart, you may choose an incorrect object. As a result, data is lost and you cannot recover it. So, you can’t be too careful. Besides, we strongly recommend creating a backup for your important files.
Back up Critical Data Before Cleanup Command Diskpart
To back up your significant files on the hard drive or USB flash drive, you can choose to use the Windows built-in backup tool – Backup and Restore (Windows 7). Just go to open Control Panel, view all the items by Large icons, and click Backup and Restore (Windows 7) to open this tool. Then, click Set up backup and start a file backup by following the instructions on the screen.
If you don’t want to use this tool but look for a professional and free backup software for file backup, MiniTool ShadowMaker is a good option. This software supports file, folder, disk, partition and system backup & recovery, file sync, and disk cloning. Importantly, it works although the PC fails to boot. Just click the following button to get its Trial Edition to free use for 30 days.
MiniTool ShadowMaker TrialClick to Download100%Clean & Safe
Step 1: Double-click on the .exe file and install MiniTool ShadowMaker on your PC by following the on-screen wizards.
Step 2: Open this software and click Keep Trial to continue.
Step 3: To back up your files, you can go to the Backup page or Sync tab, choose the items you want to back up, and the storage path like an external hard drive or USB flash drive.
Step 4: Click Back Up Now or Sync Now to execute the backup task.
Clean Hard Drive via Diskpart
Next, it is time to use the clean command in CMD – Diskpart. See how to clean computer using CMD:
Step 1: In the CMD window, type diskpart and press Enter.
Step 2: Type list disk and press Enter.
Step 3: Execute the command – select disk n. N means the disk number. If you see the disk status shows offline, type online disk and hit Enter.
Step 4: To wipe your hard drive, run clean or clean all.
Tips:
If you want to know the difference between the command – clean and clean all, you can find details from our previous post — Diskpart Clean vs Clean All: Choose a Way to Wipe Disks.
Click to Tweet
Bottom Line
That’s all the information about how to clean computer using CMD including deleting unwanted files, temp files, & prefetch files, defragging your hard drive, cleaning cache, erasing a disk, and running DISM. If you need, just run commands for cleaning PC by following the given guide. Hope you can have a smooth PC. If you have other ideas on cleanup commands, let us know in the Comment part below. Thanks.
