New Post: PowerShell 4.0 Support
Hi all! I uploaded a modified version for PS 4.0. Regards Ingo
View ArticleNew Post: Create Exe with script that takes params
I have a script that takes a few parameters that I would like to create an exe with. Using ps2exe, is this possible? I already made the exe and tested it and I am not getting the deisred results, I...
View ArticleNew Post: the config file
Sorry if this is somewhere else and I missed it, but what is the purpose of the .config file that is produced alongside the .exe? Is it needed? Can it just be discarded? The little bit of testing I did...
View ArticleNew Post: Get-Credential wasn't working after ps2exe
I was using Get-Credential in my ps1 code and the created .exe was not working as expected. I was being prompted in the console for a username, but it would fail saying the password was null and not...
View ArticleUpdated Wiki: Home
PS2EXE moved to Microsoft Technet Galery: https://gallery.technet.microsoft.com/PS2EXE-Convert-PowerShell-9e4e07f1 In the last days I created the tool “PS2EXE”. It is able to “convert”...
View ArticleUpdated Wiki: Home
PS2EXE moved to Microsoft Technet Galery:https://gallery.technet.microsoft.com/PS2EXE-Convert-PowerShell-9e4e07f1 In the last days I created the tool “PS2EXE”. It is able to “convert”...
View ArticleNew Post: PS2EXE moved to Microsoft Technet Galery
Hi all! I moved PS2EXE to MS Technet Galery:https://gallery.technet.microsoft.com/PS2EXE-Convert-PowerShell-9e4e07f1 Regards Ingo
View ArticleNew Post: Get-Credential wasn't working after ps2exe
Do you want to send me the complete ps2exe-script with your modifications? Don't forget to add a comment in the top with your name.
View ArticleNew Post: Get-Credential wasn't working after ps2exe
I can do that. What is your preferred method of delivery?
View ArticleNew Post: Program icons
Hello, It's not necessary to modify the compiler as Olivier stated, although it probably does get the job done. The simplest way is to put your .ico file in the same directory as the exe you're...
View ArticleCommented Unassigned: Virus Detected when compiling to Exe ? [1773]
Strangely enough, when i compile a PS script to an exec, our Symantec Virusscanner thinks there is a virus in it ?When i compile the same script with Primalscript, i don't get a warning..Comments: **...
View ArticleNew Post: Convert back from executable to Powershell script
Someone has successfully extract information using the ILSpy ??
View ArticleNew Post: Convert back from executable to Powershell script
The executable is not safe. I succeeded to extract the files using 7-zip and open the extracted .text file. Within this file contained the base64 code that was easily reversed.
View ArticleNew Post: Convert back from executable to Powershell script
ikarstein wrote: Hi! You can open the EXE file in ILSpy and look for the Base64-Encoded string. This string you can decode using an online tool or PowerShell. Does it work? Regards Ingo Yes, It Works.
View ArticleNew Post: How to included parameters such as -noexit for the execution of the...
hi, my script registers to a WMI event and because of that I need to run the script with the option -noexit powershell -noexit myscript.ps1 how can I include that powershell parameter in the ps2exe...
View ArticleNew Post: Get-Credential wasn't working after ps2exe
I have the same problem. I solved this issue. Code not Work: $cred = Get-credential Code Works: $Cred = $host.ui.PromptForCredential("Need credentials", "Please enter your user name and password.", "",...
View ArticleNew Post: Run on Powershell v5
Thank you for creating the tool. :) I have installed Powershell v5. Running PS2EXE shows me a message that it does not recognize the...
View ArticleNew Post: Unhandled Exception
Had same issue.. just figured it out. Check powershell version (run 'Host' on ps). Error only occurs on Version 2.0. Fix: Compile with -runtime20 hope this helps!
View Article