forked from sperner/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiThread.ps1
78 lines (65 loc) · 2.34 KB
/
MultiThread.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Start a given script multithreaded for a bunch of remote machines
#
Param( $ScriptFile = $(Read-Host "Enter the script file"),
$ComputerList = $(Read-Host "Enter the Location of the computerlist"),
$MaxThreads = 20,
$SleepTimer = 500,
$MaxWaitAtEnd = 600,
$OutputType = "Text" )
Write-Host "Killing existing jobs ... " -noNewLine
Get-Job | Remove-Job -Force
Write-Host "Done."
$numJobs = 0
$Computers = Get-Content $ComputerList
ForEach( $Computer in $Computers )
{
While( $(Get-Job -state running).count -ge $MaxThreads )
{
Write-Progress -Activity "Creating Server List"
-Status "Waiting for threads to close"
-CurrentOperation "$numJobs threads created - $($(Get-Job -state running).count) threads open"
-PercentComplete ($numJobs / $Computers.count * 100)
Start-Sleep -Milliseconds $SleepTimer
}
$numJobs++
Start-Job -FilePath $ScriptFile -ArgumentList $Computer -Name $Computer | Out-Null
Write-Progress -Activity "Creating Server List"
-Status "Starting Threads"
-CurrentOperation "$numJobs threads created - $($(Get-Job -state running).count) threads open"
-PercentComplete ($numJobs / $Computers.count * 100)
}
$allStartedAt = Get-date
While( $(Get-Job -State Running).count -gt 0 )
{
$ComputersStillRunning = ""
ForEach( $System in $(Get-Job -state running) )
{
$ComputersStillRunning += ", $($System.name)"
}
$ComputersStillRunning = $ComputersStillRunning.Substring( 2 )
Write-Progress -Activity "Creating Server List"
-Status "$($(Get-Job -State Running).count) threads remaining"
-CurrentOperation "$ComputersStillRunning"
-PercentComplete ($(Get-Job -State Completed).count / $(Get-Job).count * 100)
If( $(New-TimeSpan $allStartedAt $(Get-Date)).totalseconds -ge $MaxWaitAtEnd )
{
Write-Host "Killing all jobs still running . . ."
Get-Job -State Running | Remove-Job -Force
}
Start-Sleep -Milliseconds $SleepTimer
}
Write-Host "Reading all jobs"
If( $OutputType -eq "Text" )
{
ForEach( $Job in Get-Job )
{
Write-Host "$($Job.Name)"
Write-Host "****************************************"
Receive-Job $Job
Write-Host " "
}
}
ElseIf( $OutputType -eq "GridView" )
{
Get-Job | Receive-Job | Select-Object * -ExcludeProperty RunspaceId | out-gridview
}