Changed the remoteapp default icon to the default app icon from user32.dll. The removes the dependency of RDC feature being installed in Win 11. Fixes issue #128. Updated version #

This commit is contained in:
Kim Knight 2024-09-14 23:59:13 +10:00
parent 8e9a3bf182
commit ab3ae88f7d
2 changed files with 3 additions and 3 deletions

View File

@ -148,7 +148,7 @@ Module IconModule
Return Icon.FromHandle(smallIcon)
End If
Else
Return ReturnIcon(GetSysDir() & "\mstsc.exe", 0)
Return ReturnIcon(GetSysDir() & "\user32.dll", 0)
End If
End Function

View File

@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("6.1.0.0")>
<Assembly: AssemblyFileVersion("6.1.0.0")>
<Assembly: AssemblyVersion("6.1.1.0")>
<Assembly: AssemblyFileVersion("6.1.1.0")>