There is a long lost "art" called "file batching" .
Back in the day developers use this method to hide all their resource files behind their .exe .
How to batch files in Windows DOS: [LINK 1] [LINK 2]
First thing is to create a file directly on you C drive, and name it something that is easy to remember. "AAA" will work.
Second thing is to make a copy of your picture, and place it in that folder. I will assume the picture is named "Picture.jpg".
Third thing you will need is a file to batch with it. Make a copy of it, and place it in your folder ( AAA ). I will assume the file is named "File.xyz"
Forth thing is to find, and open DOS prompt. Change the directory to your folder ( AAA ) . To do this type in "cd C:\AAA". Next type in " copy /b Picture.jpg+File.xyz NewPicture.jpg ".
The picture file must come first, and the other files after.
Don't bother Googling "file batching" - this is a very old technique, and you will end up with nothing but trash results.