Tip: Powershell oneliner to rename OpenEdge shortcuts to inc

Posted by cverbiest on 09-Dec-2015 00:46

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" }

All Replies

This thread is closed