rename 001.exe

Status
Not open for further replies.

freecbc3

Banned
Banned
891
2010
3
0
hello all

first i have windows 7 64 bit


i use IDM for dl


i have dl a movie


salt.rar.001
---------004


but my computer convert them automatic

to
salt.rar.001.exe
----------004.exe

so its a application now

does there is any way to rename it and remove .exe so i can extract it with hjsplit


Regards
 
11 comments
Hey seems like you have a virus on your machine clean that first.

Also if you would like to name try using command prompt and rename with that. Should work properly if you do not have a virus.

Thanks & Regards
 
Why not using CMD? It's 99x faster then all other tools with a GUI.

Open up notepad and paste this:
Code:
for /f "delims==" %%F in ('dir /b *.exe') do ren "%%~nxF" "%%~nF"
Save it as "rename.bat" and run it.

This code will remove the .EXE extension from all exe files.

:)
 
Status
Not open for further replies.
Back
Top