Powershell - How to insert multiple files content in one file
You can do this with the script below:
$path="\\server\logs\*.txt"
$files = dir $path
foreach ($file in $files){
Get-Content $file >>
c:\tmp\log.txt
}
And get your output file with the content of all other files.
Comments
Post a Comment