Tagged Questions
3
votes
3answers
337 views
Help needed with unloading .DLL's from AppDomain - Still not working even with ShadowCopy
I am trying to do the following. App A is the "mother app". It stays open. App B is just a .DLL where I write some classes that are derived from an interface specified in App A.
Then, from App A, I ...
3
votes
3answers
2k views
Opening a file's Shadow Copy if the current copy is in use
I'm trying to backup files on a server, but some of them are in use and cannot be opened. Instead, I'd like to open their shadow copy if the current copy is in use. How can I do this?
For reference, ...
1
vote
2answers
26 views
AppDomain ExecuteAssembly Could not load file or assembly
I have an app (app1) that loads another app (app2) like this:
this._appDomain.ExecuteAssembly(assemblyName);
I'm getting this error when that line executes:
Could not load file or assembly Foo...
...
1
vote
1answer
174 views
C# - Volume Shadow Copy Alternatives for Backup?
I implemented a RAMDisk into my C# application, and everything is going great, except I need to back up the contents regularly due to it being volatile. I have been battling with AlphaVSS for Shadow ...
1
vote
2answers
1k views
Shadow Copying, and mixed C# and C++ DLLs loading from arbitrary folders
I have a VS 2005 C# project that uses a special Plugin folder to load extra DLLs (for use as nodes in an asset conversion process).
I have a mixture of C# and C++ DLLs in this folder.
The issue I ...
0
votes
0answers
56 views
“Cannot create/shadow copy when that file already exists” error in test and prod servers
We use .Net Remoting in our windows application. We got "Cannot create/shadow copy 'dll_name' when that file already exists" error from time to time in our test and prod servers. Its very frequent in ...
0
votes
1answer
46 views
AppDomain Shadow Copy Include referenced assemblies
I am trying Shadow Copy for the fist time. I have the following code:
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
...
0
votes
0answers
157 views
Initialization failure when querying WMI-class Win32_ShadowCopy
while programming throughout the years I have never posted a question on this website, but I have encounted numerous of problems that had been addressed here before. Now, however, I encountered a ...
0
votes
1answer
189 views
Can you shadow copy MAF Addins in ASP.NET
Is it possible to configure MAF in an ASP.NET such a way that it loads shadow copies of an addin assembly? I'd like the ability to update an addin without manually restarting the web server.
0
votes
2answers
2k views
Converting a C++ .exe project to a dll
Microsoft provides the source code of vshadow to manipulate VSS (Volume Shadow Service [shadow copy]), and I've modified it a bit but I want to make it into a dll so I can use it in my C# projects. I ...