From 34ec49f01e1f7db9f85f8b88187d02f25ca8331a Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Sun, 10 Mar 2019 22:47:56 -0400 Subject: [PATCH] Update help messages. --- ZertoApiWrapper/Public/New-ZertoVpg.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ZertoApiWrapper/Public/New-ZertoVpg.ps1 b/ZertoApiWrapper/Public/New-ZertoVpg.ps1 index 4d485b6..783a9a7 100644 --- a/ZertoApiWrapper/Public/New-ZertoVpg.ps1 +++ b/ZertoApiWrapper/Public/New-ZertoVpg.ps1 @@ -8,12 +8,12 @@ function New-ZertoVpg { )] [string]$vpgName, [Parameter( - HelpMessage = "VPG Priority. High, Medium, or Low." + HelpMessage = "VPG Priority. High, Medium, or Low. Default value is Medium" )] [ValidateSet("High", "Medium", "Low")] [string]$vpgPriority = "Medium", [Parameter( - HelpMessage = "Journal History in Hours. Min 1 hour, Max 720 Hours (30 days)" + HelpMessage = "Journal History in Hours. Min 1 hour, Max 720 Hours (30 days). Default value is 24 hours" )] [ValidateRange(1, 720)] [int]$journalHistoryInHours = 24,