https://github.com/gngrninja/PSFolderSize
This module will allow you to get folder sizes and export information easily via PowerShell
https://github.com/gngrninja/PSFolderSize
hacktoberfest powershell psgallery
Last synced: 5 days ago
JSON representation
This module will allow you to get folder sizes and export information easily via PowerShell
- Host: GitHub
- URL: https://github.com/gngrninja/PSFolderSize
- Owner: gngrninja
- License: mit
- Created: 2018-03-26T02:07:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-08-15T13:20:16.000Z (over 2 years ago)
- Last Synced: 2024-11-06T19:54:39.986Z (5 months ago)
- Topics: hacktoberfest, powershell, psgallery
- Language: PowerShell
- Homepage:
- Size: 83 KB
- Stars: 124
- Watchers: 7
- Forks: 27
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - gngrninja/PSFolderSize - This module will allow you to get folder sizes and export information easily via PowerShell (PowerShell)
README
[](https://ci.appveyor.com/project/gngrninja/psfoldersize/branch/master) [](https://dev.azure.com/ginja/PSFolderSize/_build/latest?definitionId=3)
[![Documentation Status][docs-badge]][docs]
[![License: MIT][license-badge]][license]
[![PowerShell Gallery][psgallery-badge]][psgallery][](https://www.gngrninja.com/script-ninja/2016/5/24/powershell-calculating-folder-sizes)
# PowerShell -> Get Folder Sizes
This module enables you to gather folder size information, and output the results in various ways.Article for this repository is here:
https://www.gngrninja.com/script-ninja/2016/5/24/powershell-calculating-folder-sizes## Getting Started
Install via the [PowerShell Gallery](https://www.powershellgallery.com/packages/PSFolderSize/):
```powershell
Install-Module PSFolderSize
```If you manually cloned/downloaded the code:
```powershell
Import-Module .\path\to\PSFolderSize.psd1
```-or-
```powershell
Import-Module .\path\to\FolderModuleFilesAreIn
```Once it is imported, use...
```powershell
Get-Help Get-FolderSize -Detailed
```
...to get all the help goodness.Check out the Examples folder for example(s) on how to use the module.
There's only one for now, with more to come!
*Leave an issue here if you have some feedback, issues, or questions.*
[license]: https://opensource.org/licenses/MIT
[license-badge]: https://img.shields.io/badge/License-MIT-yellow.svg
[psgallery-badge]: https://img.shields.io/powershellgallery/dt/psfoldersize.svg
[psgallery]: https://www.powershellgallery.com/packages/psfoldersize
[docs-badge]: https://readthedocs.org/projects/psfoldersize/badge/?version=latest
[docs]: https://psfoldersize.readthedocs.io/en/latest/