Skip to content

Instantly share code, notes, and snippets.

@jcefoli
Created February 4, 2025 17:01
Show Gist options
  • Save jcefoli/7e6675c6dc115e44d3ee9becd3528aa1 to your computer and use it in GitHub Desktop.
Save jcefoli/7e6675c6dc115e44d3ee9becd3528aa1 to your computer and use it in GitHub Desktop.
PS2Exe - Create exe from powershell script (hide console)
#Requires -RunAsAdministrator
#Requires -PSEdition Desktop
Import-Module ps2exe
ps2exe .\your-powershell.ps1 your-exe.exe -noconsole -company 'JoeCorp' -product 'AppProductName' -description 'App Description'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment