Auf Englisch lesen

Freigeben über


UninstallAction Enumeration

Definition

Gibt an, welche Aktionen ein Installationsprogramm während einer Deinstallation ausführen soll.

public enum UninstallAction
Vererbung
UninstallAction

Felder

Name Wert Beschreibung
NoAction 1

Die vom Installationsprogramm erstellte Ressource bleibt unverändert.

Remove 0

Die vom Installationsprogramm erstellte Ressource wird entfernt.

Beispiele

Im folgenden Beispiel wird ein benutzerdefiniertes Deinstallationsprogramm erstellt, das die Installer -Klasse erbt. In der überschriebenen Uninstall Funktion wird die UninstallAction Enumeration basierend auf der Benutzereingabe festgelegt. Wenn die Eingabe "n" ist, führt das benutzerdefinierte Deinstallationsprogramm keine Aktion für die Ressource im vom Benutzer eingegebenen Ereignisprotokoll aus. Andernfalls wird die Ressource aus dem Ereignisprotokoll entfernt.

using System;
using System.Diagnostics;
using System.Collections;
using System.ComponentModel;
using System.Configuration.Install;

[RunInstaller(true)]
public class MyUninstallActionClass : Installer
{
   EventLogInstaller myInstaller = new EventLogInstaller();

   // Override the 'Install' method.
   public override void Install(IDictionary savedState)
   {
      Console.Write("Enter a new log to create (eg: MyLog ): ");
      myInstaller.Log = Console.ReadLine();
      Console.Write("Enter a source for log (eg: MySource ): ");
      myInstaller.Source = Console.ReadLine();
      Installers.Add( myInstaller );
      base.Install(savedState);
   }

   // Override the 'Commit' method.
   public override void Commit(IDictionary savedState)
   {
      base.Commit(savedState);
   }

   // Override the 'Rollback' method.
   public override void Rollback(IDictionary savedState)
   {
      base.Rollback(savedState);
   }
   public override void Uninstall(IDictionary savedState)
   {
      Console.Write("Enter a source from log to uninstall(eg: MySource ): ");
      myInstaller.Source = Console.ReadLine();

      Console.Write("Do you want to uninstall, press 'y' for 'YES' and 'n' for 'NO':");
      string myUninstall = Console.ReadLine();

      if( myUninstall == "n" )
      {
         // No action to be taken on the resource in the event log.
         myInstaller.UninstallAction = System.Configuration.Install.UninstallAction.NoAction;
      }
      else
      {
         // Remove the resource from the event log.
         myInstaller.UninstallAction = System.Configuration.Install.UninstallAction.Remove;
      }
      Installers.Add( myInstaller );
      base.Uninstall(savedState);
   }
   public static void Main()
   {
      Console.WriteLine("Syntax for install: installutil.exe UninstallAction_NoAction_Remove_3.exe ");
      Console.WriteLine("Syntax for uninstall: installutil.exe /u "
         +"UninstallAction_NoAction_Remove_3.exe ");
   }
}

Gilt für:

Produkt Versionen
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Weitere Informationen