hello I recently used a script to try to give my bat file it's own specific name, but instead it turned out to just create this error message:
"The system cannot find message text for message number 0x2350 in the message file for Application"
So how do I reset this?
Here's the command that i followed:
echo off
set program=c:\Windows\system32\cmd.exe
set alias_name=%1
set alias_path=%~dp0
set batch_file=%2
set alias=%alias_path%%alias_name%.exe
call :find_args %*
call :make_link %program% %alias%
%alias% /C %batch_file% %args%
:find_args
set args=
shift
shift
:loop
if [%1] == [] goto :eof
set args=%args% %1
shift
goto :loop
:make_link
copy %1 %2
So please Help me!
(also heres a direct link to the website [Change process name when launched as batch file