此代码在 PowerShell v1 中运行,但不在 PowerShell v2 中运行。它现在提示输入一个值:
Get-ChildItem -Path $source -Filter "*.journal" |
Where-Object { $_.Name -match 'SoundPC\[\d{1,12}-\d{1,12}\].journal' } | Sort-Object -Property CreationTime | ForEach-Object
{
$sourcefile = $_.Name
}
有人可以帮忙吗?