Owner's Manual

If the user has imported some local repository/SUU and cleared Repository Manager local cache, it may
happen that in the next run of export when it tries to access the imported path and fails to download the
file with a task failure.
Resolution: User can either manually delete the database file located
at %localappdata%\RepositoryManager\Database or can do a “Sync Database with Dell online Catalog”.
Issue 12
DRM does not support multi-user execution on the same system. Users can not run DRM at the same
time on the same system with two separate remote/local session.
Installation
For information on installing Repository Manager, see the "Dell Repository Manager - Quick
Installation Guide".
Upgrading From Previous Versions
Before upgrading the existing version of Repository Manager with the latest version, ensure that all
screens of the existing versions are closed.
Open Source Software Usage
Dell Repository Manager uses Open Source software to implement certain functions. Next is a list of the
Open Source software used by DRM:
1. Persist the Visual Tree when switching tabs in the WPF TabControl (Optimized) from CodeProject.com
Open Source Software URL:
http://www.codeproject.com/Articles/362940/Persist-the-Visual-Tree-when-switching-tabs-in-the
License:
This article, along with any associated source code and files, is licensed under The Code Project Open
License (CPOL), http://www.codeproject.com/info/cpol10.aspx
Dell Modifications:
- Bug fix: Running on .NET4.5 framework over Remote Session causes TabItem state to be lost if RDP is
reconnected. Similar behavior was observed even with user switching.
Code change: Added a new dependency property “SkipLoad” to determine if a TabControl should be
re-populated every time a load happens. Also track the last selected index before unload and use it to set
it at next load.
- Bug fix: TabItems containing other TabControl would not allow setting the selected item other than
the first element.
Code change: Populate the inner TabControl as soon as the outer TabControl is bound to a new data
source. This ensures the inner TabControl’s tree is available to select any element, not just the first one. It
works in conjunction with SkipLoad property.
- New: Allow new TabItem to be inserted at any specified index, not just at last position.
Code change: Provision AddTabItem method to accept an index position at which new item will be
inserted in the TabControl.