當(dāng)你通過類似Mailto:鏈接發(fā)送郵件,此時郵件客戶端就是MAPI客戶端。如果要找出到這個MAPI客戶端在哪里,這里有個函數(shù)能從注冊表中獲得該信息。
復(fù)制代碼 代碼如下:
functionGet-MAPIClient
{
functionRemove-Argument
{
param
(
$CommandLine
)
$divider=''if ($CommandLine.StartsWith('"'))
{
$divider='"'$CommandLine=$CommandLine.SubString(1)
}
$CommandLine.Split($divider)[0]
}
$path='Registry::HKEY_CLASSES_ROOT\mailto\shell\open\command'# create new object to return values
$returnValue=1|Select-Object-PropertyHasMapiClient,Path,MailTo$returnValue.hasMAPIClient=Test-Path-Path$pathif ($returnValue.hasMAPIClient)
{
$values=Get-ItemProperty-Path$path$returnValue.MailTo=$values.'(default)'$returnValue.Path=Remove-Argument$returnValue.MailToif ((Test-Path-Path$returnValue.Path) -eq$false)
{
$returnValue.hasMAPIClient=$true
}
}
$returnValue
}
Get-MAPIClient
執(zhí)行后的結(jié)果類似:
舉一反三,同樣也可以修改代碼查詢其它類型的默認客戶端。
您可能感興趣的文章:- 使用HTTP api簡單的遠程執(zhí)行PowerShell腳本
- PowerShell打開或關(guān)閉光驅(qū)