0
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 1 year has passed since last update.

Azure仮想マシンのWindowsライセンス認証ができない

Posted at

Windowsラインセス認証失敗

現象:
AzureのVMは標準作成を行い、ログインしたら、
  ・システム属性または 更新とセキュリティからライセンス認証に
Windowsはライセンス認証されていません という記載があります。
  ・壁紙に「Windowsのライセンス認証」というアラートはあります。

対策:
設定は間違わなければ、slmgr.vbs /atoにて実施すると認証できます。
image.png

普通はどこか特にNW設定が不備があり、↑のイメージのように通さない結果になります。

トラブルシューティングについては、以下の通り記載します。

  • 以下のコマンドでKMSは正しく設定されたことを確認する。
Invoke-Expression "$env:windir\system32\cscript.exe $env:windir\system32\slmgr.vbs /skms kms.core.windows.net:1688"

image.png

  • PSpingを利用して、以下のコマンドでNWが疎通できることを確認する。
.\psping.exe kms.core.windows.net:1688
  • ルートテーブルに23.102.135.246 (KMSサーバ)へのトラフィックはInternetへ出ることを確認する。
    image.png

  • NICのセキュリティグループに 23.102.135.246 (KMSサーバ)へのトラフィック が許可されていることを確認する。
    image.png

Azureの参照リンク:
https://docs.microsoft.com/ja-jp/troubleshoot/azure/virtual-machines/troubleshoot-activation-problems

0
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
0
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?