plaster PowerShellCore powershell template
- 2023-11-09#Journal 2023-11-09#Windows Desktop Background originated the Copy-Wallpaper script.
- ../PowerShell#PowerShell and pwsh#Template
- jfishe PlasterModuleTemplate
- mojoaar/plastermoduletemplate: A Plaster template for automating the scaffolding of a new PowerShell module, does not include Pester tests.
- ThePoShWolf/MyPlasterTemplates: A collection of my Plaster templates, does not install dependencies.
- 
PPOSHGROUP/PlasterModuleTemplate:
  Template for module creation with Plaster, has features:
Adds a public folder to module root Adds a private folder to module root Adds a binaries folder to module root Add Git Support Select a license for your module Include Pester Tests? Include PPoShBuild Support? Include PPoShTools requirement file? Add VSCode support? Add Docs folder? - Defaults to installing dependencies for AllUsers, AcceptLicense, AllowClobber, AllowPrerelease, Dependency, Import, PSDependAction, Repository, and SkipPublisherCheck.
 
- 
Microsoft provides instructions for
  Register-PSRepository
# Register a file share on my local machine $SourceLocation = [System.Uri] "$(Resolve-Path '~\Github\PSRepoLocal\')" $registerPSRepositorySplat = @{ Name = 'LocalPSRepo' SourceLocation = $SourceLocation ScriptSourceLocation = $SourceLocation InstallationPolicy = 'Trusted' } Register-PSRepository @registerPSRepositorySplat