Releases: Moefire/Script-Whitelist-Guard
Releases · Moefire/Script-Whitelist-Guard
v1.0.0 - Initial Release
ScriptWhitelistGuard v1.0.0
🎉 Initial public release of ScriptWhitelistGuard - Interactive PowerShell script execution guard with SHA256 whitelist verification.
📦 Installation
# From PowerShell Gallery
Install-Module -Name ScriptWhitelistGuard -Scope CurrentUser
# Enable for current session
Import-Module ScriptWhitelistGuard
Enable-WhitelistGuard
# Enable permanently (auto-start on all new sessions)
Enable-WhitelistGuard -Persist🔧 Quick Start Example
# Whitelist npm script (after Node.js installation)
Add-ScriptWhitelist -Path "C:\Program Files\nodejs\npm.ps1"
# Now npm commands work seamlessly
npm -v