Skip to content

Commit

Permalink
Merge pull request #749 from openziti/update-readme
Browse files Browse the repository at this point in the history
Update readme
  • Loading branch information
dovholuknf authored Oct 30, 2024
2 parents 4f514ff + cce6e9f commit 9ec23af
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,27 @@ The Ziti Desktop Edge for Windows requires .NET Framework 4.8 or later to be ins
dependency will be installed automatically if there is internet connectivity available at install time but when running
in an offline envirnonment it will need to be pre-installed before installing Ziti Desktop Edge for Windows.

You can obtain the .NET 4.8 offline installer from Microsoft. As of this writing, the url is:
https://support.microsoft.com/en-us/topic/microsoft-net-framework-4-8-offline-installer-for-windows-9d23f658-3b97-68ab-d013-aa3c3e7495e0

You can check what version of .NET is installed by running the following powershell command:
```
Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse |
Get-ItemProperty -Name version -ErrorAction SilentlyContinue |
Where-Object { $_.PSChildName -Match '^(?!S)\p{L}' } |
Select-Object PSChildName, version
```

This should output something like the following:
```
PSChildName Version
----------- -------
Client 4.8.09032
Full 4.8.09032
Client 4.0.0.0
```


## Microsoft Defender SmartScreen Issues

After the new signing process was adopted where we sign with a legitimate, purchased signing certificate from a trusted CA as well
Expand Down

0 comments on commit 9ec23af

Please sign in to comment.