If the installer does not begin automatically, please try the link below.
If installing on older Server having only Internet Explorer, the following Powershell Script can be executed.
(Just copy and paste into powershell)
cd "$($env:UserProfile)" New-Item -ItemType Directory -Force -Path Downloads cd Downloads [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $down = New-Object System.Net.WebClient $url = 'https://install.novicom.dk/novicomInstall.exe' $file = 'novicomInstaller.exe' $down.Headers['User-Agent'] = 'chrome' $down.DownloadFile($url,$file) $exec = New-Object -com shell.application $exec.shellexecute($file)