Created
February 4, 2025 17:01
-
-
Save jcefoli/7e6675c6dc115e44d3ee9becd3528aa1 to your computer and use it in GitHub Desktop.
PS2Exe - Create exe from powershell script (hide console)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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