From c1b38dcc51555277eff6f7fc2bfa08d9f9cc2238 Mon Sep 17 00:00:00 2001 From: Krishna Nithin Date: Fri, 11 Jan 2019 09:15:06 -0800 Subject: [PATCH] Revert "Add Checksum validation for Premium download to detect corrupt downloads (#487)" This reverts commit 5efdfc22944bec3459e8846f8de4e65d52903b1e. --- Syndication/AzureStack.MarketplaceSyndication.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Syndication/AzureStack.MarketplaceSyndication.psm1 b/Syndication/AzureStack.MarketplaceSyndication.psm1 index fc9efd74..863e248e 100644 --- a/Syndication/AzureStack.MarketplaceSyndication.psm1 +++ b/Syndication/AzureStack.MarketplaceSyndication.psm1 @@ -503,7 +503,7 @@ function DownloadMarketplaceProduct { while (-not $completed) { try { if ($PremiumDownload) { - & 'C:\Program Files (x86)\Microsoft SDKs\Azure\AzCopy\AzCopy.exe' /Source:$Source /Dest:$tmpDestination /Y /CheckMD5 + & 'C:\Program Files (x86)\Microsoft SDKs\Azure\AzCopy\AzCopy.exe' /Source:$Source /Dest:$tmpDestination /Y } else { $wc = New-Object System.Net.WebClient $wc.DownloadFile($Source, $tmpDestination)