Summary of the new feature/enhancement
Users trying to move from cmd to PowerShell struggle with muscle memory on commands like dir /s which don't work since dir is an alias to get-childitem and parameters start with a hyphen and /s for subdirectories would need to be -r for recursion.
Proposed technical implementation details (optional)
Have a built in list of common cmd built-in commands and when the user tries it, a CommandNotFoundException is thrown the suggestion framework can suggest the PowerShell equivalent.
Summary of the new feature/enhancement
Users trying to move from cmd to PowerShell struggle with muscle memory on commands like
dir /swhich don't work sincediris an alias toget-childitemand parameters start with a hyphen and/sfor subdirectories would need to be-rfor recursion.Proposed technical implementation details (optional)
Have a built in list of common cmd built-in commands and when the user tries it, a CommandNotFoundException is thrown the suggestion framework can suggest the PowerShell equivalent.