I have Xdrive Desktop v162 installed on my Vista PC and have been successfully doing automatic backups. However, it now has gone through the preset number of incremental backups, and each time it attempts the next back up, the status screen gets to "merging oldest backup runs..." and just hangs there. While it's doing that, the Completelog.txt log is growing exponentially... GB's large.
What's my best bet? Is there a fix to this, or should I manually delete old backups and start new when it reaches the limit?
Any advice is appreciated.
Harry

1. All AIMCC applications
1. All AIMCC applications load plugins unless that application specifically blocks that operation. For example, AIM Lite and AIM 6.x will load plugins, but AIM Pro will block the loading of all plugins. A C# plugin is not cross platform, so it will only work on a Windows box.
2. The plugin script does need modification, but you can debug the script if you feel the script is incorrect. I use HM NIS Edit, http://hmne.sourceforge.net/, and debug the dll. If your plugin command does not show on the machine you are compiling the DLL on, make sure Visual Studio is set to register COM files. See the tutorial for help doing that.
If you have named your plugin dll "MyPlugin.dll," then the script will work fine. If you have a different name for your dll, then replace "MyPlugin.dll" with your own. You can also modify the name of the plugin, currently set to "My Plugin" and you can change the directory install locations.
The script is meant to be an example/sample of what you can easily and quickly do to deploy a plugin. All the plugins I have written use Wise Install Script, but you can also use Windows Installer or InstallShield.
3. AssemblyInfo.cs is automatically generated by Microsoft for any .net projects. It contains info about your project like version number and code signing. The compiler takes care of compiling this file, and it should not be modified manually.