Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nyanhp/psdiscutils
PowerShell module that aims to implement the DiscUtils library
https://github.com/nyanhp/psdiscutils
Last synced: 16 days ago
JSON representation
PowerShell module that aims to implement the DiscUtils library
- Host: GitHub
- URL: https://github.com/nyanhp/psdiscutils
- Owner: nyanhp
- License: mit
- Created: 2023-08-23T06:38:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-25T16:36:08.000Z (over 1 year ago)
- Last Synced: 2024-11-19T12:55:07.494Z (2 months ago)
- Language: PowerShell
- Size: 33.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# PsDiscUtils
PowerShell module that aims to implement the DiscUtils library.
## Installation and usage
To install the module, please use the PowerShell Gallery. At some point I'll also package a release,
but I hardly see the point.```powershell
# Install
Install-Module -Repository PSGallery -Scope CurrentUser -Name PsDiscUtils # -AllowPrerelease to get the GOOD STUFF# Explore
Get-Command -Module PsDiscUtils
```## Build it yourself
Using the .NET Core SDK you can build that project your self. Why? Because I've gone
the easy route and implemented a bunch of C# cmdlets instead of writing PowerShell functions.```powershell
./build/vsts-prerequisites.ps1
./build/vsts-build.ps1 -SkipPublish
```## Requirements
- PowerShell 5 and newer
- An overwhelming urge to automate the crap out of things## NuGet packages used
Licenses apply and so on.
- [PowerShellStandard.Library](https://github.com/PowerShell/PowerShellStandard)
- [DiscUtils](https://github.com/DiscUtils/DiscUtils)