Sometimes i need to delete or replace A dll file in system32 folder of windows 7.
the code below always has Permission Denied Error :
if (File.Exists(@"C:\Windows\system32\mydll.dll"))
{
fileInfo.IsReadOnly = false;
File.Delete(@"C:\Windows\system32\mydll.dll");
}
how can i bypass this error and replace a file in system32 folder?
thanks in advance