エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Where can I find all of the COM objects that can be created in PowerShell?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Where can I find all of the COM objects that can be created in PowerShell?
COM objects can be created and used in PowerShell, for example to control Microsoft Office applic... COM objects can be created and used in PowerShell, for example to control Microsoft Office applications: $excel = New-Object -com "Excel.Application" $excel.visible = $true How can I list all of the available COM objects that can be created in PowerShell?