DNSUtility


Logo

C# Microsoft DNS Utility
Report Bug »

Information

For permission-problems: possible workarounds

API-Activation

//Import DNSHelper namespace
using DNSHelper;

//DC-Serv | "Admin-User" | "Password"
var dnsUtlity = new DNSUtility("DomainController-01", "FishiGames", "P4ssw0rd12E");

Create DNS-Record example:

//Domain | "Subdomain" | "IPv4" | "RecordType"
dnsUtlity.CreateRecord(new DNSRecord("UNREALSHARDS.COM", "googledns", "8.8.8.8", RecordType.A));

Delete DNS-Record example:

//Domain | "Subdomain" | "IPv4" | "RecordType"
dnsUtlity.DeleteRecord(new DNSRecord("UNREALSHARDS.COM", "googledns", "8.8.8.8", RecordType.A));

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.
This API is unofficial, and we are in no way affiliated with the Microsoft Corporation.

Contact

Twitter - @FishiGames
YouTube - @FishiGames
Twitch - @FishiGamesXD
Project Link: https://github.com/FishiGames/DNSUtility