.txt または .config で powershell を使用してログ ファイルを作成しました。そのように見える:
# Hello
## This is readme.txt file
## This is commented line
# This is powershell command output
#
# File generated for read, re-load and edit the values
## -- many more comment is there
# Users can change values..
## There is no relation between $RegPath and $RegValue, this are only variables.
# this are registry path,
$RegPath = (
"\\hklm\software\microsoft\123",
"\\hklm\software\Adobe\123",
"\\hklm\software\Fax\123",
"\\hklm\software\IE\123");
# this are registry value.
$RegValue = (
"0",
"123",
"abc",
"456asdccxv",
"update",
"serv");
#this are some services with 0/1
# Win 7 OS exist
$IsWin7OS = 1
# Service pack installed
$IsSPInstalled = 0
# Check office
$MSOffice = 1
# This setting name is
$SettingName = "ReadMe.txt"
サンプルの ReadMe.txt です。このファイルを PowerShell で読み取り、PowerShell プラットフォームで $RegPath、$RegValue、$IsWin7OS、$IsSPInstalled、$MSOffice、および $SettingName の値を取得したいと考えています。次に、この値を更新して、同じファイルに再度保存します。