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