誰かが助けてくれることを願っています。powershell で作成したファイルを操作しようとしています。なんとか望みどおりの結果にたどり着きましたが、コマンドが1つだけだったらもっと簡単だと思います。
# Invoke the Exchange Snapping ( make sure you are Exchange Admin to do it SO)
add-pssnapin Microsoft.Exchange.Management.PowerShell.E2010
#Create a file with list of DL in the organization
Get-DistributionGroup | Select-Object Name | Out-File C:\Pre_DLGroups.txt
$content = Get-Content C:\Pre_DLGroups.txt
#Remove the 3 first lines of the file that you dont need it
$content | Select-Object -Skip 3 | Out-file C:\DLGroups.txt
#Trim the space in the end and crate the Final file
Get-Content C:\DLGroups.txt | Foreach {$_.TrimEnd()} | Set-Content c:\FinalDLGroup.txt
3を作成するのではなく、最終結果を1つのファイルにする方法はありますか? 乾杯
エルトン