Avatar of Scoox
Scoox
 asked on

Visual Studio Installer Custom Action VBS File copy config from installer dir to target dir

Hi guys,
I'm creating a MSI setup with the Visual Studio Installer.

Its supposed to copy a config file that resides in the installer directory to the target directory.

I therefore created this VBS:
' Config file verschieben
dim fso, file
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CopyFile WScript.Arguments(0), WScript.Arguments(1), true ' Installerdir\config, Targetdir, überschreiben
set fso = nothing

Open in new window



which works when run from CommandLine.

However, when I add a customaction and set its CustomActionData to
"[INSTALLDIR]\config" "[TARGETDIR]\"

I get an error message when running the setup.


What am I doing wrong? Is there an easier way to accomplish this?

I cannot add the config file to the setup project, since it's generated by a separate tool and added to the already compiled setup.
.NET Programming

Avatar of undefined
Last Comment
Scoox

8/22/2022 - Mon
Meir Rivkin

in CustomActionData add:

/TARGETDIR="[TARGETDIR]\" /SOURCEDIR="[SOURCEDIR]\"

SOURCEDIR -> is where the .Msi installer located
TARGETDIR-> is the target installation directory of the .Msi installer

so basically, in your custom action dll, you run the script like this:

Process proc = Process.Start("cscript", string.Format("\"{0}\" \"{1}\"",
Path.Combine(Context.Parameters["SOURCEDIR"], "<ScriptName>.vbs"),  
Path.Combine(Context.Parameters["TARGETDIR"], "<ScriptName>.vbs")));
proc.WaitForExit();
funazonki

If you have an installer project, you can just add the config file to the installer project's list of files and it will get delivered to the target directory at install time.
ASKER CERTIFIED SOLUTION
Meir Rivkin

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Scoox

ASKER
Thank you. I thought it would be hard to do it with custom dll. Can I write that in C#? Do you have a link for a tutorial?
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23