public Task<RegistryKey> CreateUninstallerRegistryEntry(string uninstallCmd, string quietSwitch)
 {
     var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);
     return installHelpers.CreateUninstallerRegistryEntry(uninstallCmd, quietSwitch);
 }
 public Task<RegistryKey> CreateUninstallerRegistryEntry()
 {
     var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);
     return installHelpers.CreateUninstallerRegistryEntry();
 }
Exemple #3
0
        public void KillAllExecutablesBelongingToPackage()
        {
            var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);

            installHelpers.KillAllProcessesBelongingToPackage();
        }
 public void RemoveUninstallerRegistryEntry()
 {
     var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);
     installHelpers.RemoveUninstallerRegistryEntry();
 }
Exemple #5
0
        public void RemoveUninstallerRegistryEntry()
        {
            var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);

            installHelpers.RemoveUninstallerRegistryEntry();
        }
Exemple #6
0
        public Task <RegistryKey> CreateUninstallerRegistryEntry()
        {
            var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);

            return(installHelpers.CreateUninstallerRegistryEntry());
        }
Exemple #7
0
        public Task <RegistryKey> CreateUninstallerRegistryEntry(string uninstallCmd, string quietSwitch)
        {
            var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);

            return(installHelpers.CreateUninstallerRegistryEntry(uninstallCmd, quietSwitch));
        }
        public void UpdateUninstallerVersionRegistryEntry()
        {
            var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);

            installHelpers.UpdateUninstallRegisty();
        }
 public void KillAllExecutablesBelongingToPackage()
 {
     var installHelpers = new InstallHelperImpl(applicationName, rootAppDirectory);
     installHelpers.KillAllProcessesBelongingToPackage();
 }