If you want to try the Raspberry Pi ARM operating system in Windows 10 then you need to install the Qemu free and open-source emulator.
I used this version qemu-w32-setup-20220419 from the official webpage.
After installation, you need to download in the same folder with the qemu installation this software kernel-qemu-4.4.34-jessie and the Rasberry Pi image file.
Create a file named rasberry.bat and add this source code:
1 2 3 4 5 6 7 8 9 10 11 | "c:\qemu32\qemu-system-arm.exe" ^ -kernel kernel-qemu-4.4.34-jessie ^ -cpu arm1176 ^ -m 256 ^ -M versatilepb ^ -serial stdio ^ -append "root=/dev/sda2 rootfstype=ext4 rw" ^ -hda 2020-02-13-raspbian-buster.img ^ -net nic ^ -net user,hostfwd=tcp::5022-:22 ^ -no-reboot |
You can see my installation folder for qemu 32 bits is this: c:\qemu32\.
I run it and this is the result: