PowerShell で FileSystemWatcher のアクションとして Start Process を使用する方法

PowerShell で FileSystemWatcher のアクションとして Start Process を使用する方法

System.IO.FileSystemWatcherを使用して、作成されたファイルのフォルダーとサブディレクトリを監視することはできますが、Start Processを使用してバッチファイルを実行しようとすると、一度実行されるだけで、その後はトリガーされません。ここ

これが私のPowerShellスクリプトです

$watcher = New-Object System.IO.FileSystemWatcher
$watcher.Path = "C:\lectures"
$watcher.Filter = "*.*"
$watcher.IncludeSubdirectories = $true
$watcher.EnableRaisingEvents = $true  

$action = { $path = $Event.SourceEventArgs.FullPath
            Write-Host "Event Fired"
            $ext = [io.path]::GetExtension($path)
            if($ext -eq ".wma"){
                $file = [io.path]::GetFileNameWithoutExtension($path)
                $folder = Split-Path(Split-Path $path -Parent) -Leaf
                $date = Get-Date -UFormat "%Y-%m-%d"
                $newName = $folder + "_" + $date + $ext
                $newPath = Rename-Item -path $path -newname $newName -PassThru
                Start-Process "C:\lectures\deploy.bat" $newPath
            }
          }

Register-ObjectEvent $watcher "Created" -Action $action
while ($true) {
    Write-Host "Still Alive"
    sleep 5
}

私が実行しているバッチファイルは次のとおりです

@echo off
CD %~dp1
ffmpeg -i %~nx1 %~n1.mp3 -loglevel panic
del %1
REM Winscp.com /ini=null /script=uploadScript.txt /parameter %~n1.mp3

PowerShell スクリプトはプロセスの実行後も実行を継続し、プロセスは正常に終了しているようです。イベントの処理を継続するにはどうすればよいでしょうか?

関連情報