= !UnauthorizedAccessException = There are different reasons why you might get this exception. One of them is that you are trying to delete an assembly that you loaded (but obviously don't need any more). The solution is to change this: {{{ #!cobra assembly = Assembly.loadFrom(path) }}} to this: {{{ #!cobra assembly = Assembly.load(File.readAllBytes(path)) }}} == See Also == * http://social.msdn.microsoft.com/forums/en-US/clr/thread/999cca57-bd8b-4c5f-ba9e-bc5463c2aa94 * MiscellaneousTopics