I too just found out Mezzmo doesn't like Hamachi and there isn't a way to tell Mezzmo to ignore the Hamachi interface. I want to use Hamachi so my workaround is to disable hamachi before starting the mezzmo service and then enable it afterwards.
I have a script to handle all that and scheduled that to run at computer start. Here's the script (start_mezzmo.cmd):
Code:
netsh interface set interface "hamachi" DISABLED
set stop mezzmo
call:sleep 5
net start mezzmo
call:sleep 20
netsh interface set interface "hamachi" ENABLE
goto:EOF
:sleep
set/a sleeptime=%1+1
ping -n %sleeptime% 127.0.0.1 >nul
goto:EOF
I've added the extra 'set stop mezzmo' so this same script can be used to restart the mezzmo service.
Now if Library Maintenance needs to stop and start the mezzmo service, then my workaround breaks.
Bookmarks