真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Exchange/Office365自動(dòng)處理腳本:常用函數(shù)(一)-創(chuàng)新互聯(lián)

創(chuàng)建自定義函數(shù)腳本
1,在C:\Users\當(dāng)前登錄用戶名\Documents\WindowsPowershell下創(chuàng)建名稱為Microsoft.PowerShell_profile.ps1 的文件
2,打開Microsoft.PowerShell_profile.ps1,使用Powershell ISE添加以下函數(shù)

站在用戶的角度思考問題,與客戶深入溝通,找到二連浩特網(wǎng)站設(shè)計(jì)與二連浩特網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、國際域名空間、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋二連浩特地區(qū)。

函數(shù)1:憑據(jù)

function exchangeaccountname
{
$account="exchangeaccountname@genomics.cn" 
$password = ConvertTo-SecureString "Account Password" -asplaintext -force
$cred=new-object -typename System.Management.Automation.PSCredential -argumentlist $account,$password
return $cred
}
function skypeaccountname
{
$account="skypeaccountname@genomics.cn" 
$password = ConvertTo-SecureString "Account Password" -asplaintext -force
$cred=new-object -typename System.Management.Automation.PSCredential -argumentlist $account,$password
return $cred
}
function o365accountname
{
$account="O365accountname@genomics.cn" 
$password = ConvertTo-SecureString "Account Password" -asplaintext -force
$cred=new-object -typename System.Management.Automation.PSCredential -argumentlist $account,$password
return $cred
}

函數(shù)2:連接到Exchange 2010/2013 Server

function connectoExchange
{
$ConnectionUri = "http://cas01.domain.cn/PowerShell/","http://cas02.domain.cn/PowerShell/" #此處將鏈接修改為Exchange Cas
$thisConnectionUri = $ConnectionUri | Get-Random
$cred = exchangeaccountname    #此處使用憑據(jù)函數(shù)
echo $thisConnectionUri
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri $thisConnectionUri -Authentication Kerberos -Credential $cred
Import-PSSession $Session -AllowClobber  
}
}

函數(shù)2:連接到Skype for Business 2015

function localskype
{
<#
.Synopsis
連接到skype for business 2015
#>
$cred= skypeaccountname    #此處使用憑據(jù)函數(shù)
$so = New-PSSessionOption -SkipCACheck:$true -SkipCNCheck:$true -SkipRevocationCheck:$true
$Session = New-PSSession -ConnectionUri "https://sfbfe01.domain.cn/ocspowershell" -Credential $cred -SessionOption $so
Import-PSSession $Session  #此處將鏈接修改為skype前端
}

函數(shù)3:連接到Office365

function O365
{
<#
.Synopsis
連接到Office365
#>
import-module MSonline
#輸入Office365管理員賬號和密碼
$credential = o365accountname #此處使用憑據(jù)函數(shù)
Connect-MsolService -Credential $credential
$exchangeSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -Credential $credential -Authentication "Basic" -AllowRedirection
Import-PSSession $exchangeSession -AllowClobber
}

示例為連接國際版Office365。
如連接21Vianet,使用_ConnectionUri_值:https://partner.outlook.cn/PowerShell
如連接德國Office 365,使用_ConnectionUri_值:https://outlook.office.de/powershell-liveid/

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


文章標(biāo)題:Exchange/Office365自動(dòng)處理腳本:常用函數(shù)(一)-創(chuàng)新互聯(lián)
分享URL:http://weahome.cn/article/gphcs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部