Would it be nice if we can edit/modify the helpdesk.txt inside a PHW-server.exe directly?
Many of us know that we can inspect/extract the content inside the .EXE with 7-ZIP, but you will get an error message when you try to change the helpdesk.txt. This is because all the archives are packed together thus impossible to modify any of them.
So if the helpdesk.txt is not mixed with other files (but it is still packed inside the .EXE), you can modify its content when opening it with 7-ZIP.
To make this, you just need to make a simple modification of the \\PcHelpWare\create_server\Create.bat
Inside it, locate the following statement and modify it:
From:
To:7z a -mx=9 -t7z PcHelpWare.7z PcHelpWare.exe SCHook.dll background.bmp helpdesk.txt 1SCDLL.dll 1CHATDLL.dll icon1.ico
That is it.7z a -mx=9 -t7z PcHelpWare.7z PcHelpWare.exe SCHook.dll background.bmp txt 1SCDLL.dll 1CHATDLL.dll icon1.ico
7z a -ms=off -mx=0 -t7z PcHelpWare.7z helpdesk.txt
The .EXE created with this batch script will have the helpdesk.txt packed separately, which means you can edit it freely with 7-ZIP.
Remind: when you modify the helpdesk.txt, it will write into the .EXE directly, so make sure to have the backup if you still want to keep the original.