基于 DNSPod 用户 API 实现的纯 PowerShell 实现的动态域名客户端。
这个软件由 rehiy/dnspod-shell
转换过来的,与源项目保持了相同的配置命令和调用方式。
设置执行策略:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
执行远程脚本:
irm https://raw.githubusercontent.com/ztj1993/dnspod-powershell/refs/heads/master/ardnspod.ps1 | iex
或者脚本在本地:
& "C:\path\to\your\ardnspod.ps1"
设置令牌:
$arToken = "12345,7676f344eaeaea9074c123451234512d"
设置如果域名没有定义是否新建(按需):
$arIsCreateRecord = 1
域名更新:
arDdnsCheck test.org subdomain
手动创建配置:
arDdnsCreate test.org subdomain 4 192.168.0.100
删除域名配置:
arDdnsDelete test.org subdomain 4
2025/03/19
- 推送第一个版本
- 支持动态域名客户端基本功能
- 支持删除域名记录
- 支持手动创建域名记录