Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.







@echo off
set FileName=%1
if not exist %FileName% goto !EndBatch
rem Remove double quotes at begin and end of filename if present.
set FileName=%FileName:"=%
rem Get file name only without path and extension and get file extension only (with point).
for /f "usebackq delims==" %%i in (`echo "%FileName%"`) do (
set NameOnly=%%~ni
set Extension=%%~xi
)
copy "%FileName%" "C:\Temp\%NameOnly%_view%Extension%"
"C:\Program Files (x86)\IDM Computer Solutions\UltraEdit\Uedit32.exe" "C:\Temp\%NameOnly%_view%Extension%"
:!EndBatch
msvitale wrote:Can you tell me what release Uedit started working this way?
