Hello Alex,
Is there a possibility to back-up the settings and profiles from hostmonitor?
I test and build my configuration on my laptop and want to move this config to the production environment, but I have to change settings like locations, mail profiles etc... That I created in my development environment also back on the server is this correct...
If not how to do this?
If this not already is implemented, I would like to ask you to put this on the to-do list if possible.
Thanks in advance
Back-up tool for settings
No, but you may create your own back-up utility within 3 min.Is there a possibility to back-up the settings and profiles from hostmonitor?
You just need to store *.LST, *.HML and *.INI files. E.g. you may use simple bat file
Code: Select all
set hmsource=c:\program files\HostMonitor\
set hmdest=c:\backup\hostmonitor\
xcopy "%hmsource%*.ini" %hmdest% /s /y
xcopy "%hmsource%*.hml" %hmdest% /s /y
xcopy "%hmsource%*.lst" %hmdest% /s /y
xcopy "%hmsource%*.hms" %hmdest% /s /y
Regards
Alex