Urgent - Unistall error when deleting from GAC

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have Windows 2000 advanced server with SP4 installed. I also have Biztalk Server 2004 installed. I am using VS.NET 2003. I create any class library without setting any additional external references in my project. Once I install the resulting dll into the GAC everythings ok. But after this it does not allow me to unistall/delete the assembly from the GAC. It gives the following Error:-
"Assembly could not be unistalled, beacuse it is used by other applications".

-- Naresh
 
I went thorugh the lick given below. I cleared the registry settings as indicated in the article, but the problem is still there.
 
Hi Naresh,

something like this? :

startInfo = new ProcessStartInfo("mysecondapp.exe);
startInfo.Arguments = "param1 param2 param3";
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardError = true;

getpub = new Process();
getpub.StartInfo = startInfo;
getpub.Start();
getpub.WaitForExit();

Console.WriteLine(getpub.StandardOutput.ReadToEnd());


Or, you can start a second thread, which just reads the standard output
from the process and display it while the process is running.

Sunny
 
Back
Top