I want to make an easter egg for my WPF app. I want to make a snake game that launch when you do the konami code.
I want to make an app that launch an exe hide inside an image. My Image is created like this
copy /b "egg.jpg"+"easter.exe" "EggWithExe.jpg" The EggWithExe.jpg (would be rename and store inside my main app Image Ressource folder)
For Isolate potential bug from my main app i want to launch the game with StartProcess To be in a total new executable environement and not interact with my main app after typing konami code
How do i launch the process from the image file?