Nov11Written by:Martin 11.11.2010 13:48 
If your regularly buy new SwyxPhones for your SwyxWare you might need to update SwyxWare’s SwyxPhone whitelist in order to use the new phones without buying a SwyxPhone license. It’s possible to do this automatically using the following Windows Powershell Script: $url = "ftp://ftp.swyx.com/pub/phonewhitelist/phonewhitelist.msi" $msi = join-path $env:temp "Phonewhitelist.msi" if (test-path -PathType leaf $msi) { remove-item -force -Path $msi } $webClient = new-object "System.Net.WebClient" $webclient.DownloadFile($url,$msi) msiexec.exe /qb /i $msi
Save this as .ps1 file and schedule it with Windows Task Scheduler to run regularly. Tags:
|