I am updating an older Visual Basic program that interrogates and modifies the properties of shortcut files. The program currently uses the Windows Script Host Object Model (Interop.IWshRuntimeLibrary.dll): Imports WSH = IWshRuntimeLibrary 'Windows Script Host ... Dim myShell As WSH.WshShell = New WSH.WshShell() 'Windows Script Host Dim MyShortcut As WSH.WshShortcut but the online documentation for this suggests it is obsolete. What is the current best practice for this set of operations on shortcuts?
icon to share your code.