-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMemoryTools.psd1
More file actions
55 lines (50 loc) · 3.66 KB
/
MemoryTools.psd1
File metadata and controls
55 lines (50 loc) · 3.66 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
#
# Module manifest for module 'MemoryTools'
#
@{
RootModule = 'MemoryTools.psm1'
ModuleVersion = '1.1.0'
CompatiblePSEditions = 'Desktop', 'Core'
GUID = 'c26f558f-2f21-4b5e-a9ef-5aa646dd262e'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2016-2023 JDH Information Technology Solutions, Inc. All rights reserved.'
Description = 'A set of functions for checking, testing and reporting memory usage using WMI and performance counters.'
PowerShellVersion = '5.1'
# TypesToProcess = @()
FormatsToProcess = @(
"formats\MyMemoryUsage.format.ps1xml",
"formats\physicalMemoryUnit.format.ps1xml",
"formats\topProcessMemoryUnit.format.ps1xml",
"formats\myProcessMemory.format.ps1xml"
)
FunctionsToExport = @(
'Get-MemoryUsage',
'Get-ProcessMemory',
'Show-MemoryUsage',
'Test-MemoryUsage',
'Get-MemoryPerformance',
'Get-PhysicalMemory',
'Get-TopProcessMemory'
)
CmdletsToExport = ''
VariablesToExport = @('MemoryToolsOK', 'MemoryToolsWarning')
AliasesToExport = @(
'gmem',
'shmem',
'tmem',
'gmemp',
'gpmem',
'gtop'
)
PrivateData = @{
PSData = @{
Tags = @("Performance", "Memory", "Process")
LicenseUri = 'https://github.com/jdhitsolutions/MemoryTools/blob/master/license.txt'
ProjectUri = 'https://github.com/jdhitsolutions/MemoryTools'
# IconUri = ''
# ReleaseNotes = ''
} # End of PSData hashtable
} # End of PrivateData hashtable
# DefaultCommandPrefix = ''
}