Macvlan on docker windows for windows container?

I have a Windows server running and want to create docker containers that are running this windows docker container.

There is a small FAQ that explains on how to setup a vlan and also how to connect the windows container to your local network.

First step is to create a vlan with macvlan but it seems like this isn’t possible when using windows as host.

docker network create -d macvlan 
    --subnet=192.168.0.0/24 
    --gateway=192.168.0.1 
    --ip-range=192.168.0.100/28 
    -o parent=eth0 vlan

At first, I get the error message Error response from daemon: could not find plugin macvlan in v1 plugin registry: plugin not found and the solution I found would be to add --driver nat but this also results in a error message Error response from daemon: this request is not supported by the 'windows' ipam driver.

Is there something I can do about to connect those containers to my local network without bridging the connection so every container has its own ip?