From b73a57e701678411399c3990520798b5c1c749af Mon Sep 17 00:00:00 2001 From: Michael Reber Date: Wed, 15 Apr 2020 16:37:38 +0200 Subject: [PATCH] Increment convertedVideos variable to correct starting number --- convert_Videos.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert_Videos.ps1 b/convert_Videos.ps1 index 8d4dde0..af7afda 100644 --- a/convert_Videos.ps1 +++ b/convert_Videos.ps1 @@ -29,7 +29,7 @@ $videos = Get-ChildItem -LiteralPath $videoPath -Name -Recurse -Include ('*.mp4' # Instantiating used variables: $videoID = 1 -$convertedVideos = 0 +$convertedVideos = 1 $notConvertedVideos = 0 $failedVideos = 0 # Square brackets are used as wildcards in Powershell.