Adfaft

Process

> netstat -aon | findstr ":80.*LISTENING"
  TCP    127.0.0.1:80           0.0.0.0:0              LISTENING       5760
  TCP    127.0.0.1:8025         0.0.0.0:0              LISTENING       5760
  TCP    127.0.0.1:8036         0.0.0.0:0              LISTENING       5760

> tasklist | findstr "5760"
com.docker.backend.exe        5760 Services                   0      9,536 K

CHDMAN

How to re-convert from CHD file to ISO

Put chdman.exe and all the .chd files into one folder. Create a new blank text document in the same folder and paste the following inside:

for %%i in (*.chd) do (  
	chdman extractcd -i "%%i" -o "%%~ni.cue" -ob "%%~ni.iso"  
	del "%%~ni.cue"  
)

Save the text document and rename the file extension from .txt to .bat. Double-click on it.