-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSystemResources.psd1
More file actions
90 lines (81 loc) · 2.87 KB
/
SystemResources.psd1
File metadata and controls
90 lines (81 loc) · 2.87 KB
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
# culture = 'en-US'
@{
# Invoke-AsBuiltReport.System.Resources
InvokeAsBuiltReportSystemResources = ConvertFrom-StringData @'
MainDiagramLabel = Process Hierarchy Diagram
Unable = Unable to generate the Process Hierarchy Diagram.
'@
# Get-AbrDate
GetAbrDate = ConvertFrom-StringData @'
InfoLevel = {0} InfoLevel set at {1}.
Collecting = Collecting System Date information.
ParagraphDetail = The following sections detail the system date.
ParagraphSummary = The following table summarises the system date.
Heading = Date
Date = Date
Hour = Hour
'@
# Get-AbrProcessInfo
GetAbrProcessInfo = ConvertFrom-StringData @'
InfoLevel = {0} InfoLevel set at {1}.
Collecting = Collecting System Process information.
ParagraphDetail = The following sections detail the system process.
ParagraphSummary = The following table summarises the top 5 system process. For more detailed information, please set the InfoLevel.ProcessInfo value to 2 in your report configuration file. Sorted by CPU usage.
Heading = Process
Name = Name
Id = Id
CPU = CPU (%)
Memory = Memory (MB)
Company = Company
Product = Product
Unknown = Unknown
'@
# Get-AbrTimeZone
GetAbrTimeZone = ConvertFrom-StringData @'
InfoLevel = {0} InfoLevel set at {1}.
Collecting = Collecting System TimeZone information.
ParagraphDetail = The following sections detail the system TimeZone.
ParagraphSummary = The following table summarises the system TimeZone.
Heading = TimeZone
TimeZone = TimeZone
Id = Id
DisplayName = DisplayName
CurrentTime = Current Time
BaseUTCOffset = Base UTC Offset
SupportsDaylightSavingTime = Supports Daylight Saving Time
Yes = Yes
No = No
Unknown = Unknown
'@
# Get-AbrUptime
GetAbrUptime = ConvertFrom-StringData @'
InfoLevel = {0} InfoLevel set at {1}.
Collecting = Collecting System Uptime information.
ParagraphDetail = The following sections detail the system Uptime.
ParagraphSummary = The following table summarises the system Uptime.
Heading = Uptime
Uptime = Uptime
'@
# Get-AbrPSHost
GetAbrPSHost = ConvertFrom-StringData @'
InfoLevel = {0} InfoLevel set at {1}.
Collecting = Collecting System PowerShell Host information.
ParagraphDetail = The following sections detail the system PowerShell Host.
ParagraphSummary = The following table summarises the system PowerShell Host.
Heading = PowerShell Host
Name = Name
Version = Version
CurrentCulture = Current Culture
CurrentUICulture = Current UI Culture
DebuggerEnabled = Debugger Enabled
Yes = Yes
No = No
Unknown = Unknown
'@
# Get-AbrProcessDiagram
GetAbrProcessDiagram = ConvertFrom-StringData @'
InfoLevel = {0} InfoLevel set at {1}.
Generating = Generating Process Diagram.
Label = Process Hierarchy
'@
}