Event Viewer ID 1035 Inbound authentication failed with
error UnexpectedExchangeAuthBlob for the Receive connector
只能收不能寄到別的主機
時間跑掉了,調回來就好了
2014年11月15日 星期六
2014年9月1日 星期一
OWA界面默认筛选器无法筛选关键字
C:\Program Files\Microsoft\Exchange Server\V14\Scripts (Exchange 2010)
.\ResetSearchIndex.ps1 –force 15F
.\ResetSearchIndex.ps1 –force 16D
.\ResetSearchIndex.ps1 –force 15F
.\ResetSearchIndex.ps1 –force 16D
2014年3月31日 星期一
將連結的信箱轉換為使用者信箱。
在執行這個命令之後,您必須從信箱中移除 FullAccess, ExternalAccount 權限。 |
Set-User -Identity kweku@fabrikam.com -LinkedMasterAccount $null
http://technet.microsoft.com/zh-tw/library/bb201694(v=exchg.141).aspx
2014年1月13日 星期一
啟用或停用信箱稽核記錄
Set-Mailbox -Identity "Ben Smith" -AuditEnabled $true
Set-Mailbox -Identity "Ben Smith" -AuditEnabled $false
啟用信箱的信箱稽核記錄時,系統僅會記錄信箱稽核記錄設定中所指定之系統管理員、代理人和擁有者的行為。
這個範例指定會為 Ben Smith 信箱記錄委派使用者執行的SendAs
或SendOnBehalf
動作。
這個範例指定會為 Ben Smith 的信箱記錄系統管理員執行的Set-Mailbox -Identity "Ben Smith" -AuditDelegate SendAs,SendOnBehalf -AuditEnabled $trueMessageBind
和FolderBind
動作。
這個範例指定將會為 Ben Smith 信箱記錄信箱擁有者執行的Set-Mailbox -Identity "Ben Smith" -AuditAdmin MessageBind,FolderBind -AuditEnabled $trueHardDelete
動作。
Set-Mailbox -Identity "Ben Smith" -AuditOwner HardDelete -AuditEnabled $true
2014年1月1日 星期三
WSUS Script to delete duplicate SID created by Disk Imaging / Disk Cloning
WSUS: Script to delete duplicate SID created by Disk Imaging / Disk Cloning
You might notice that some computers are appearing
multiple times in WSUSAdmin - Computers and some of them disappear very often.
This is due to duplicate SUS client IDs. Take a look at this script which
deletes duplicate SUS client IDs found on a computer. These IDs are often found
on computers where the operating system was installed using an image-based
setup.
Script Code
============================================
@echo
off
Echo Save the batch file "AU_Clean_SID.cmd". This batch file will do the following:
Echo 1. Stops the wuauserv service
Echo 2. Deletes the AccountDomainSid registry key (if it exists)
Echo 3. Deletes the PingID registry key (if it exists)
Echo 4. Deletes the SusClientId registry key (if it exists)
Echo 5. Restarts the wuauserv service
Echo 6. Resets the Authorization Cookie
Echo 7. More information on http://msmvps.com/Athif
Pause
@echo on
net stop wuauserv
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
net start wuauserv
wuauclt /resetauthorization /detectnow
Pause
Echo Save the batch file "AU_Clean_SID.cmd". This batch file will do the following:
Echo 1. Stops the wuauserv service
Echo 2. Deletes the AccountDomainSid registry key (if it exists)
Echo 3. Deletes the PingID registry key (if it exists)
Echo 4. Deletes the SusClientId registry key (if it exists)
Echo 5. Restarts the wuauserv service
Echo 6. Resets the Authorization Cookie
Echo 7. More information on http://msmvps.com/Athif
Pause
@echo on
net stop wuauserv
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
net start wuauserv
wuauclt /resetauthorization /detectnow
Pause
============================================
SUS client ID will be generated at next detection.
Delete Duplicate SUS Client IDs
http://www.microsoft.com/technet/scriptcenter/csc/scripts/software/update/cscsw027.mspx
訂閱:
文章 (Atom)