{"id":37229373,"url":"https://github.com/mrfootoyou/ddns","last_synced_at":"2026-01-15T03:32:26.972Z","repository":{"id":210512798,"uuid":"147157300","full_name":"mrfootoyou/ddns","owner":"mrfootoyou","description":"DDNS registration client for Cloudflare using cross-platform PowerShell","archived":false,"fork":false,"pushed_at":"2026-01-12T02:06:03.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-12T06:57:38.664Z","etag":null,"topics":["cloudflare","cross-platform","ddns","ddns-client","ddns-updater","powershell"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrfootoyou.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2018-09-03T05:48:48.000Z","updated_at":"2026-01-12T02:02:40.000Z","dependencies_parsed_at":"2023-12-03T10:23:50.240Z","dependency_job_id":"0aa5f079-cd0d-4761-8bdc-6b3ef6a2dca8","html_url":"https://github.com/mrfootoyou/ddns","commit_stats":null,"previous_names":["mrfootoyou/ddns"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mrfootoyou/ddns","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfootoyou%2Fddns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfootoyou%2Fddns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfootoyou%2Fddns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfootoyou%2Fddns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrfootoyou","download_url":"https://codeload.github.com/mrfootoyou/ddns/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfootoyou%2Fddns/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28442285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"online","status_checked_at":"2026-01-15T02:00:08.019Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","cross-platform","ddns","ddns-client","ddns-updater","powershell"],"created_at":"2026-01-15T03:32:26.399Z","updated_at":"2026-01-15T03:32:26.964Z","avatar_url":"https://github.com/mrfootoyou.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DDNS Registration Client\n\nA PowerShell 7+ script to update dynamic DNS (DDNS) records for IPv4 and IPv6\naddresses. It currently supports updating\n[Cloudflare DNS](https://developers.cloudflare.com/api/operations/dns-records-for-a-zone-patch-dns-record)\nrecords in [Cloudflare](https://www.cloudflare.com/products/registrar/).\n\n## Usage\n\nCreate a config file at `~/.ddns/config.json` and add your records to it. See\n[./config.json](./config.json) for an example.\n\n```powershell\n# Copy the example config file to the user's home directory if it doesn't already exist\nif (!(Test-Path -Path '~/.ddns/config.json')) {\n    $null = New-Item '~/.ddns' -ItemType Directory -Force\n    Copy-Item './config.json' '~/.ddns/config.json'\n    # e.g., code (Convert-Path '~/.ddns/config.json')\n}\n```\n\nRun the script to update the configured DDNS records:\n\n```powershell\n./update-ddns.ps1\n```\n\nThe script will log its actions to `~/.ddns/update.log` and maintain a status\nfile at `~/.ddns/status.json`. Both of these paths can be customized in the\nconfig file.\n\n## Run on a schedule\n\nUse the following PowerShell script to create a Windows Scheduled Task which\nstarts at logon of the current user and then runs daily at 8AM:\n\n```powershell\ncd C:\\dev\\ddns # path to where update-ddns.ps1 is located\n\nNew-ScheduledTask `\n    -Action (New-ScheduledTaskAction `\n        -Execute (Get-Command pwsh).Path `\n        -Argument '-nologo -nop -ep bypass -w hidden -f update-ddns.ps1' `\n        -WorkingDirectory $PWD) `\n    -Trigger `\n        (New-ScheduledTaskTrigger -AtLogOn),\n        (New-ScheduledTaskTrigger -Daily -At (Get-Date '08:00')) | `\nRegister-ScheduledTask -TaskName 'Update DDNS' -Force\n\n# Execute now:\nStart-ScheduledTask -TaskName 'Update DDNS'\n\n# Delete:\n# Unregister-ScheduledTask -TaskName 'Update DDNS'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrfootoyou%2Fddns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrfootoyou%2Fddns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrfootoyou%2Fddns/lists"}