forked from CallMeSteve297/engineercollect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
163 lines (161 loc) · 6.24 KB
/
config.json
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"version": 1.6,
"categories" : [
{
"name" : "System Information",
"cmds" : [
{
"command" : "Get-CimInstance win32_processor | select Name, Manufacturer, MaxClockSpeed, NumberOfCores",
"type" : "ps",
"friendly" : "CPU Information",
"format" : "list"
},
{
"command" : "Get-CimInstance win32_physicalmemory | select BankLabel, Manufacturer, PartNumber, SerialNumber, Capacity, Speed, FormFactor",
"type" : "ps",
"friendly" : "RAM Information",
"format" : "table"
},
{
"command" : "Get-PhysicalDisk",
"type" : "ps",
"friendly" : "Disk Information",
"format" : "list"
},
{
"command" : "Get-WmiObject win32_bios; Get-WmiObject win32_computersystem",
"type" : "ps",
"friendly" : "Hardware Information",
"format" : "none"
},
{
"command" : "dsregcmd /status",
"type" : "ps",
"friendly" : "Domain Status",
"format" : "none"
},
{
"command" : "[Environment]::GetEnvironmentVariables([EnvironmentVariableTarget]::Machine)",
"type" : "ps",
"friendly" : "Environment Vars - System",
"format" : "none"
},
{
"command" : "[Environment]::GetEnvironmentVariables([EnvironmentVariableTarget]::User)",
"type" : "ps",
"friendly" : "Environment Vars - User",
"format" : "none"
},
{
"command" : "Get-ItemProperty -Path 'HKLM:\\Software\\Microsoft\\Windows NT\\CurrentVersion\\' | Select-Object ProductName, EditionID, ReleaseId",
"type" : "ps",
"friendly" : "Windows Edition Information",
"format" : "none"
},
{
"command" : "Get-WmiObject -Query \"SELECT Name, Description, PartialProductKey, LicenseStatus FROM SoftwareLicensingProduct WHERE LicenseStatus='1'\"",
"type" : "ps",
"friendly" : "Windows Licensing Information",
"format" : "none"
}
]
},
{
"name" : "Networking",
"cmds" : [
{
"command" : "Get-NetAdapter",
"type" : "ps",
"friendly" : "Network Adapters",
"format" : "list"
},
{
"command" : "Get-NetIPAddress",
"type" : "ps",
"friendly" : "Network Addresses",
"format" : "none"
},
{
"command" : "ipconfig /all",
"type" : "cmd",
"friendly" : "IP Config"
},
{
"command" : "route print",
"type" : "ps",
"friendly" : "Routing Table",
"format" : "none"
},
{
"command" : "Test-Connection 8.8.8.8",
"type" : "ps",
"friendly" : "Connection Test - Google DNS",
"format" : "none"
},
{
"command" : "$ProgressPreference = 'SilentlyContinue'; Test-NetConnection -ComputerName (Get-NetRoute | Where-Object DestinationPrefix -eq '0.0.0.0/0' | Select-Object -First 1).NextHop",
"type" : "ps",
"friendly" : "Connection Test - Default Gateway",
"format" : "none"
}
]
},
{
"name" : "Software",
"cmds" : [
{
"command" : "Get-WmiObject -Class Win32_Product | select Name, Vendor, Version, InstallDate",
"type" : "ps",
"friendly" : "Win32 Apps",
"format" : "none"
},
{
"command" : "Get-AppxPackage | select Name, PackageFullName, Publisher, Version",
"type" : "ps",
"friendly" : "Microsoft Store Apps",
"format" : "none"
},
{
"command" : "Get-ItemProperty HKLM:\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\* | select DisplayName, Publisher, InstallDate, DisplayVersion, HelpLink",
"type" : "ps",
"friendly" : "Apps from Registry",
"format" : "none"
},
{
"command" : "Get-Process | select Name, Id, MainWindowTitle, Responding | Out-String -Width 2000",
"type" : "ps",
"friendly" : "Running Apps",
"format" : "none"
}
]
},
{
"name" : "Services and Processes",
"cmds" : [
{
"command" : "Get-Service | select DisplayName, Name, Status",
"type" : "ps",
"friendly" : "Service Information",
"format" : "none"
},
{
"command" : "Get-Process",
"type" : "ps",
"friendly" : "Process Information",
"format" : "none"
}
]
},
{
"name" : "Windows Defender",
"cmds" : [
{
"command" : "Get-MpComputerStatus",
"type" : "ps",
"friendly" : "Defender Computer Status",
"format" : "none"
}
]
}
]
}