Batch file works fine. When converted to exe it doesn't
Moderator: DosItHelp
Batch file works fine. When converted to exe it doesn't
I'm trying to create an exe file out of a batch file. when executing the batch file it works as it should, however when converted to exe it no longer able to execute the command.
Re: Batch file works fine. When converted to exe it doesn't
Search the forum. This topic has been covered ad nauseam.
Those threads will discuss the basics.
1) You are not creating an executable. You are creating a self-extracting file. It first extracts all the data to a temporary folder before executing.
2) The exe extracting the batch file to a temporary folder will wreak havoc with what you think is the current working directory but it really isn't.
Those threads will discuss the basics.
1) You are not creating an executable. You are creating a self-extracting file. It first extracts all the data to a temporary folder before executing.
2) The exe extracting the batch file to a temporary folder will wreak havoc with what you think is the current working directory but it really isn't.