diff --git a/wmf/5.0/feedback_moduleversionranges.md b/wmf/5.0/feedback_moduleversionranges.md index dd2c9adb9c1b..a83e6ef1cac5 100644 --- a/wmf/5.0/feedback_moduleversionranges.md +++ b/wmf/5.0/feedback_moduleversionranges.md @@ -8,9 +8,9 @@ keywords: wmf,powershell,setup # Modules support for declaring version ranges (1.*, etc) Combined with **-MinimumVersion**, **-MaximumVersion** now allows user to get/import module within specific range. The parameter also support **.**\*. The following example shows how it works: -```powershell Now, you can combine **-MinimumVersion** and **-MaximumVersion** to import module within specific range: +```powershell PS C:\> Import-Module psreadline -Verbose -MinimumVersion 1.0 -MaximumVersion 1.2.* VERBOSE: Loading module from path 'C:\Program Files\WindowsPowerShell\Modules\psreadline\1.1\psreadline.psd1'. @@ -20,4 +20,4 @@ VERBOSE: Importing cmdlet 'Remove-PSReadlineKeyHandler'. VERBOSE: Importing cmdlet 'Set-PSReadlineKeyHandler'. VERBOSE: Importing cmdlet 'Set-PSReadlineOption'. VERBOSE: Importing function 'PSConsoleHostReadline'. -``` \ No newline at end of file +```