Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

.exe file protection

Status
Not open for further replies.

Delphard

Programmer
Jul 22, 2004
144
0
0
RS
How to protect .exe file against decompiling?
Is there an (free?!) software or component for this purpose?
 
decompiling will only give them the forms not the code.

but if you must there are shrinker programs around that compress the exe making it harder or impossible to decompile.

Aaron
 
UPX

I'm waiting for the white paper entitled "Finding Employment in the Era of Occupational Irrelevancy
 
You're best defense is command-line build with all debug info off {$D-}

Roo
Delphi Rules!
 
I do both:

- build with batch file, no debug info
- then shrink with upx (from the same batch file)

I made a small app that creates the batch file automatically for me.


/Daddy

-----------------------------------------------------
What You See Is What You Get
Never underestimate tha powah of tha google!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top