This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$InstallPath = 'C:\AzCopy' | |
# Cleanup Destination | |
if (Test-Path $InstallPath) { | |
Get-ChildItem $InstallPath | Remove-Item -Confirm:$false -Force | |
} | |
# Zip Destination | |
$zip = "$InstallPath\AzCopy.Zip" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Set the Azure subscription for the script to run | |
# Example: az account set --subscription <subscription_id> | |
# Parallel throttle limit - modify this based on your system capability | |
parallelThrottleLimit=16 | |
logFileName="LogAnalyticsAgentUninstallUtilityScriptLog.log" | |
inventoryFile="LogAnalyticsAgentExtensionInventory.csv" |
OlderNewer