├── MemoryTools.psd1 ├── MemoryTools.psm1 ├── README.md ├── Tests ├── MemoryTools.tests.ps1 └── test-runner.ps1 ├── assets └── show-memoryusage.png ├── changelog.md ├── docs ├── Get-MemoryPerformance.md ├── Get-MemoryUsage.md ├── Get-PhysicalMemory.md ├── Get-ProcessMemory.md ├── Get-TopProcessMemory.md ├── Show-MemoryUsage.md └── Test-MemoryUsage.md ├── en-us └── MemoryTools-help.xml ├── formats ├── MyMemoryUsage.format.ps1xml ├── myProcessMemory.format.ps1xml ├── physicalMemoryUnit.format.ps1xml └── topProcessMemoryUnit.format.ps1xml ├── functions ├── Get-MemoryPerformance.ps1 ├── Get-MemoryUsage.ps1 ├── Get-PhysicalMemory.ps1 ├── Get-ProcessMemory.ps1 ├── Get-TopProcessMemory.ps1 ├── Show-MemoryUsage.ps1 └── Test-MemoryUsage.ps1 ├── license.txt └── pre-release-changelog.md /MemoryTools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/MemoryTools.psd1 -------------------------------------------------------------------------------- /MemoryTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/MemoryTools.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/README.md -------------------------------------------------------------------------------- /Tests/MemoryTools.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/Tests/MemoryTools.tests.ps1 -------------------------------------------------------------------------------- /Tests/test-runner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/Tests/test-runner.ps1 -------------------------------------------------------------------------------- /assets/show-memoryusage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/assets/show-memoryusage.png -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/Get-MemoryPerformance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/docs/Get-MemoryPerformance.md -------------------------------------------------------------------------------- /docs/Get-MemoryUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/docs/Get-MemoryUsage.md -------------------------------------------------------------------------------- /docs/Get-PhysicalMemory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/docs/Get-PhysicalMemory.md -------------------------------------------------------------------------------- /docs/Get-ProcessMemory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/docs/Get-ProcessMemory.md -------------------------------------------------------------------------------- /docs/Get-TopProcessMemory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/docs/Get-TopProcessMemory.md -------------------------------------------------------------------------------- /docs/Show-MemoryUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/docs/Show-MemoryUsage.md -------------------------------------------------------------------------------- /docs/Test-MemoryUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/docs/Test-MemoryUsage.md -------------------------------------------------------------------------------- /en-us/MemoryTools-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/en-us/MemoryTools-help.xml -------------------------------------------------------------------------------- /formats/MyMemoryUsage.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/formats/MyMemoryUsage.format.ps1xml -------------------------------------------------------------------------------- /formats/myProcessMemory.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/formats/myProcessMemory.format.ps1xml -------------------------------------------------------------------------------- /formats/physicalMemoryUnit.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/formats/physicalMemoryUnit.format.ps1xml -------------------------------------------------------------------------------- /formats/topProcessMemoryUnit.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/formats/topProcessMemoryUnit.format.ps1xml -------------------------------------------------------------------------------- /functions/Get-MemoryPerformance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/functions/Get-MemoryPerformance.ps1 -------------------------------------------------------------------------------- /functions/Get-MemoryUsage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/functions/Get-MemoryUsage.ps1 -------------------------------------------------------------------------------- /functions/Get-PhysicalMemory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/functions/Get-PhysicalMemory.ps1 -------------------------------------------------------------------------------- /functions/Get-ProcessMemory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/functions/Get-ProcessMemory.ps1 -------------------------------------------------------------------------------- /functions/Get-TopProcessMemory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/functions/Get-TopProcessMemory.ps1 -------------------------------------------------------------------------------- /functions/Show-MemoryUsage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/functions/Show-MemoryUsage.ps1 -------------------------------------------------------------------------------- /functions/Test-MemoryUsage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/functions/Test-MemoryUsage.ps1 -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/license.txt -------------------------------------------------------------------------------- /pre-release-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MemoryTools/HEAD/pre-release-changelog.md --------------------------------------------------------------------------------