Nano Server速记

Posted qinqoushui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nano Server速记相关的知识,希望对你有一定的参考价值。

入门参考https://docs.microsoft.com/zh-cn/windows-server/get-started/nano-server-quick-start

1、创建VHD

Import-module .NanoServerImageGenerator.psm1 -Verbose

New-NanoServerImage -Edition Standard -DeploymentType Guest -MediaPath j: -BasePath d:vm ano -TargetPath d:vm ano ano.vhd -ComputerName Nano -Package Microsoft-NanoServer-IIS-Package –EnableRemoteManagementPort

?

2、使用VHD创建虚拟机

3、远程管理

A、连接

Set-Item WSMan:localhostClientTrustedHosts "10.168.1.125"

Enter-PSSession -ComputerName "10.168.1.125" -Credential "administrator"

?

B、共享文件夹

参考https://www.cnblogs.com/dotNETCoreSG/p/aspnetcore-2_5-nano_server_on_core.html

?

mkdir c: emp

(启用文件共享没什么效果)netsh advfirewall firewall set rule group="File and Printer Sharing" new enable=yes

net share ShareTemp=c: emp /GRANT:EVERYONE`,FULL

?

C、开端口

参考http://www.pstips.net/manage-firewall-using-powershell.html

?

New-NetFirewallRule -Name "MyService" -DisplayName "我的服务" -Protocol TCP -LocalPort 80,8080,3413-3420 -Action Allow -Enabled True

?

?

D、安装NET CORE

参考https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script

./dotnet-install.ps1 -Channel 2.0 -InstallDir C:cli

IIS

参考 https://www.cnblogs.com/dotNETCoreSG/p/aspnetcore-2_5-nano_server_on_core.html

下载安装脚本,执行命令

?

?

以上是关于Nano Server速记的主要内容,如果未能解决你的问题,请参考以下文章

Windows Nano Server安装配置详解04:将Nano Server加入域

Windows Nano Server安装配置详解03:远程管理Nano Server

MCSA / Windows Server 2016 安装,配置和管理 Nano Server

Windows Server 2016-Nano Server介绍

Windows Nano Server安装配置详解09:Nano Powershell

Windows Nano Server 部署