2020/10/08 #PowerPointを開く

皆様おはようございます、
#猫でもできるPowerShell(備忘録)
#PowerPointを開く
<#元ネタ
How to use Powershell to save an Excel worksheet as a tab delimited txt file
https://social.msdn.microsoft.com/Forums/ja-JP/90d43d44-2b14-48e5-8c91-9eea591eafe0/how-to-use-powershell-to-save-an-excel-worksheet-as-a-tab-delimited-txt-file?forum=vsto
#>

$PptApp = New-Object -ComObject PowerPoint.Application
$PptApp = $PptApp.Presentations.add()

パワポは2行で済む?
ではまた;