PowerShell Menulis ke fgile

$data = "Hello World"
$path = C:\output.txt

$data | Out-File -FilePath $path -Append
Av3