6
6

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.

Windows 10 の AutoPilot 用の情報を取得するPowerShell

Last updated at Posted at 2018-08-07

概要

AutoPilotを利用するためにはMicrosoftにPCのserialなどの情報を登録する必要があります。
各PCからその情報を抽出する方法のメモです

以下のPowerShellを連続で流せば、データを抽出できます
PowerShellモジュールのダウンロードからインストールまで一連の動きが記載されています。
c:\をテンポラリにしているので適宜書き換えてください。
また出力ファイルはc:\AutoPilotOutputfile.csvです。

AutoPilot.ps
Install-Script -Name Get-WindowsAutoPilotInfo
Set-ExecutionPolicy unrestricted
Get-WindowsAutoPilotInfo.ps1  -OutputFile c:\AutoPilotOutputfile.csv

##動作確認
上記コマンドレットの実行画面です。

  1. 管理者権限でPowerShellを起動します。
  2. 上記のコマンドレットを順に実行します。この時確認を求められますので、承認していきます。
    キャプチャ252.JPG
  3. 出力ファイルができていることを確認します。
    キャプチャ253.JPG
6
6
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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?