Welcome to Headwind MDM Q&A, where you can ask questions and receive answers from other members of the community.

Please do not post bug reports, missing feature requests, or demo inquiries. If you have such an inquiry, submit a contact form.

0 votes

I would like to know if H-MDM server is compatible with Windows Server 2019 OS. It seems we're having directory path problem because H-MDM is using Linux directory format. Is there any additional setting for Windows?

by

1 Answer

0 votes

Here are sample parameters in ROOT.xml file for Windows:

    <Parameter name="files.directory" value="C:/temp/hmdm/files"/>

    <Parameter name="plugins.files.directory" value="C:/temp/hmdm/plugins"/>

    <Parameter name="initialization.completion.signal.file" value="C:/temp/hmdm/initialized.txt"/>

    <Parameter name="aapt.command" value="C:/bin/aapt.exe"/>

    <Parameter name="log4j.config" value="file:///C:/temp/hmdm/log4j-hmdm.xml"/>


Notice that if you add aapt directory in the %PATH% variable, you can use the default attribute value: <Parameter name="aapt.command" value="aapt"/>

by (33.5k points)
...