2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Azure上のWindowsServer2016で、VDIサーバを構築する(更新中)

Last updated at Posted at 2018-03-12

実施すること

Azure上に仮想デスクトップコレクションを展開して、RDS経由でWindows10にログインする。

1.Azureリソース

1.初期デプロイ

jsonを使ってデプロイする
やること
・リソースグループの作成
・仮想ネットワークの作成
・ストレージアカウントの作成

以下はjsonファイル

xxx.json
xxx

2.HVサーバのデプロイ

ポータルからポチポチ作成する

以下はjsonファイル

xxx.json
xxx

3.DNS名の登録

RDPが楽になるので、pipにDNS名を登録しておく

2.HVサーバの構築

1.Networkの信頼

Networkを信頼する

2.日本語化

以下のURLを参考に、日本語化を実施する
https://kogelog.com/2016/10/18/20161018-01/

Powershellで実行するのが良い。

3.WindowsUpdate

下記を参考に、Powershellで実行する。
Windows Server 2012 / 2012 R2 の Windows Update による定期的なパッチ適用のメモ

4.ドメイン参加

今回は既に存在するADへ参加する

5.Hyper-Vの役割インストール

Install-HV.ps1
Install-WindowsFeature -Name hyper-v, failover-clustering,Multipath-IO -IncludeManagementTools

6.仮想スイッチの作成

make_vSwitch.ps1
$SwitchName = "vSwitch01"
$AdapterName = "vEthernet ($SwitchName)"
$NAT_Gateway_IP ="192.168.10.1"
$NAT_Subnet_Prefix_Length ="24"
$NATOutsideName = "vNat01"
$NAT_subnet_prefix = "192.168.10.0/24"
New-VMSwitch -SwitchName $SwitchName -SwitchType Internal
$NewAdapter = Get-NetAdapter -Name  $AdapterName
$ifIndex = $NewAdapter.ifindex
New-NetIPAddress -IPAddress $NAT_Gateway_IP -PrefixLength $NAT_Subnet_Prefix_Length -InterfaceIndex $ifIndex
New-NetNat -Name $NATOutsideName -InternalIPInterfaceAddressPrefix $NAT_subnet_prefix

7.Windows10VMの作成

3.RDサーバの構築

8.コレクションの作成

Disk拡張
http://blog.yottun8.com/archives/594

バグ
https://satsumahomeserver.com/blog/3617

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?