Hello,
I have a couple of PS scripts (~25 scripts). These scripts include functions that make different jobs. These scripts can call functions of others' scripts. There is a Main.ps1 script that starts the others.
I want to create a exe. Do you have any suggestions except those:
PS2Exe: http://blog.karstein-consulting.com/2013/03/08/update-of-ps2exe-version-0-3-0-0-now-supports-powershell-3-0-and-2-0/ --> It only converts a PS script. I didn't found how to convert a PS project
PowerGUI: http://dmitrysotnikov.wordpress.com/2011/08/22/compile-powershell-scripts-to-exe/ --> Firstly it works but after some operations, it makes an infinite loop and gives an error like "X.ps1 can not be found", I didn't understand why (I include dependent scripts for Main.ps1 script.).
Make-PS1ExeWrapper: http://rkeithhill.wordpress.com/2010/09/21/make-ps1exewrapper/ --> It depends on Write-GZip. I downloaded some DLLs (http://sharpcompress.codeplex.com) but I didn't achieved to start it.