I would like to import to registry
a .reg file that exist in project resources
.
The way to import a reg file uses the path to the reg file:
Process proc = new Process();
proc = Process.Start("regedit.exe", "/s " + "path\to\file.reg");
Is it possible to do so with a file from resources? how do I get its path?
If it is in the project folder. i-e. The folder in which the project is runnung. you can access it directly :
Process.Start("regedit.exe", "/s " + "Filename.reg");
you can get the current path by using
or
you can use both and navigate arround to get the path to your desired folder. eg if you want to access a file in the Resource folder inside the project folder u can use
projectPath+"\\Resource\\filename.reg"