Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jimbrig/PSScripts
PowerShell Scripts Published to the Gallery.
https://github.com/jimbrig/PSScripts
helpers-library personal powershell powershell-library powershell-script published scripts-collection system utility-library windows
Last synced: 3 months ago
JSON representation
PowerShell Scripts Published to the Gallery.
- Host: GitHub
- URL: https://github.com/jimbrig/PSScripts
- Owner: jimbrig
- License: unlicense
- Created: 2023-01-24T17:09:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-30T15:03:03.000Z (about 1 year ago)
- Last Synced: 2024-05-22T22:34:53.269Z (6 months ago)
- Topics: helpers-library, personal, powershell, powershell-library, powershell-script, published, scripts-collection, system, utility-library, windows
- Language: PowerShell
- Homepage: https://www.powershellgallery.com/profiles/jimbrig
- Size: 340 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - jimbrig/PSScripts - PowerShell Scripts Published to the Gallery. (PowerShell)
README
Custom PowerShell Scripts
> **Note**
> Collection of PowerShell Scripts published to my [Powershell Gallery Profile](https://www.powershellgallery.com/profiles/jimbrig).## Contents
- [Overview](#overview)
- [Installation](#installation)
- [Bulk Installation](#bulk-installation)
- [Individual Script Installation](#individual-script-installation)
- [Clone Locally](#clone-locally)
- [Roadmap](#roadmap)
- [Scripts](#scripts)
- [Appendices](#appendices)
- [License](#license)
- [Versioning](#versioning)
- [Acknowledgments](#acknowledgments)
- [Contact](#contact)## Overview
> **Note**
> *View the Repository's [CHANGELOG](CHANGELOG.md) for the latest updates and changes made over time*This repository contains a collection of PowerShell scripts that I have written for various purposes and published
to my [Powershell Gallery Profile](https://powershellgallery.com/profiles/jimbrig).## Installation
### Bulk Installation
To install all scripts at once use the [Install-PSCustomScripts.ps1](Install-PSCustomScripts/Install-PSCustomScripts.ps1) script:
```powershell
Install-Script -Name Install-PSCustomScripts.ps1Install-PSCustomScripts
```### Individual Script Installation
To install any individual script listed in this repository, you can use the `Install-Script` cmdlet from the
[PowerShellGet](https://docs.microsoft.com/en-us/powershell/gallery/overview) module.```powershell
Install-Script -Name
```### Clone Locally
Lastly, one can simply clone or download the scripts for use locally:
```bash
# SSH
git clone [email protected]:jimbrig/PSScripts.git# HTTPS
https://github.com/jimbrig/PSScripts.git# Github-CLI
gh repo clone jimbrig/PSScripts
```## Roadmap
- [Get-FileHash]() - Calculates the hash of a file using the specified algorithm.
## Scripts
### [ConvertTo-Markdown](./ConvertTo-Markdown/)
This script converts a string to Markdown.
```powershell
```
### [Read-HostSecret](Read-HostSecret)
This script reads an encrypted secret from the user.
```powershell
```
### [Set-FolderIcon](Set-FolderIcon)
Sets the icon for a folder:
```powershell
```
### [Update-PSModules](Update-PSModules)
Update all modules at once:
```powershell
```
## Appendices
### License
This project is licensed under the [Unlicense](https://unlicense.org/). See the [LICENSE](LICENSE) file for details.
### Versioning
I use [Semantic Versioning](http://semver.org/) for versioning all the scripts.
### Acknowledgments
> Hat tip to anyone whose code was used:
- https://github.com/riedyw/PoshFunctions
- https://github.com/riedyw/MyPoshFunctions/tree/master### Contact
- [[email protected]](mailto:[email protected])