2021-08-31から1日間の記事一覧

【PowerShell】Microsoft 365管理 ~ユーザー追加~

ユーザー追加をする時の個人的メモ $UserCredential = Get-Credential Connect-MsolService -Credential $UserCredential Connect-AzureAD -Credential $UserCredential Connect-ExchangeOnline -Credential $UserCredential Get-MsolAccountSku $disabledpl…

【VBA】~番外編~

Dim wslist As Worksheet Dim result, s, e, time, i As Long Dim attached1 As String Dim outlookObj As Outlook.Application Dim mailItemObj As Outlook.mailItem Dim myattachments As Outlook.Attachments Private Declare PtrSafe Sub Sleep Lib "ker…

【PowerShell】Microsoft 365管理 ~DKIM編~

カスタムドメインを取得してExchangeOnlineを運用する際のTips カスタム ドメインで DKIM をメールに使用する方法 - Office 365 | Microsoft Docs 公式の翻訳 New-DkimSigningConfig -DomainName <domain> -Enabled $false #① Get-DkimSigningConfig -Identity <domain> | Fo</domain></domain>…