C
cverbiest
Guest
On windows systems with mutliple OE installations it's difficult to find the correct shortcut. with powershell it's easy to rename all shortcuts to include the version, see the example below cd "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Progress\OpenEdge 11.6 (64-bit)" Get-ChildItem -Filter "*.lnk" -Recurse | Rename-Item -NewName {$_.BaseName + " 11.6 (64-bit).lnk" }
Continue reading...
Continue reading...