void CreateShortcutFor(string fileName, string description)
        {
            using (ShellLink shortcut = new ShellLink())
            {
                // The file that the .lnk file links to
                string target = //ComponentStorage.GetValue<string>(FrbdkSetupComponent.Path)
                                FrbdkUpdaterManager.FrbdkInProgramFiles
                                + fileName;
                shortcut.Target           = target;
                shortcut.WorkingDirectory = Path.GetDirectoryName(target);
                shortcut.Description      = description;
                shortcut.DisplayMode      = ShellLink.LinkDisplayMode.edmNormal;

                // Where to save the .lnk file
                shortcut.Save(StartMenuFolder + FileManager.RemovePath(FileManager.RemoveExtension(fileName)) + ".lnk");
            }
        }