Share via


Instance.UnregisterLocal Method ()

Unregisters the instance of Notification Services on the local computer.

Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Declaration
Public Sub UnregisterLocal
public void UnregisterLocal ()
public:
void UnregisterLocal ()
public void UnregisterLocal ()
public function UnregisterLocal ()

Hinweise

Unregistering an instance of Notification Services removes information about the instance from the registry, removes instance and application performance counters, and uninstalls the Windows service, if one exists.

You can only unregister instances on the local computer.

Beispiel

The following examples show how to disable, unregister, and drop an instance of Notification Services:

// First disable the instance.
Console.WriteLine("Disabling instance...");
inst.Disable();

// Then unregister the instance.
Console.WriteLine("Unregistering instance...");
inst.UnregisterLocal();

// And then delete the instance.
Console.WriteLine("Deleting instance...");
inst.Drop();

Console.WriteLine("Done.");
' First disable the instance.
Console.WriteLine("Disabling instance...")
inst.Disable()

' Then unregister the instance.
Console.WriteLine("Unregistering instance...")
inst.UnregisterLocal()

' And then delete the instance.
Console.WriteLine("Deleting instance...")
inst.Drop()

Console.WriteLine("Done.")

Threadsicherheit

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

Instance Class
Instance Members
Microsoft.SqlServer.Management.Nmo Namespace

Andere Ressourcen

Vorgehensweise: Aufheben der Registrierung einer Instanz von Notification Services (SQL Server Management Studio)
nscontrol unregister (Befehl)