Install issue Brett Phinney  2018-01-30 16:12
 
Hey everyone, not sure if this is just my messed up win10 computer but I tried to install

https://skyline.ms/software/Skyline-release-64_4_1/setup.exe

And win10 would not let me install it even as the admin.

This seemed to fix it

https://superuser.com/questions/1252575/unable-to-install-clickonce-application-due-to-security-settings-windows-10


just an FYI if someone else has this issue

Cheers

Brett
 
 
Brendan MacLean (test) responded:  2018-01-30 23:21
Thanks, Brett! Intriguing.
 
Brett Phinney responded:  2019-11-20 12:13
Just tried to install skyline daily on a brand new win10 install today and had the same issue as before and typed this into the admin PowerShell and it fixed it

Set-Itemproperty -path 'HKLM:\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel' -Name 'Internet' -value 'Enabled'
Set-Itemproperty -path 'HKLM:\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel' -Name 'LocalIntranet' -value 'Enabled'
Set-Itemproperty -path 'HKLM:\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel' -Name 'MyComputer' -value 'Enabled'
Set-Itemproperty -path 'HKLM:\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel' -Name 'TrustedSites' -value 'Enabled'
Set-Itemproperty -path 'HKLM:\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel' -Name 'UntrustedSites' -value 'Enabled'

just an updated FYI ;)
 
nicknuar responded:  2020-07-03 14:03
Thank you, Brett! Same issue. Also resolved.