ユーザ用ツール

サイト用ツール


powershell

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
最新のリビジョン両方とも次のリビジョン
powershell [2015/02/21 20:31] nabezopowershell [2018/03/04 12:22] – [Office365の管理] nabezo
行 1: 行 1:
 +====== powershell ======
 +  function(){
 +  }
 +
 +  for(){
 +  }
 +
 +
 +
 ====== Office365の管理 ====== ====== Office365の管理 ======
 http://news.mynavi.jp/series/365/009/ http://news.mynavi.jp/series/365/009/
行 18: 行 27:
 ユーザーのアカウントのプライマリ電子メール アドレスの変更 ユーザーのアカウントのプライマリ電子メール アドレスの変更
 https://msdn.microsoft.com/ja-jp/library/dd251224%28v=exchsrvcs.149%29.aspx https://msdn.microsoft.com/ja-jp/library/dd251224%28v=exchsrvcs.149%29.aspx
 +
 +
 +  Set-ExecutionPolicy RemoteSigned
 +  $UserCredential = Get-Credential
 +  $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
 +  Import-PSSession $Session
 +  
 +  -----------close
 +  Remove-PSSession $Session
 +  -----------
 +
  
 プライマリメールアドレス変更 プライマリメールアドレス変更
行 29: 行 49:
 Windows PowerShell による Azure AD の管理 Windows PowerShell による Azure AD の管理
 https://msdn.microsoft.com/ja-jp/library/azure/jj151815.aspx#bkmk_installmodule https://msdn.microsoft.com/ja-jp/library/azure/jj151815.aspx#bkmk_installmodule
 +
 +  $msolcred = get-credential
 +  connect-msolservice -credential $msolcred
 +  Set-MsolUserPrincipalName -UserPrincipalName User1@contoso.com -NewUserPrincipalName CCole@contoso.com
 +  set-mailbox xxxx -EmailAddresses @{remove="xxxx@contoso.com"
  
 ユーザID(PrincipalName)の変更 ユーザID(PrincipalName)の変更
     Set-MsolUserPrincipalName -UserPrincipalName User1@contoso.com -NewUserPrincipalName CCole@contoso.com     Set-MsolUserPrincipalName -UserPrincipalName User1@contoso.com -NewUserPrincipalName CCole@contoso.com
 +
 +
 +====== ファイルの読み書き ======
 +  #ファイル一覧
 +  Get-ChildItem c:¥  -Recurce -Name -Include *.txt
 +  
 +  #ファイルの読み込み
 +  $filepath = "datafile"
 +  $contents = Get-Content $filepath
 +
 +  #ファイルの書き込み
 +  Set-Content -Path "$filepath.swap" -Value $buf
  
  
powershell.txt · 最終更新: 2019/06/30 12:22 by 127.0.0.1