Upon close of the installer, I want the installer to run the application just installed and open a file within its own folder. For example, I use this code...
File.Run(SessionVar.Expand("%AppFolder%").."\\Play er.exe", "\\video.mp4", "", SW_SHOWNORMAL, false);
and it cannot find the video file. And if I use it like this...
File.Run(SessionVar.Expand("%AppFolder%").."\\Play er.exe", SessionVar.Expand("%AppFolder%").."\\video.mp4", "", SW_SHOWNORMAL, false);
it causes a looping error.
File.Run(SessionVar.Expand("%AppFolder%").."\\Play er.exe", "\\video.mp4", "", SW_SHOWNORMAL, false);
and it cannot find the video file. And if I use it like this...
File.Run(SessionVar.Expand("%AppFolder%").."\\Play er.exe", SessionVar.Expand("%AppFolder%").."\\video.mp4", "", SW_SHOWNORMAL, false);
it causes a looping error.
Comment