I have some files, which are embedded in a resource. How can I save these files on disk via C#?
This should do your job:
string strTempFile = Path.GetTempFileName(); File.WriteAllBytes(strTempFile, Properties.Resources.YourBinaryFileInResource);
Be sure, that the FileType of the included files is set to "binary".