xsy420

Results 19 comments of xsy420

try add this lot in install.bat ```bat powershell -ExecutionPolicy ByPass -Command "Set-NetFirewallRule -DisplayGroup “网络发现” -Enabled True -Profile Any" powershell -ExecutionPolicy ByPass -Command "Enable-NetFirewallRule -DisplayGroup “文件和打印机共享”" powershell -ExecutionPolicy ByPass -Command "Enable-NetFirewallRule...

make sure your install.bat is in GBK encoding and endswith \r\n ```shell iconv -f UTF-8 -t GBK src/install.bat target/install.bat unix2dos target/install.bat ```

If you or others want to try custom.iso in another language for installing and remote desktop auto enabled, translations of **"Remote Desktop"** will be needed. So as translations of **"Network...

Good advice. When I wrote this script, I haven't realized that translation is the problem. Now this script can do it. ```py from lxml import etree import sys CustomUsername =...

With this script improved and i18n of the three (maybe more needed to be translated later) collected, multi language can be supported automatically. Just with environment like: ```yaml environment: UserLocale:...

Agreed that. It'll be easy to keep it in english at default for this project. For those who use other language, and maybe tired changing the language and wondering why...

And in my case ```powershell Enable-NetFirewallRule -DisplayGroup @(Get-NetFirewallRule | Where-Object Name -Match "NetDIS.*" | Select-Object DisplayGroup -Unique | % DisplayGroup) Enable-NetFirewallRule -DisplayGroup @(Get-NetFirewallRule | Where-Object Name -Match "FPS-*" | Select-Object...

Yeah. It works fine. I've tested win10 and win11 version, both english and chinese iso.(using VERSION: "win10" and VERSION: "win11" in compose.yml to get english iso. using pre-downloaded chinese simplified...

you can see the discussion [here](https://github.com/virtio-win/kvm-guest-drivers-windows/issues/1100) and [here](https://github.com/virtio-win/kvm-guest-drivers-windows/issues/1102) I made a summary, you can follow it and get 24h2 installed. (for me as least, it works.) If you want further...