-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSample.json
More file actions
24 lines (24 loc) · 773 Bytes
/
Copy pathSample.json
File metadata and controls
24 lines (24 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"tasks": [
{
"Name": "Get Top 10 Memory Usage by Process",
"ScriptCommand": "Get-Process | Sort-Object -Property PrivateMemorySize64 -Descending | Select-Object -First 10 | Out-GridView -Wait",
"Include": "True"
},
{
"Name": "Get Running Services",
"ScriptCommand": "Get-Service | Where-Object {$_.Status -eq 'Running'} | Out-GridView -Wait",
"Include": "True"
},
{
"Name": "Get Menu History From Csv",
"ScriptCommand": "Get-MenuHistoryFromCsv",
"Include": "True"
},
{
"Name": "Your Function",
"ScriptCommand": "Get-YourFunction",
"Include": "False"
}
]
}