折腾记:尝试Hyper-V Server2019 部署配置

镜像下载(微软官方)

下载地址

使用rufus写入U盘

https://rufus.ie/zh/

正常安装系统

下载配置脚本

https://file.uhsea.com/2407/247fe11846307d5eacedeb96a94f39e5MF.ps1
https://www.doracloud.cn/downloads/hypervps1-cn.html

打开powershell

命令行中输入 start powershell就可启动powershell

使用client命令下载

在powershell中我们输入一下命令

$client = new-object System.Net.WebClient

$client.DownloadFile('#1', '#2')

其中, #1的位置填写文件下载地址,#2的位置填写下载的保存路径(注意一点要使用英文键盘的单引号)。我以一个linux下名叫negois的监控软件的下载地址为例,下载到我的桌面上,保存成一个压缩文件,名字叫test.tar.gz,在#2中,一定也要把这个test.tar.gz一起写进去,而不只是写一个路径。我在这里使用的例子命令是:

$client = new-object System.Net.WebClient

$client.DownloadFile('https://file.uhsea.com/2407/247fe11846307d5eacedeb96a94f39e5MF.ps1','C:\Users\Damon\hyperv.ps1')

里面的username换成你自己的用户名

运行hyperv.ps1脚本

powershell -f hyperv.ps1

posted @ 2024-07-15 15:50  Damon'log  阅读(45)  评论(0编辑  收藏  举报