Create Your Own Windows Image for DigitalOcean
apt-get update && apt-get install qemu -y
apt install qemu-utils -y && apt install qemu-system-x86 -y
qemu-img create -f raw window.img 16G
wget https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso
wget -O windows.iso 'https://linkwindowsiso'
qemu-system-x86_64 \
-m 3G \
-cpu host \
-enable-kvm \
-boot order=d \
-drive file=windows.iso,media=cdrom \
-drive file=windows.img,format=raw,if=virtio \
-drive file=virtio-win.iso,media=cdrom \
-vnc :0 \
Connect your server using RealVNC & Complete your windows Instalation, don't forget to Enable Remote Desktop
apt install sshfs
mkdir /mnt/temp
sudo sshfs [email protected]:/home/frs/project/user /mnt/temp
dd if=windows.img | gzip -1 | dd of=/mnt/temp/wedus.gz
wget --no-check-certificate -O- https://master.dl.sourceforge.net/project/user/wedus.gz?viasf=1 | gunzip | dd of=/dev/vda bs=3M status=progress
netsh -c interface ip set address name="Ethernet Instance 0" source=static address=YourIP mask=YourMask gateway=YourGateway