There's nothing "wrong" with what you're seeing. How this Windows Server machine connects to these two networks doesn't say anything about the hosts on each network communicate with other networks.
Consider:
192.168.0.1/16 192.168.3.1/24
v _________ v
v | | v
.--| Win Srv |--.
__________ | |_________| | _________
| | | | | |
| host |---| |---| host |
|_________| | | |_________|
| |
__________ | | _________
| | | | | |
| host |---| |---| host |
|_________| | _________ | |_________|
| | | |
|--| router |--|
^ |_________| ^
^ | ^
192.168.0.254/16 | 192.168.3.254/24
///
The hosts connected to each network are going to have their respective interface on this router specified as their default gateway. The Windows Server machine is going to have one or the other router interface's IP address specified as its default gateway.
You wouldn't want to assign IP addresses from the 192.168.3.0/24 network to hosts in the 192.168.0.0/16 network. Hosts on the 192.168.0.0/16 network are going to need a static route specified in their routing tables for the 192.168.3.0/24 network to allow them to communicate with hosts on the 192.168.3.0/24 network. This is inconvenient but by no means a "deal breaker".
Edit:
In the example above the Windows Server machine will deliver data to the right destination with no static routes needed. The server has entries in its routing table as a result of having interfaces local to each subnet. Of any of the boxes in the example scenario it will have the easiest time.
Your example (below) is a different animal than my example and different than your question:
You're talking about a server that has what would appear to be a static route to the 192.168.0.0/16 network via 192.168.9.2 and three static routes to a 192.168.6.0/24, 192.168.4.0/24, and 192.169.8.0/24 network accessible via a gateway at 192.169.1.254.
Without understanding more about the topology (IP addresses assigned to interfaces on the server, layout of the various networks behind the various routers in play) it's difficult to say much of anything. Certainly, there's nothing inherently "wrong" with anything I'm seeing in your image, except for the obvious and glaring fact that networks falling into 192.169.0.0/16 aren't RFC-1918 address space and shouldn't be used inside private networks.