Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Install Windows Server on any VPS or Dedicated Server without KVM/iLO or IPMI

124»

Comments

  • kevindskevinds Member, LIR

    @sreekanth850 said:
    How does the licensing works in this case because many times, you cannot use your retail keys on such vps servers. Do hetzner send you piracy notices?

    You can if the keys are not used on another server.

    OEM keys, no, you are not allowed to use them on different hardware.

  • @kevinds said:

    @sreekanth850 said:
    How does the licensing works in this case because many times, you cannot use your retail keys on such vps servers. Do hetzner send you piracy notices?

    You can if the keys are not used on another server.

    OEM keys, no, you are not allowed to use them on different hardware.

    You can massgrave it

  • kevindskevinds Member, LIR

    @WhiteRoseG said:
    You can massgrave it

    There are many options available to pirate Windows, but that wasn't the questioned asked, at least I don't think it was.

  • We cannot says that it work on "any" VPS. I have tried on AWS c5a, even dump gz file from aws it also not work

  • @as247 said:
    We cannot says that it work on "any" VPS. I have tried on AWS c5a, even dump gz file from aws it also not work

    What is nog working, maybe change drive

  • If your system has more than 8GB of RAM, you can mount the ISO in RAM memory, I also add how to install on EFI (WORKS ON NEW OVH SERVERS) and LEGACY bootable systems.

    How to Check if Your Server Uses UEFI or BIOS

    apt install efibootmgr
    efibootmgr
    

    If your system supports UEFI, it will output different variables. If not you will see a message saying EFI variables are not supported.

    INSTALL QEMU
    apt-get install qemu-system -y

    COPY QEMU TO /tmp
    cp /usr/bin/qemu-system-x86_64 /tmp

    INSTALL OVMF (UEFI)
    apt-get install ovmf

    COPY OVMF TO /tmp
    cp /usr/share/ovmf/OVMF.fd /tmp

    CHECK DISK NAME

    lsblk

    DELETE PARTITION TABLE
    dd if=/dev/zero of=/dev/sda bs=1M count=1

    MOUNT /mnt IN RAM
    mount -t tmpfs -o size=8000m tmpfs /mnt

    DOWNLOAD ISOS WINDOWS AND VIRTUAL
    https://massgrave.dev/windows_server_links
    (check on first page, I can't type the command here, it blocks me cloudflare)

    RUN QEMU (VPS VIRTIO UEFI)

    /tmp/qemu-system-x86_64 \
    -m 800M \
    -cpu host,+nx \
    -enable-kvm \
    -bios /tmp/OVMF.fd \
    -boot order=d \
    -drive file=/mnt/NAMEOFWINDOWSISO.iso,media=cdrom \
    -drive file=/mnt/virtio-win.iso,media=cdrom \
    -drive file=/dev/vda,format=raw,if=virtio \
    -device usb-ehci,id=usb,bus=pci.0,addr=0x4 \
    -device usb-tablet \
    -net nic,model=virtio \
    -net user,hostfwd=tcp::3389-:3389 \
    -vnc :0 \

    RUN QEMU (VPS VIRTIO LEGACY)

    /tmp/qemu-system-x86_64 \
    -m 800M \
    -cpu host,+nx \
    -enable-kvm \
    -boot order=d \
    -drive file=/mnt/NAMEOFWINDOWSISO.iso,media=cdrom \
    -drive file=/mnt/virtio-win.iso,media=cdrom \
    -drive file=/dev/vda,format=raw,if=virtio \
    -device usb-ehci,id=usb,bus=pci.0,addr=0x4 \
    -device usb-tablet \
    -net nic,model=virtio \
    -net user,hostfwd=tcp::3389-:3389 \
    -vnc :0 \

    RUN QEMU (DEDICATED SERVER UEFI)

    /tmp/qemu-system-x86_64 \
    -m 800M \
    -cpu host,+nx \
    -enable-kvm \
    -bios /tmp/OVMF.fd \
    -boot order=d \
    -drive file=/mnt/NAMEOFWINDOWSISO.iso,media=cdrom \
    -drive file=/dev/sda,format=raw \
    -device usb-ehci,id=usb,bus=pci.0,addr=0x4 \
    -device usb-tablet \
    -net user,hostfwd=tcp::3389-:3389 \
    -vnc :0 \

    RUN QEMU (DEDICATED SERVER LEGACY)

    /tmp/qemu-system-x86_64 \
    -m 800M \
    -cpu host,+nx \
    -enable-kvm \
    -boot order=d \
    -drive file=/mnt/NAMEOFWINDOWSISO.iso,media=cdrom \
    -drive file=/dev/sda,format=raw \
    -device usb-ehci,id=usb,bus=pci.0,addr=0x4 \
    -device usb-tablet \
    -net user,hostfwd=tcp::3389-:3389 \
    -vnc :0 \

    • INSTALL WINDOWS WITH REALVNCVIEWER (SERVERIP:0)
    • INSTALL VIRTIO DRIVERS (ONLY VPS)
    • ENABLE REMOTE DESKTOP
    • CLOSE REALVNCVIEWER
    • FORCE REBOOT IN SSH CONSOLE:
      echo b > /proc/sysrq-trigger

    • DONE

  • xxslxxsl Member, LIR

    I have to say this is not good, using modified install media can be very very dangerous.

    A backdoor can be easily packed into the iso and your server could be used by bad guys for criminal activites.

  • Do you have iso for win 10 or win 11 ?

  • @blackeye said:
    Do you have iso for win 10 or win 11 ?

    You can use a link from Microsoft or Massgrave and try, i build some isos with drivers but it's the same, You can use any ISO + virtual ISO drivers

  • derrysanderrysan Member
    edited December 2024

    @javimuse said:

    @blackeye said:
    Do you have iso for win 10 or win 11 ?

    You can use a link from Microsoft or Massgrave and try, i build some isos with drivers but it's the same, You can use any ISO + virtual ISO drivers

    Hello,
    Is there any link to build my own iso + virtual iso drivers?
    The youtube link is not there anymore.
    Thanks

  • @derrysan said:

    @javimuse said:

    @blackeye said:
    Do you have iso for win 10 or win 11 ?

    You can use a link from Microsoft or Massgrave and try, i build some isos with drivers but it's the same, You can use any ISO + virtual ISO drivers

    Hello,
    Is there any link to build my own iso + virtual iso drivers?
    The youtube link is not there anymore.
    Thanks

    https://bonguides.com/how-to-add-drivers-into-a-windows-iso-installation-image/

    Thanked by 1ElonBezos
  • Thank's. The ISO I created with dd from the command line isn't booting. It's not being recognized as bootable. I must be missing a step when using dd to create a bootable ISO

  • @derrysan said:

    Thank's. The ISO I created with dd from the command line isn't booting. It's not being recognized as bootable. I must be missing a step when using dd to create a bootable ISO

    Always test the iso with local install first.

  • derrysanderrysan Member
    edited January 2025

    @javimuse said:

    @derrysan said:

    @javimuse said:

    @blackeye said:
    Do you have iso for win 10 or win 11 ?

    You can use a link from Microsoft or Massgrave and try, i build some isos with drivers but it's the same, You can use any ISO + virtual ISO drivers

    Hello,
    Is there any link to build my own iso + virtual iso drivers?
    The youtube link is not there anymore.
    Thanks

    https://bonguides.com/how-to-add-drivers-into-a-windows-iso-installation-image/

    I have followed the instructions, but the resulting ISO is consistently non-bootable. Could you please advise me on where I can find more resources to create a bootable ISO?
    I'm using this command:
    wget -O- 'https://xxx/custom.iso' | dd of=/dev/sda

    Thanks

  • dev_vpsdev_vps Member
    edited January 2025

    Adding drivers to a Windows ISO installation image involves a few steps. Here's a general guide:

    1. Prepare Your Tools:

      • Download and install the Windows Assessment and Deployment Kit (ADK) which includes tools like Deployment Imaging Service and Management Tool (DISM).
      • Obtain the drivers you need in the form of .inf files.
    2. Create a Working Directory:

      • Create a folder structure on your computer to organize your files. For example, C:\WinISO\Mount for mounting the image, C:\WinISO\Drivers for storing drivers, and C:\WinISO\ISO for the final ISO.
    3. Extract the Windows ISO:

      • Use a tool like 7-Zip or WinRAR to extract the contents of the Windows ISO to a folder, for example, C:\WinISO\Source.
    4. Mount the Windows Image:

      • Open Command Prompt as an administrator.
      • Use DISM to mount the Windows image. For example:

        dism /Mount-WIM /WimFile:C:\WinISO\Source\sources\install.wim /Index:1 /MountDir:C:\WinISO\Mount
        
      • Replace Index:1 with the correct index number if you have multiple editions in your ISO.

    5. Add Drivers:

      • Use DISM to add drivers to the mounted image:

        dism /Image:C:\WinISO\Mount /Add-Driver /Driver:C:\WinISO\Drivers /Recurse
        
      • The /Recurse option ensures that all drivers in subfolders are included.

    6. Commit Changes and Unmount:

      • Once the drivers are added, commit the changes and unmount the image:
        bash dism /Unmount-WIM /MountDir:C:\WinISO\Mount /Commit
    7. Create a New ISO:

      • Use a tool like oscdimg (included in ADK) or any third-party tool to create a new ISO file from the modified files:
        bash oscdimg -m -u2 -bC:\WinISO\Source\boot\etfsboot.com C:\WinISO\Source C:\WinISO\ISO\NewWindowsISO.iso
    8. Test the ISO:

      • It's a good idea to test the new ISO in a virtual machine before using it for a full installation.
    Thanked by 1FairShare
  • @derrysan said:

    @javimuse said:

    @derrysan said:

    @javimuse said:

    @blackeye said:
    Do you have iso for win 10 or win 11 ?

    You can use a link from Microsoft or Massgrave and try, i build some isos with drivers but it's the same, You can use any ISO + virtual ISO drivers

    Hello,
    Is there any link to build my own iso + virtual iso drivers?
    The youtube link is not there anymore.
    Thanks

    https://bonguides.com/how-to-add-drivers-into-a-windows-iso-installation-image/

    I have followed the instructions, but the resulting ISO is consistently non-bootable. Could you please advise me on where I can find more resources to create a bootable ISO?
    I'm using this command:
    wget -O- 'https://xxx/custom.iso' | dd of=/dev/sda

    Thanks

    You are confusing the tutorials; the one you are referring to is for creating a custom ISO, but you are trying to use a command that is meant for .gz images with an ISO. Check this link and try creating a .gz image to decompress on a server.

  • dev_vpsdev_vps Member
    edited January 2025

    image

    Thanked by 1javimuse
This discussion has been closed.