I'm trying to install some Visual Studio dlls on the guest machine with Inno Setup. Here is the [Files]
section of my script:
[Files]
Source: ...
...
Source: "C:\Windows\System32\msvcp140.dll"; DestDir: "{app}"
Source: "C:\Windows\System32\vcruntime140.dll"; DestDir: "{app}"
Source: "C:\Windows\System32\vcruntime140_1.dll"; DestDir: "{app}"
It gives me an error in the last line, saying that it can't find the source file, although it is there. Does it have something to do with the _
having a special effect with Inno Setup?