{"id":18555645,"url":"https://github.com/kdpuvvadi/cloudflare-ddns-powershell","last_synced_at":"2026-04-17T00:02:20.323Z","repository":{"id":42326668,"uuid":"400717017","full_name":"kdpuvvadi/cloudflare-ddns-powershell","owner":"kdpuvvadi","description":"DDNS for Cloudflare with PowerShell","archived":false,"fork":false,"pushed_at":"2023-06-08T10:37:00.000Z","size":89,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-27T06:58:06.494Z","etag":null,"topics":["cloudflare","ddns-client","ddns-script","powershell-script"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kdpuvvadi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-28T06:11:07.000Z","updated_at":"2022-11-28T09:44:35.000Z","dependencies_parsed_at":"2024-11-06T21:33:28.404Z","dependency_job_id":"f57c1b20-7f71-4e6c-98f6-555448175a04","html_url":"https://github.com/kdpuvvadi/cloudflare-ddns-powershell","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/kdpuvvadi/cloudflare-ddns-powershell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdpuvvadi%2Fcloudflare-ddns-powershell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdpuvvadi%2Fcloudflare-ddns-powershell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdpuvvadi%2Fcloudflare-ddns-powershell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdpuvvadi%2Fcloudflare-ddns-powershell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kdpuvvadi","download_url":"https://codeload.github.com/kdpuvvadi/cloudflare-ddns-powershell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdpuvvadi%2Fcloudflare-ddns-powershell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31909235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloudflare","ddns-client","ddns-script","powershell-script"],"created_at":"2024-11-06T21:27:27.138Z","updated_at":"2026-04-17T00:02:20.289Z","avatar_url":"https://github.com/kdpuvvadi.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cloudflare DDNS service for Windows\n\n![cloudflare-ddns](img/ddns_cloudflare_powershell.png)\n\nDDNS service for cloudflare users with PowerShell\n\n## Creating a Cloudflare API token\n\nTo create a CloudFlare API token for your DNS zone go to [https://dash.cloudflare.com/profile/api-tokens](https://dash.cloudflare.com/profile/api-tokens) and follow these steps:\n\n* Click Create Token\n* Provide the token a name, for example, cloudflare-ddns\n* Grant the token the following permissions:\n* `Zone` - `Zone Settings` - `Read`\n* `Zone` - `Zone` - `Read`\n* `Zone` - `DNS` - `Edit`\n* Set the zone resources to:\n* Include - All zones\n\n## Getting Started\n\nCopy `eg.vars.ini` to `vars.ini` or whatever you like e.g. `file.ini`\n\n```powershell\nCopy-Item -Path eg.vars.ini -Destination vars.ini\n```\n\nEdit `vars.ini` and replace the values with your own.\n\n```ini\napiToken=\ndomain=      \nsubdomain=\n```\n\n* apiToken: Cloudflare `token` (generated from previsous wizard)\n* domain: Domain Name (example.com)\n* Subdomain: `cname` for the subdomain (test is test.example.com)\n\n## Deployment\n\nTo deploy this project run\n\n```powershell\n.\\ddns.ps1\n```\n\n## Auto Update\n\nCreate a task Scheduler task to repeat the task every 5 min to update the record periodically.\n\n### Trigger\n\n* `Begin the task`: `On a Shedule`\n* Settings: `Daily` \u0026 Recur Every `1` Day\n* Repeat the task every `5 minutes` for a duration of `indefinitely`\n\n### Actions\n\n* Action: `Start a program`\n* Program/Script:\n  * `\"C:\\Program Files\\PowerShell\\7\\pwsh.exe\"` for Powershell 7\n  * `\"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe\"` for Powershell 5\n* Add arguments: `-File \"~\\Documents\\cloudflare-ddns-powershell\\ddns.ps1\"`\n* Start in: `\"~\\Documents\\cloudflare-ddns-powershell\\\"`\n\n\u003e Change the path to actual path. Here assuming it is store in Documents.\n\n## LICENSE\n\nLicensed under [MIT](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdpuvvadi%2Fcloudflare-ddns-powershell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkdpuvvadi%2Fcloudflare-ddns-powershell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdpuvvadi%2Fcloudflare-ddns-powershell/lists"}