running InstallUtil {app}/file.exe in inno setup
问题 I want to copy service files to {app} directory and then use this as a parameter in InstallUtil.exe. Here's some part of my code : [Files] Source: WCFService.exe; DestDir: {app} Source: WCFService.exe.config; DestDir: {app} [Run] Filename: {dotnet40}\InstallUtil.exe; Parameters: {app}\WCFService.exe This code doesn't work (but the files are copied into {app} directory correctly). However, if I use something like this : [Files] Source: WCFService.exe; DestDir: {src} Source: WCFService.exe