Open In App

How to Remove RAR/WinRAR Password Using CMD?

Last Updated : 15 Apr, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

RAR files are encrypted with strong AES 256 or AES 128, depending on the version. Passwords are often set up for WinRAR files to ensure data security. However, people often forget or lose access to these files over time. To crack a forgotten RAR/WinRAR password, use Command Prompt, a command-line interpreter on Windows operating systems.

In this article, We’ll show how to remove the RAR/WinRAR password using Command Prompt.

How to Remove RAR/WinRAR Password Using CMD?

RAR/WinRAR archives often come with password protection, which can be a hindrance when you need to access the contents. Fortunately, CMD (Command Prompt) provides two efficient methods to remove RAR/WinRAR passwords: cRARk and utilizing a .bat file.

Here, we’ll discuss the two methods with proper steps.

Method 1: Remove a RAR/WinRAR Password Using crack

It is a free command-line utility that applies brute force to crack RAR passwords. It’s effective for passwords up to 6 characters unless partial password information is known.

Step 1: Download the latest version of Crack from this link

http://www.crark.net/#download

Using-cRARk

Step 2: Now open the folder with WinRAR or just extract the file with Windows extract features then from the list of languages choose any language like English, Russian, etc. then rename the file name “password. def

Using-cRARk-1

Step 3: Now open the password. def with Notepad

Step 4: Make changes only below the hash symbols (##) in the file to customize password search rules for crack.

Uncomment lines without a hash (#) to activate specific password search options, such as lowercase letters, numbers, or combinations.

Modify and uncomment lines like MyPass $1 $1 $1 $1 if you know part of the password, adapting them to your criteria.

Step 5: Save the file

Step 6: Transfer the desired RAR file into the cRARk directory for cracking.

Step 7: Now open CMD in the folder of cRARk. To CMD simply in the File Explorer search bar type “CMD” and hit enter button

Using-cRARk-2

Step 8: In CMD windows type this command and hit enter button

crark filename.rar

Now, replace the filename with the actual file name.

Using-cRARk-3

Method 2: Remove a RAR/WinRAR Password Using the .bat File

Creating and utilizing a .bat (batch) file can automate the process of removing RAR/WinRAR passwords using CMD, offering a convenient alternative to manual execution.

Step 1: Copy this code and paste it into Notepad then save this file as .bat

@echo off
title WinRar Password Retriever
copy "C:\Program Files\WinRAR\Unrar.exe"
SET PASS=0
SET TMP=TempFold
MD %TMP%
:RAR
cls
echo.
SET/P "NAME=File Name : "
IF "%NAME%"=="" goto ProblemDetected
goto GPATH
:ProblemDetected
echo You can't leave this blank.
pause
goto RAR
:GPATH
SET/P "PATH=Enter Full Path (eg: C:\Users\Admin\Desktop) : "
IF "%PATH%"=="" goto PERROR
goto NEXT
:PERROR
echo You can't leave this blank.
pause
goto RAR
:NEXT
IF EXIST "%PATH%\%NAME%" GOTO SP
goto PATH
:PATH
cls
echo File couldn't be found. Make sure you include the (.RAR) extension at the end of the file's name.
pause
goto RAR
:SP
echo.
echo Breaking Password...
echo.
:START
title Processing...
SET /A PASS=%PASS%+1
UNRAR E -INUL -P%PASS% "%PATH%\%NAME%" "%TMP%"
IF /I %ERRORLEVEL% EQU 0 GOTO FINISH
GOTO START
:FINISH
RD %TMP% /Q /S
Del "Unrar.exe"
cls
title 1 Password Found
echo.
echo File = %NAME%
echo Stable Password= %PASS%
echo.
echo Press any key to exit.
pause>NUL
exit

Using-a-bat-File

Step 2: Then, Copy the RAR file/folder path

To copy the path right click on file/folder then from the menu select “Copy as Path” or just press “Crtl + Shift + C

Using-a-bat-File-2

Step 3: Next, Double click on the .bat file

Now paste the file name and file/folder path on the CMD window

Using-a-bat-File-3

Step 4: Press the Enter button to execute the program.

Conclusion

In Conclusion, Using CMD with tools like cRARk or making a .bat file­ can help remove passwords from RAR/WinRAR archive­s quickly. These ways make it e­asy and effective to re­ach your files. No matter if you choose a spe­cial tool or a .bat file, CMD is a solid way to get rid of RAR/WinRAR passwords.

Also Read

FAQs on How to Remove RAR/WinRAR Password Using CMD

How to remove the RAR/WinRAR password using cmd?

Follow these steps to remove RAR/WinRAR password using cmd

  • Copy the above given code and save it as a .bat file in Notepad.
  • Right-click on the RAR file/folder and select “Copy Path” or press “Ctrl + Shift + C” to copy its path.
  • Double-click the .bat file to open it.
  • Paste the file name and path into the CMD window.
  • Press Enter to run the program.

How To Use Passper for RAR to Recover a Password?

Follow these steps to use passper application to recover RAR file password

  • Download and install the software.
  • Open Passper and import your encrypted RAR file.
  • Select the most suitable attack mode based on your knowledge of the password.
  • Initiate the password recovery and wait for the results.

Where is the WinRAR password?

A WinRAR password encrypts the file contents and isn’t easily retrievable. If forgotten, you must use specialized software for recovery. Always use these methods ethically on files you legally can access.



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads