Reputation: 5037
In some website i found that is it possible for me to programmatically create a subdomain to the website i own from C# WinForm application.
How can I create a subdomain on my website, given the server host, user and pass?
Upvotes: 0
Views: 566
Reputation: 250822
I wrote a program to edit DNS records for a company with 30,000 domains and I used WMI to edit the records.
Your starting place is the DNS WMI Provider Samples and this article on editing DNS with WMI.
You can use WMI in a .NET application - although many samples out there are for Powershell etc.
Upvotes: 1