I often see questions regarding the use of variables in scriptblocks. Usually a variable will be defined outside the scriptblock and then an attempt will be made to use it in the scriptblock:
PS> $path = 'C:testOldData01.txt'
PS> Start-Job -Name… Read the full text.