This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PoewrPoint起動 | |
$app = New-Object -ComObject PowerPoint.Application | |
# MsoTriState | |
$msoTrue = [Microsoft.Office.Core.MsoTristate]::msoTrue | |
$msoFalse = [Microsoft.Office.Core.MsoTristate]::msoFalse | |
# デバッグ目的でPowerPointを表示する場合はtrue | |
$app.Visible = $msoTrue | |
$ppt = "%pptxFile%" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PoewrPoint起動 | |
$app = New-Object -ComObject PowerPoint.Application | |
# MsoTriState | |
$msoTrue = [Microsoft.Office.Core.MsoTristate]::msoTrue | |
$msoFalse = [Microsoft.Office.Core.MsoTristate]::msoFalse | |
# デバッグ目的でPowerPointを表示する場合はtrue | |
$app.Visible = $msoTrue | |
$ppts = "%pptFilesList%".Split("`n") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
Sitecore9 XP0 環境での xconnect用のサーバー証明書とクライアント証明書を作成するユーティリティースクリプト | |
参考URL: https://gist.github.com/Jaykul/b6c366c0e580f6350e0aaef55036903c | |
https://docs.microsoft.com/en-us/powershell/module/pkiclient/new-selfsignedcertificate?view=win10-ps | |
$RootName はルート証明書の名前 | |
$Subject はSSL用のサーバーやクライアント証明書のサブジェクト(CN) 、サブジェクト代替名(DNS) で使用します。 | |
サーバー証明書の場合は、サイトの名前(xp0.connectなど),クライアント証明書の場合は xp0.connect_client などを指定 | |
$NotAfter は有効期限 | |
$OutPutPath は証明書のpfx ファイルの作成先 | |
#> |