I have the following batch file: (name: u.bat)
@echo off start "" "C:\Program Files (x86)\IDM Computer Solutions\UltraEdit\Uedit32.exe" %1 rem exit I run the batch file in the temp folder to open an existing "readme.txt"
c:\temp> u readme.txt What is happening is the app is trying to open readme.txt in the C:\Program Files ....\UltraEdit directory and not the C:\temp directory.
How do I tell the batch file %1 is in the current directory?