Project

PSPublishModule

PSPublishModule is an open-source PowerShell and .NET project with packages, release history, and technical documentation.

Stars47
Forks16
Open issues0
PowerShell Gallery downloads17213
Releasev3.0.131
Language: C# Updated: 2026-09-02T21:02:59.0000000+00:00

Curated Examples

Example.Signmultiplefiles

Source-owned example maintained with PSPublishModule.

Import-Module .\PSPublishModule.psd1 -Force

$Folder = "C:\Users\przemyslaw.klys\Downloads\MDE\MDE\2016"

$registerCertificateSplat = @{
    LocalStore      = 'CurrentUser'
    Path            = $Folder
    Include         = @('*.ps1', '*.psd1', '*.psm1', '*.dll', '*.cat')
    TimeStampServer = 'http://timestamp.digicert.com'
    Thumbprint      = 'YOUR_CERTIFICATE_THUMBPRINT'
}

Register-Certificate @registerCertificateSplat -Verbose