排行榜 统计
  • 文章总数:1057 篇
  • 评论总数:10 条
  • 分类总数:7 个
  • 最后更新:1月2日

DD Windows 一键脚本(包含GCP谷歌云Oracle甲骨文)

本文阅读 3 分钟
首页 技巧杂烩 正文

说明
无限制全自动dd安装Windows
突破没有VNC,没有救援模式,内存比dd包小的限制
使用Debian Live CD中的busybox做中间媒介,经过复杂的处理
使本机的网络参数传进Windows操作系统中
即使没有DHCP能够让Windows获取网络参数
也能让Windows操作系统在开机的第一时间能够连通网络

特别注意:OpenVZ构架不适用,需要指定网络参数安装请看最后面

确保安装了所需软件

#Debian/Ubuntu:
apt-get install -y xz-utils openssl gawk file
#RedHat/CentOS:
yum install -y xz openssl gawk file

如果出现了错误,请运行

#Debian/Ubuntu:
apt-get update
#RedHat/CentOS:
yum update

一键安装使用方法

wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd '[Windows dd包直连地址]'

精简版的DD包(选择好版本,输入以下一键脚本即可)

#DD Windows Server 2003 32位 精简版 [账户Administrator密码cxthhhhh.com]
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'https://image.moeclub.org/GoogleDrive/15J3CYZGRB9AK4WfZ-4l-wInJyQoT8V22'

#DD Windows Server 2008 R2 64位 精简版 [账户Administrator密码WinSrv2008x64-Chinese]
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'https://image.moeclub.org/GoogleDrive/1sIg8A_1_m-kHyImBS07ZzPfjAn8t0z9o'

#DD Windows Server 2012 R2 64位 精简版 [账户Administrator密码WinSrv2012r2x64-Chinese]
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'https://image.moeclub.org/GoogleDrive/1Mx88nHgf3_zPQ8UI8fDuHKoRhte9OTZd'

#DD Windows Server 2019 Datacenter 64位 精简版 [账户Administrator密码WinSrv2019dc-Chinese]
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'https://image.moeclub.org/GoogleDrive/1NC6Z2EJURZ_cr9AmG4o9uLLxquTxGC9S'

#DD Windows7 sp1 64位 旗舰精简版 自带IIS [账户Administrator密码www.nat.ee]
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'https://image.moeclub.org/GoogleDrive/11sQFyv049U4pxhqN9ta2tC1iwPsLW7Af'

#DD Windows7 64位 旗舰精简版 [账户Administrator密码www.nat.ee]
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'https://image.moeclub.org/GoogleDrive/1yeGJzyeM1eWwyMCugGMffSaCDBmSiRDJ'

#DD Windows10 64位 企业精简版 2019LTSC [账户Administrator密码www.nat.ee]
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'https://image.moeclub.org/GoogleDrive/1_tqpgIiArzG0g9P-6f2qbincQS0QF045'
Oracle甲骨文 专用
#说明:Oracle是采用UEFI启动,普通DD包均不支持UEFI启动

#DD Windows 7 64位旗舰精简版 Oracle甲骨文专用 [账户Administrator密码www.nat.ee]
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'https://image.moeclub.org/GoogleDrive/1VQ9FUXaU9pyVL5WzgD2lfP1h-qNYNvf2'

指定网路参数安装(比如GCP谷歌云)

# 将X.X.X.X替换为自己的网络参数.
# --ip-addr :IP Address/内网IP地址
# --ip-mask :Netmask   /子网掩码
# --ip-gate :Gateway   /网关
wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh --ip-addr X.X.X.X --ip-mask X.X.X.X --ip-gate X.X.X.X -dd 'DD包 直链地址'

例:

DD Windows 7 64位 精简旗舰版 只需替换 --ip-addr 后面的X.X.X.X为你自己的内网IP即可,其他不变

在GCP谷歌云 Debian Ubuntu 测试成功,CentOS未测试

默认账户Administrator密码www.nat.ee

GCP谷歌云 台湾

wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh --ip-addr X.X.X.X --ip-mask 255.255.255.0 --ip-gate 10.140.0.1 -dd 'https://image.moeclub.org/GoogleDrive/1yeGJzyeM1eWwyMCugGMffSaCDBmSiRDJ'

GCP谷歌云 香港

wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh --ip-addr X.X.X.X --ip-mask 255.255.255.0 --ip-gate 10.170.0.1 -dd 'https://image.moeclub.org/GoogleDrive/1yeGJzyeM1eWwyMCugGMffSaCDBmSiRDJ'

连接上后如果遇到无法打开网页的情况,修改DNS即可

8.8.8.8
8.8.4.4

关于激活
可以试试下面的Key(不一定都能成功激活)
RHTBY-VWY6D-QJRJ9-JGQ3X-Q2289
右键以管理员身份运行CMD(命令提示符),依次执行下面的命令

slmgr.vbs -upk
slmgr.vbs -ipk RHTBY-VWY6D-QJRJ9-JGQ3X-Q2289
slmgr.vbs -ato
slmgr.vbs -dlv

Windows服务器开启Ping
进入服务器后点击 开始 → 运行 输入如下命令:

开启Ping:

netsh firewall set icmpsetting 8

关闭Ping:

netsh firewall set icmpsetting 8 disable

一键脚本来自萌咖:https://moeclub.org

本文来自投稿,不代表本站立场,如若转载,请注明出处:
-- 展开阅读全文 --
centos7下安装apache服务器httpd的yum方式安装
« 上一篇 04-19
linux挂载数据盘
下一篇 » 04-19

发表评论

发表评论

作者信息

云外科技
打破技术壁垒,体验云上服务,云外科技致力于本地上云转型升级,大数据、多渠道为您的业务增添色彩!
TA的最新作品

动态快讯

    请配置好页面缩略名选项

热门文章

最多点赞

标签TAG

热评文章