Forum Post: Tip: Powershell Oneliner To Rename Openedge Shortcuts To Include Version

  • Thread starter Thread starter cverbiest
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top