私はpowershellを初めて使用しますが、エラーが発生する理由について何か考えはありますか?
昨日の日付 = (get-date).AddDays(-1).ToString("yyyMMdd")
$jsb={
$file = 'C:\Users\d1\Documents\Batch\path\$Yesterday_Date1\page.log'
Get-Content $file -Wait | ForEach-Object -Begin {
$counter = 1
$lines = @(Get-Content $file).Count
} -Process {
if ($counter++ -gt $lines) {
write-host $_
}
}
}
Start-Job $jsb -name Dum
do{
Receive-Job -Name Dum | out-file C:\Users\path\pager.txt -append
}while(1)