In our unattend.xml we currently enable the "remote desktop allowed" firewall rule by executing as FirstLogonCommand:
netsh advfirewall firewall set rule group="Remote Desktop" new enable=yes
Works great with the English version of Windows, but apparently the name of the rule group is different in localized versions of Windows server.
Is there a more universal way that works with all languages?
Or would it be possible to get a list with the translation of "Remote Desktop" for each language?
(I'm aware that instead of with FirstLogonCommands, you can also enable firewall groups with Networking-MPSSVC-Svc\FirewallGroups\FirewallGroup, but it seems to suffer from the same problem)