How to Create a Windows 11 VPS Step-by-Step Tutorial 2022

Cloud Tech
Cloud Tech
9.1 هزار بار بازدید - 3 سال پیش - I show you how to
I show you how to create your own Windows 11 Cloud PC, that has 29 GB of RAM for less than a dollar a day.

DISCAIMER ** IMPORTANT **  : This video has been made for INFORMATIONAL PURPOSES only. Any licensing issues of any deploying software to a VPS are totally a matter for you and will depend on what type of license version you hold with any vendor.



======================================================
If you are looking for a particular video try,
1) Channel : https://cloudtechlinks.com/YTChannel
2) then : https://cloudtechlinks.com/All-Videos
======================================================


Overall Plan
================
Video Purpose
 Show Windows 11
 Show Task Manager (7 CPUs, 29 GB RAM)
 show printer mapped
 Cut & Paste beteen desktop & vm
 Copy a file from C: to Windows 11
Cloud Tech Youtube Introduction
GamePlan Diagram
Step 1 - SoYouStart Server Order
Step 2 - Create SSH key for SoYouStart Server
Step 3 - Install Ubuntu 20.04 on SoYouStart Server
Step 4 - Connect via SSH using Putty
Step 5 - Install xrdp, virtualbox, ubuntu-desktop etc via script
Step 6a - Tunnel RDP through SSH - Explanation
Step 6b - Tunnel RDP through SSH - In Action
Step 7 - Install Windows 11 in Virtualbox on unsupported hardware - See instruction below
 Show stacer
  Install Windows 11
 Enable remote desktop
Step 8 - Connect via RDP to Windows 11 in Virtualbox
  ubuntu settings, privicy screen lock - turn off EVERYTHING
  settings, power?
  In Virtualbox : settings, network, advanced, port forwarding
  add, host port = 53389 to guest port 3389
  Connect via RDP to Server-IP:53389
V19 - 12 - YouTube End Card Scene

Step 7 - Install Windows 11 in Virtualbox on unsupported hardware
=======================================
Run Virtualbox, create VM by:
 New vm name called "win11" (lowercase)
 pick version as windows 10 (64-bit)
 memory size = about 29000 mb
 hard disk = new, type VDI, Dynamic, 100 GB
 then In Settings:
  - system, processor = 4 CPUs
  - Audio, untick Enable Audio
 - Load Downloads/win11.iso into VirtualBoxes CD-ROM
 - Add new CD , Load downloaded virtio Cd into that CD-ROM

start win11 VM
   SHIFT + F10, then regedit
     new key = KEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig
     new DWORD (32-bit) = BypassTPMCheck = Decimal,1  
     new DWORD (32-bit) = BypassSecureBootCheck = Decimal,1  
     new DWORD (32-bit) = BypassCPUCheck = Decimal,1  
         (not used : new DWORD (32-bit) = BypassStorageCheck = Decimal,1
                       new DWORD (32-bit) = BypassRAMCheck = Decimal,1  
       close regedit and CMD Window
       Then, and only then,
                 start the installation process

         Language, Time & Currency, Keyboard = US
         Press 'Install'
         I dont have a product key
         Windows 11 Pro
         Custom; Install Windows only
     location "united Kingdom"
     keyboard "united kingdom"
     device name = win11
     select "sign in options"
     select "domain join instead"
     select "skip for now"
     in demo I use Username: xrdpuser
                   Password: g6k4a9l2h4b4
       (i.e. password is long, complex, not in Dictionary,
     Even if you need to write it down on a piece of paper.)
     in demo I use qqqq for all the 3 security questions
     When on desktop:
            Enable Remote Desktop in settings
            Restart


Ubuntu Install Script (Step 5)
=
#!/bin/bash

function run-cmd ()
{

echo " About to run : $1"

read -t 600 -p ""
$1
echo ""
}

run-cmd "sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target"
run-cmd "sudo systemctl status sleep.target suspend.target hibernate.target hybrid-sleep.target"
run-cmd "sudo apt-get update"
run-cmd "sudo apt-get upgrade -y"
run-cmd "sudo apt-get install ubuntu-desktop -y"
run-cmd "sudo apt-get install xrdp -y"
run-cmd "sudo rm /usr/share/polkit-1/actions/org.freedesktop.color.policy"
run-cmd "sudo apt install virtualbox -y"
run-cmd "sudo apt install virtualbox-ext-pack -y"
run-cmd "sudo ufw status numbered"
run-cmd "sudo ufw default deny incoming"
run-cmd "sudo ufw default allow outgoing"
run-cmd "sudo ufw allow 22"
run-cmd "sudo ufw allow 53389"
run-cmd "sudo ufw enable"
run-cmd "sudo ufw status numbered"
run-cmd "sudo apt-get install htop -y"  
run-cmd "sudo apt-get install stacer -y
run-cmd "sudo apt-get install gnome-disk-utility -y"
run-cmd "sudo apt-get install qdirstat -y"
run-cmd "sudo apt-get install firefox -y"
run-cmd "sudo apt-get install gedit -y"
run-cmd "sudo passwd root"
run-cmd "sudo passwd ubuntu"
run-cmd "sudo reboot"


-
INSTRUCTIONS TO RUN THE SCRIPT
-
1. Copy the this whole script to the clipboard
2. in the SSH window type : "nano buildscript.sh"
3. paste into nano by using keys SHIFT+INSERT
4. then CNTL+O then ENTER to save, and finally CNTL+X to exit
5. To make the script executable: "sudo chmod +x buildscript.sh"
6. To run the script: ./buildscript.sh
3 سال پیش در تاریخ 1400/11/03 منتشر شده است.
9,187 بـار بازدید شده
... بیشتر