From 4dc537bb39a801d6c9aa85548a28206ed1acda65 Mon Sep 17 00:00:00 2001 From: Doug <43570139+Periscope34326@users.noreply.github.com> Date: Sun, 3 Feb 2019 20:30:09 +1300 Subject: [PATCH] Corrected parameter description Description for parameter FileWriteMode was incorrect. This simply fixes the description --- .../Functions/CatalogItems/New-RsSubscription.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReportingServicesTools/Functions/CatalogItems/New-RsSubscription.ps1 b/ReportingServicesTools/Functions/CatalogItems/New-RsSubscription.ps1 index ec902e62..7efe0a68 100644 --- a/ReportingServicesTools/Functions/CatalogItems/New-RsSubscription.ps1 +++ b/ReportingServicesTools/Functions/CatalogItems/New-RsSubscription.ps1 @@ -76,7 +76,7 @@ function New-RsSubscription Use with -DeliveryMethod 'FileShare' to specify the filename of the generated report. .PARAMETER FileWriteMode - Use with -DeliveryMethod 'FileShare' to specify the filename of the generated report. + Use with -DeliveryMethod 'FileShare' to specify the write behaviour when a file of the same name already exists. Valid values are NONE, OVERWRITE and AUTOINCREMENT. .EXAMPLE New-RsSubscription -RsItem '/path/to/my/Report' -Description 'Daily to folder' -RenderFormat 'PDF' -Schedule (New-RsScheduleXML -Daily 1) -DeliveryMethod 'FileShare' -FileSharePath '\\Myserver\folder' -FileName 'MyReport' -FileWriteMode Overwrite