Hyper-V没有预先安装在我的win 10 pro笔记本电脑中

时间:2016-07-29 00:50:22

标签: windows-10 hyper-v

我的win-10专业版没有预先安装的hyper-v,因为我在程序和功能方面没有看到任何内容。如何在笔记本电脑中安装它? 附: Hyper-v系统要求与我的笔记本电脑相匹配

1 个答案:

答案 0 :(得分:0)

尝试使用PowerShell。包含多个安装选项的文档here

PowerShell命令(以管理员身份运行):

// test case
//let a = 2, b = 3, c = 1;

let a = Number(prompt('a')), b = Number(prompt('b')), c = Number(prompt('c'));

if(a > b){
	// c? a c? b c?
	if(a > c){
		// a c? b c?
		if(b > c){
			// a b c
			console.log(a, b, c);
		} 1else {
			// a c b
			console.log(a, c, b);
		}
	} else {
		// c a b
		console.log(c, a, b);
	}
} else {
	// c? b c? a c?
	if(b > c){
		// b c? a c?
		if(a > c){
			// b a c
			console.log(b, a, c);
		} else {
			// b c a
			console.log(b, c, a);
		}
	} else {
		// c b a
		console.log(c, b, a);
	}
}