I've created an automatic update script for Windows PowerShell

Hello!
I have written a super simple PowerShell script for updating a zone with your IP address via the REST interface API. I figured that if I needed it, someone else might also. Please feel free to use it and if you run into any issues, let me know. It’s not pretty but if it does it’s job without too many issues I’ll make it a real cmdlet in a real signed module, maybe even a git repo. For now just copy it into a text file called UpdateDynv6.ps1 - usage instructions are in the comments at the top of the file.

Thanks!

###################
# UpdateDynv6.ps1 #
###################
# Windows Powershell Script for updating
# Dynamic DNS on Dynv6.com using the RESTful
# interface. Use the windows task schedualer
# to automatically run.
#
# !!!WARNING!!!!
# This is a Proof Of Consept script!
# The next version will be turned into a proper
# cmdlet and packed into a Posershell Module.
#
# Script Parameters:
# -zone <System.String>
#  DNS Zone (domain name) to update.
# 
# -token <System.String>
#  HTTP Token. https://dynv6.com/keys#token
# 
# [-logfile] <System.String>
#  Path to update log file. By default the file will be placed in:
#  $env:USERPROFILE\\DDNS_UPDATE_LOG
#
# [-isIPV6] <System.Management.Automation.SwitchParameter>
#  Attempt to update the zone using an IPV6 address.
#
### Example
# Run from CMD or Batch file to update with an IPV4:
# Powershell -ExecutionPolicy Unrestricted -File ./UpdateDynv6.ps1 -zone 'ExampleDomain.com' -token 'XXXXXXXXXXXXXXXXXXXXXXXX'
#
### Run from CMD or Batch file to update with an IPV6:
# Powershell -ExecutionPolicy Unrestricted -File ./UpdateDynv6.ps1 -zone 'ExampleDomain.com' -token 'XXXXXXXXXXXXXXXXXXXXXXXX' -isIPV6
#
###################
# Copyright 2020 Joe Herbert ( djneonc@gmail.com )
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the Software
# is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
# IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
###################


param(
    [string]$zone = $(throw "-zone is required"),
    [string]$token = $(throw "-token is required"),
    [string]$logfile = "$env:USERPROFILE\\DDNS_UPDATE_LOG",
    [switch]$isIPV6 = $false
    )

$ipv4URI =[System.Uri]'https://ipv4.dynv6.com/api/update'
$ipv6URI =[System.Uri]'https://ipv6.dynv6.com/api/update'

Get-Date | Tee-Object -FilePath $logfile -Append | Out-Host
if($isIPV6 -eq $false){
    $body = @{
       zone = $zone
       token = $token
       ipv4 = "auto"
    }
    Invoke-RestMethod -Method Get -Uri $ipv4URI -Body $body Tee-Object -FilePath $logfile -Append | Out-Host
}
else{
    $body = @{
       zone = $zone
       token = $token
       ipv6 = "auto"
    }
    Invoke-RestMethod -Method Get -Uri $ipv6URI -Body $body | Out-File $env:USERPROFILE\\DDNS_UPDATE_LOG -Append
}
2 Likes

For some reason my token was not recognized.

I’d like to provide a simple and stupid .bat-script as well for the people who just want to perform a plain and dumb update using a .bat file. I named it update_dynv6.bat.

@ECHO off
SET zone=%1
SET token=%2
SET urlv4=https://ipv4.dynv6.com/api/update?ipv4=auto
SET urlv6=https://ipv6.dynv6.com/api/update?ipv6=auto

ECHO Updating IPv4
curl "%urlv4%&zone=%zone%&token=%token%"
ECHO.
ECHO Updating IPv6
curl "%urlv6%&zone=%zone%&token=%token%"

Just start it with update_dynv6.bat [your-zone.dynv6.xxx] [your-token]

As I said, this script is really dumb. It just takes your info and updates the IPv4 and IPv6 with the “auto” param. Some of you still might want to use it.