Link to home
Start Free TrialLog in
Avatar of stephenwilde
stephenwilde

asked on

WMI DNS delete Zone c#

Hi

Have used code from another post at Experts-Exchange (thanks)  to try to delete  unneccessary zones as the domains have expired. As no way to delete a zone file have used code as suggested but it is not fully working for me!

Have changed code slighly and used WHERE domainname = "domainsrequriedtobedeleted.com' and not WHERE OwnerName = 'an.owner.name' ";

As the SOA record still remains after running the code although A,CNAME and NS records have been deleted - does anybody know why and how to delete it?

also the code takes a long time to run 20 seconds to delete records for 1 domains?

Rgds
stephen
string query = "SELECT * FROM MicrosoftDNS_ResourceRecord WHERE OwnerName = 'an.owner.name' ";
            ManagementObjectSearcher searcher = new ManagementObjectSearcher(_scope, new ObjectQuery(query));
            ManagementObjectCollection collection = searcher.Get();
            foreach (ManagementObject o in collection)
            {
                o.Delete();
            }

Open in new window

Avatar of Chris Dent
Chris Dent
Flag of United Kingdom of Great Britain and Northern Ireland image

You can't delete the SOA without deleting the zone. You'd have to search through the return from MicrosoftDNS_Zone, find the zone in question and call the Delete method as you have above on it.

If you're deleting the zone entirely there's no point in enumerating and deleting records so you may as well save yourself that time. The WMI interface isn't the best in the world and ResourceRecord encompasses all records of all types and includes the cache, it will never be fast.

Chris
Avatar of stephenwilde
stephenwilde

ASKER

Chris

Thanks very much for your quick response but can you expand on which return value from MicrosoftDNS_Zone and what you then do with the return value to delete zone and SOA please.

Rgds
Stephen

Something like this. You should, of course, test this carefully before use.

Chris
using System.Management;

// ...

String ServerName = "yourserver";
String Name = "thezone.com";

String WqlQuery = String.Format("SELECT * FROM MicrosoftDNS_Zone WHERE ContainerName LIKE '{0}'", Name);

ManagementScope Scope = new ManagementScope(
  String.Format(@"\\{0}\root\MicrosoftDNS\MicrosoftDNS_Zone", ServerName),
  this.Options);

ObjectQuery Query = new ObjectQuery(QueryString);

ManagementObjectSearcher wmiSearch = new ManagementObjectSearcher(Scope, Query);
ManagementObjectCollection wmiResults = wmiSearch.Get();

foreach (ManagementObject wmiZone in wmiResults) {
  // This is the Zone ManagementObject. Make sure it's the right one:

  Console.WriteLine("Zone Name: " + (String)wmiZone.Properties["Name"].Value);

  // Only if this works... delete
  // wmiZone.Delete();
}

Open in new window


I neglected to define this.Options, sorry, reassembled this from my management tools. This will do unless you need to authenticate the connection:


ConnectionOptions Options = new ConnectionOptions();


Just remove "this" :)

Chris
Chris

Thanks for the example code but it seems to be runing for several minutes with no activity for deleting one zone.

In the where clause do I need a '% before and/or after %' the domain name ?

Rgds
Stephen
You don't if the domain name is exact, please feel free to change it to direct comparison rather than LIKE with wildcards (where % the any-string wildcard, what you'd normally see as *):

SELECT * FROM MicrosoftDNS_Zone WHERE ContainerName='WhateverZone'

You might also add a filter for zone type, it's Numeric if a little tricky since the values aren't consistent between DNS server versions.

e.g.

SELECT * FROM MicrosoftDNS_Zone WHERE ContainerName='WhateverZone' AND ZoneType=1

Where 1 is a Primary Zone.

It's imperative that you do this in C#? I only ask because while my management tools are written in C# they're written for PowerShell:

http://code.msdn.microsoft.com/dnsshell

I don't think the source code will make the easiest set of sample code to work with, but the PowerShell module should be perfectly capable of this operation.

Chris
Chris

Using c# in .net as want to access the SQL database to list the domains for deletion.

I set up DNS records in code and assume the containername is same as domain name but is there a way to check from DNS interface ?

Rgds
stephen

Ahh okay.

What would you like to check? Deletion of the zone should be reflected by the interface. The snippet above should delete the zone, or are you still suffering from speed issues?

Chris
Chris

Code still running for last hour and has not finished deleting the single zone - have debugged several times and it seems the ManagementObjectCollection wmiResults = wmiSearch.Get();
is not returning any records ?

Rgds
stephen
ASKER CERTIFIED SOLUTION
Avatar of Chris Dent
Chris Dent
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Chris
Sorry for delay in closing this but had network issues that were making it difficult to find why not working.

Have not been able to get it working but I think its my network issues - it appears your solution is correct but unable to verify as times out on delete on my network
Rgds
stephen