Core Configurator 2.0 はGUIでPowerShellを使ったServer Coreの設定が行えるツールです。
Core Configurator 2.0
http://coreconfig.codeplex.com/
PowerShellが有効の環境ならばファイルをダウンロードして「Start_Coreconfig.wsf」を実行するだけなのですが、日本語版の場合、「Role and Features」と「Services」でエラーになったので少し修正が必要です。
Roles.ps1 (Role and Features) の修正
500行目くらいの oclist でインストール状態を調べている部分を修正します。
1.「Not Installed:」を「未インストール:」に修正
2.「$procOutput += @($myoutputline.substring($iPos + 14))」の「14」を「8」に変更
3.「Installed:」を「インストール済み:」に修正
4.「$procOutput += @($myoutputline.substring($iPos + 10))」を「10」を「9」に変更
Services.ps1 (Services) の修正
189行目あたりの文字化けしている部分を削除します。
「$table = New-Object system.Data.DataTable $TableName 」の「$TableName」の左右にある文字を削除
で使うことができます。
参考:
PowerShellを有効にするコマンド
DISM /online /Enable-Feature:NetFx2-ServerCore
DISM /online /Enable-Feature:MicrosoftWindowsPowerShell
共有フォルダの作成のコマンド
NET SHARE temp=c:\temp /grant:everyone,full