Repository: termuxprofessor/wintermux Branch: master Commit: cc06ee5c0e3e Files: 3 Total size: 3.4 KB Directory structure: gitextract_6un7on22/ ├── LICENSE ├── README.md └── wintermux.sh ================================================ FILE CONTENTS ================================================ ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2020 Termux Professor Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # WinTermux Script For Install Windows In Android By Termux. Without Root. --- ## • First Download WIN10TP.iso File * Go to http://bit.ly/wintermux. * Download WIN10TP.iso file from link given above. File size is about 480mb. * Put this file in download folder. don't change name of iso file. * Then open temux and give following commands. ## • How To Install In Termux `$ termux-setup-storage` `$ pkg up -y` `$ pkg install git` `$ git clone https://github.com/termuxprofessor/wintermux` `$ cd wintermux` `$ chmod +x wintermux.sh` `$ bash wintermux.sh` Download and open VNC viewer app from playstore. Create new connection. Set server as 127.0.0.1:2. Then Connect. And You are Ready to Rock.... ---

Follow Me On

================================================ FILE: wintermux.sh ================================================ #!/bin/bash #Do not copy or edit code read LICENSE First. #This Script is coded by Termux Professor (Youtuber) #banner clear echo -e "\e[1;92m ╦ ╦┬┌┐┌ \e[1;91m╔╦╗┌─┐┬─┐┌┬┐┬ ┬─┐ ┬" echo -e "\e[1;92m ║║║││││ \e[1;91m║ ├┤ ├┬┘││││ │┌┴┬┘" echo -e "\e[1;92m ╚╩╝┴┘└┘ \e[1;91m╩ └─┘┴└─┴ ┴└─┘┴ └─" echo -e "\e[1;92m [+] YouTube: \e[1;91mTermuxProfessor" echo -e "\e[1;92m [+] Github: \e[1;91mtermuxprofessor\e[1;97m" echo "" #isocheaker read -p "Does WIN10TP.iso File In Your Download Folder?(Yes/No) : " input if [[ $input == Yes || $input == yes || $input == y || $input == Y ]]; then clear cd $HOME termux-wake-lock pkg install x11-repo -y pkg install qemu-system-x86_64 -y clear echo -e "\e[1;92m1] Allow Storage Permission To Termux." sleep 3 clear read -p "Select Size Of RAM In MB Ex 1GB = 1024 : " ram echo "[+] Server Is Running...." echo -e "Your Server IP is:\e[1;91m 127.0.0.1:2" qemu-system-x86_64 -m $ram -cdrom storage/downloads/WIN10TP.iso -vnc 127.0.0.1:2 elif [[ $input == No || $input == no || $input == n || $input == N ]]; then echo -e "\e[1;91m1. First Download WIN10TP.iso file from this Link: \e[1;92mhttp://bit.ly/wintermux" #pastedownload link here echo "2. Put WIN10TP.iso file into download folder." exit 2 else echo -e "\e[1;91mInvalid Option" exit 1 fi