4 lines
162 B
Text
4 lines
162 B
Text
$tempFile = [System.IO.Path]::GetTempFileName()
|
|
Set-Content -Path $tempFile -Value "FileName = $tempFile"
|
|
Get-Content -Path $tempFile
|
|
Remove-Item -Path $tempFile
|