How to delete cookies and caches from crime with CMD

To delete cookies and cache from Chrome using Command Prompt (cmd) on Windows, follow these simple steps:


### **Steps to Delete Cookies and Cache Using CMD**


1. **Close Google Chrome:**

   - Ensure Chrome is not running.


2. **Open Command Prompt as Administrator:**

   - Press `Win + S`, type `cmd`, right-click on **Command Prompt**, and select **Run as administrator**.


3. **Navigate to Chrome’s User Data Directory:**

   - Type:

     ```cmd

     cd %LOCALAPPDATA%\Google\Chrome\User Data

     ```


4. **Delete Cache and Cookies:**

   - **Delete Cache:**

     ```cmd

     del /s /q Cache

     ```

   - **Delete Cookies:

     ```cmd

     del /s /q Cookies

     ```


5. Restart Google Chrome:

   - Open Chrome again; it will recreate the necessary files, clearing your cache and cookies.


### **Note:**

- **Alternative Method:** You can also clear cookies and cache via Chrome's built-in tools by pressing `Ctrl + Shift + Delete` in Chrome and selecting the data to clear.


These steps will help you quickly clear cookies and cache from Chrome using Command Prompt.