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?
 
     
     
     
    