forked from microsoft/ExPerfWiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStart-ExPerfwiz.ps1
62 lines (44 loc) · 1.41 KB
/
Start-ExPerfwiz.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
Function Start-ExPerfwiz {
<#
.SYNOPSIS
Starts a data collector set
.DESCRIPTION
Starts a data collector set on the local server or a remote server.
.PARAMETER Name
The Name of the Data Collector set to start
Default ExPerfwiz
.PARAMETER Server
Name of the remote server to start the data collector set on.
Default LocalHost
.PARAMETER Quiet
Suppresses output to the screen
.OUTPUTS
Logs all activity into $env:LOCALAPPDATA\ExPefwiz.log file
.EXAMPLE
Start the default data collector set on this server.
Start-ExPerfwiz
.EXAMPLE
Start a collector set on another server.
Start-ExPerfwiz -Name "My Collector Set" -Server RemoteServer-01
#>
param (
[string]
$Name = "Experfwiz",
[string]
$Server = $env:ComputerName,
[switch]
$Quiet = $false
)
Out-LogFile -string ("Starting ExPerfwiz: " + $server) -quiet $Quiet
# Remove the experfwiz counter set
[string]$logman = logman start -name $Name -s $server
# Check if we have an error and throw and error if needed.
If ([string]::isnullorempty(($logman | select-string "Error:"))) {
Out-LogFile "ExPerfwiz Started" -quiet $Quiet
}
else {
Out-LogFile "[ERROR] - Unable to Start Collector" -quiet $Quiet
Out-LogFile $logman -quiet $Quiet
Throw $logman
}
}