https://github.com/PowershellFrameworkCollective/Psmd.Bootstrap
  
  
     
    https://github.com/PowershellFrameworkCollective/Psmd.Bootstrap
  
        Last synced: 3 months ago 
        JSON representation
    
- Host: GitHub
 - URL: https://github.com/PowershellFrameworkCollective/Psmd.Bootstrap
 - Owner: PowershellFrameworkCollective
 - License: mit
 - Created: 2023-09-20T13:39:23.000Z (about 2 years ago)
 - Default Branch: master
 - Last Pushed: 2023-09-23T20:02:23.000Z (about 2 years ago)
 - Last Synced: 2024-08-13T07:05:15.742Z (about 1 year ago)
 - Language: PowerShell
 - Size: 25.4 KB
 - Stars: 11
 - Watchers: 1
 - Forks: 1
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: readme.md
 - Changelog: Changelog.md
 - Funding: .github/FUNDING.yml
 - License: LICENSE
 
 
Awesome Lists containing this project
- jimsghstars - PowershellFrameworkCollective/Psmd.Bootstrap - (PowerShell)
 
README
          # Psmd.Bootstrap
A simple toolset to package scripts and their dependencies into a single, self-contained file.
## Install
```powershell
Install-Module Psmd.Bootstrap -Scope CurrentUser
```
## Use
```powershell
New-PsmdBootstrapScript -Path . -OutPath C:\temp
```
Takes all items in the current folder, wraps them into a bootstrap script and writes that single file to C:\temp\bootstrap.ps1.
The folder must contain a `run.ps1` file that executes everything else.