MENU

VPS安装windows系统

December 23, 2021 • Read: 602 • Scripts

前言

以下脚本主要是使用DD命令,把Liunx系统的服务器安装成Windows系统,命令都随处可见,但DD包失效的很多,本文主要记录有效的DD包地址,所有DD包保存在Joy's Cloud中;

安装依赖

#更新系统

#Debian/Ubuntu:
apt-get update

#RedHat/CentOS:
yum update
#必要依赖
#Debian/Ubuntu:
apt-get install -y xz-utils openssl gawk file

#RedHat/CentOS:
yum install -y xz openssl gawk file

一键脚本

wget --no-check-certificate -qO InstallNET.sh 'https://sunpma.com/other/oss/InstallNET.sh' && bash InstallNET.sh -dd '[Windows DD包直链地址]'

完整版DD包

  • DD Windows Server 2012 R2 Datacenter 64位 [账户administrator密码Password147]

    wget --no-check-certificate -qO InstallNET.sh 'https://sunpma.com/other/oss/InstallNET.sh' && bash InstallNET.sh -dd 'https://1820-1259397291.cos.ap-shanghai.myqcloud.com/uploads/2021/12/22/oE4Bdjg0_cn_windows2012r2_administrator_Password147.gz'
  • DD Windows Server 2016 Datacenter 64位 [账户administrator密码Password147]

    wget --no-check-certificate -qO InstallNET.sh 'https://sunpma.com/other/oss/InstallNET.sh' && bash InstallNET.sh -dd 'https://1820-1259397291.cos.ap-shanghai.myqcloud.com/uploads/2021/12/22/oVcyDpLm_cn_windows2016_administrator_Password147.gz'
  • DD Windows Server 2019 Datacenter 64位 [账户administrator密码Password147]

    wget --no-check-certificate -qO InstallNET.sh 'https://sunpma.com/other/oss/InstallNET.sh' && bash InstallNET.sh -dd 'https://1820-1259397291.cos.ap-shanghai.myqcloud.com/uploads/2021/12/22/Q2fPaDJp_cn_windows2019_administrator_Password147.gz'
  • DD Windows Server 2022 Datacenter 64位 [账户administrator密码Teddysun.com]

    wget --no-check-certificate -qO InstallNET.sh 'https://sunpma.com/other/oss/InstallNET.sh' && bash InstallNET.sh -dd 'https://1820-1259397291.cos.ap-shanghai.myqcloud.com/uploads/2021/12/22/yrc6asAn_Win_Server2022_20344.1_x64_administrator_Teddysun.com.gz'
  • DD Windows11 工作站专业版 21H2 64位 [账户administrator密码Teddysun.com]

    wget --no-check-certificate -qO InstallNET.sh 'https://sunpma.com/other/oss/InstallNET.sh' && bash InstallNET.sh -dd 'https://1820-1259397291.cos.ap-shanghai.myqcloud.com/uploads/2021/12/23/5JZH9JRl_Win11_Pro_for_Workstations_21H2_administrator_Teddysun.com.gz'

GCP谷歌云

# 将X.X.X.X替换为自己的网络参数.
# --ip-addr :IP Address/内网IP地址
# --ip-mask :Netmask   /子网掩码
# --ip-gate :Gateway   /网关
# 替换--ip-addr后面的X.X.X.X为你自己的内网IP,注意查看ip-gate网关信息是否于你机器的网关相同;
wget --no-check-certificate -qO InstallNET.sh 'https://sunpma.com/other/oss/InstallNET.sh' && bash InstallNET.sh --ip-addr X.X.X.X --ip-mask 255.255.255.0 --ip-gate X.X.X.X -dd 'DD包 直链地址'

Last Modified: March 4, 2022