Github user dwickern commented on the issue:
https://github.com/apache/activemq-artemis/pull/2190
```bat
set ARTEMIS_INSTANCE_ETC="${artemis.instance.etc}"
set JVM_ARGS=%JVM_ARGS% -Dartemis.instance.etc="%ARTEMIS_INSTANCE_ETC%"
```
Won't this _always_ result in the path being quoted twice?
```
C:\Users\dwickern>set ARTEMIS_INSTANCE_ETC="path with spaces"
C:\Users\dwickern>set JVM_ARGS=%JVM_ARGS%
-Dartemis.instance.etc="%ARTEMIS_INSTA
NCE_ETC%"
C:\Users\dwickern>echo %JVM_ARGS%
%JVM_ARGS% -Dartemis.instance.etc=""path with spaces""
```
---