diff --git a/assets/win11arm64.xml b/assets/win11arm64.xml
index 686020e..f89e69e 100644
--- a/assets/win11arm64.xml
+++ b/assets/win11arm64.xml
@@ -177,7 +177,7 @@
24/7
Dockur
- https://github.com/dockur/windows/issues
+ https://github.com/dockur/windows-arm/issues
Windows for Docker
@@ -314,15 +314,6 @@
0
-
-
-
- true
- Remote Desktop
- all
-
-
-
@@ -470,26 +461,31 @@
20
- netsh advfirewall firewall set rule group="Network Discovery" new enable=Yes
+ powershell -ExecutionPolicy ByPass -Command "Enable-NetFirewallRule -DisplayGroup @(Get-NetFirewallRule | Where-Object Name -Match "NetDIS.*" | Select-Object DisplayGroup -Unique | % DisplayGroup)"
Enable Network Discovery
21
- netsh advfirewall firewall set rule group="File and Printer Sharing" new enable=Yes
+ powershell -ExecutionPolicy ByPass -Command "Enable-NetFirewallRule -DisplayGroup @(Get-NetFirewallRule | Where-Object Name -Match "FPS-.*" | Select-Object DisplayGroup -Unique | % DisplayGroup)"
Enable File Sharing
22
+ powershell -ExecutionPolicy ByPass -Command "Enable-NetFirewallRule -DisplayGroup @(Get-NetFirewallRule | Where-Object Name -Match "RemoteDesktop-[^I].*" | Select-Object DisplayGroup -Unique | % DisplayGroup)"
+ Add RDP in firewall
+
+
+ 23
reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV1 /d 0 /t REG_DWORD /f
Disable unsupported hardware notifications
- 23
+ 24
reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV2 /d 0 /t REG_DWORD /f
Disable unsupported hardware notifications
- 24
+ 25
cmd /C if exist "C:\OEM\install.bat" start "Install" "cmd /C C:\OEM\install.bat"
Execute custom script from the OEM folder if exists