ExeOutput for PHP License Activated but Still Showing Trial Version Message in .exe File"

herasvn

New member
I have purchased the ExeOutput for PHP license and successfully activated it. However, I still can’t modify the ‘Legal Trademarks’ section in the Icon/version info. Additionally, when I build using the command line as follows: ‘C:\Program Files (x86)\GDG Software\ExeOutput for PHP 2024\EXO4PHP.EXE’ C:\xampp\htdocs\builded\ailu.exop /c/q/s, my .exe file still shows ‘This application was built with ExeOutput for PHP TRIAL available at http://www.exeoutput.com. REDISTRIBUTION IS PROHIBITED: PURCHASE A LICENSE.’ Can someone please help me?"
 
herasvn said:
arks’ section in the Icon/version info. Additionally, when I build using the command line as follows: ‘C:\Program Files (x86)\GDG Software\ExeOutput for PHP 2024\EXO4PHP.EXE’ C:\xampp\htdocs\builded\ailu.exop /c/q/s, my .exe file still shows ‘This application was built with ExeOutput for PHP TRI
Answered to your email request.
 
You can create a batch file that starts the console application without opening a new window. Here’s how you can do it:
Code:
@echo off
start /min "" "path\to\your\app.exe"
exit
  • /min starts the program minimized, which effectively hides it if you have no GUI.
  • The empty quotes "" after /min are required to prevent start from treating the path as the title of the window.
 
Back
Top