Add files via upload

This commit is contained in:
kneutron 2023-02-23 01:19:33 -06:00 committed by GitHub
parent 83c34e497c
commit 2c29e7d985
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,24 @@
<# REF: https://techgenix.com/adding-a-progress-bar-to-your-powershell-scripts/ #>
cd /Volumes/zhgstera6/shrcompr-zhgst6
$List = Get-Childitem
$TotalItems=$List.Count
$CurrentItem = 0
$PercentComplete = 0
ForEach($file in $List)
{
Write-Progress -Activity "LS Filenames" `
-Status "$PercentComplete% Complete: $CurrentItem / $TotalItems" `
-PercentComplete $PercentComplete
# do a thing here
#$Name = $VM.Name
#Get-VM -Name $Name
$CurrentItem++
$PercentComplete = [int](($CurrentItem / $TotalItems) * 100)
Start-Sleep -Milliseconds 10
}