Convert the csr file afterwards using the certutil command For example, if the csr is named NewCertificateRequest.req and store in C:\temp, the command is this: certutil -encode test.req test.csr
Category Archives: Exchange 2010
Generate UC Certificate
When generating a UC Certificate via the snap in i get this from the MMC:
Error: “Certificate Request Processor The request contains no certificate template information. 0x80094801 (-2146875391) Denied by Policy Module 0x80094801 the request does not contain a certificate template extension or the Certificate Template request attribute”
Microsoft’s resolution: Generate the request some other way. yeah ok
J’s solution: certreq -submit -attrib “CertificateTemplate: WebServer” WebServerCertReq.txt
Exchange stops working due to diskspace
- Open the following file by using Notepad:
C:\Program Files\Microsoft\Exchange Server\Bin\EdgeTransport.exe.config.
- Modify the following line in the
<appSettings>
section:<add key="QueueDatabasePath" value="<LocalPath>" />
For example, to create a new location for your transaction logs at the location “C:\Queue\QueueDB”, modify the QueueDatabasePath parameter as follows:
<add key="QueueDatabasePath" value="C:\Queue\QueueDB" />
- Save and close the EdgeTransport.exe.config file.
- Restart the Microsoft Exchange Transport service.
- Verify that the new Mail.que and Trn.chk files are created at the new location.
- Remove the unused Mail.que and Trn.chk files from the original location.
Exchange OAB Issues
Exchange 10 server was deployed, this organisation was not using Address List Segregation.
Despite this, I cannot get any items to display in the Global Address List in Outlook – however the list is fine in OWA.
Some relevant attributes in ADSI:
CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=mail,DC=local
addressBookRoots: CN=All Address Lists,CN=Address Lists Container,CN=mail,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=mail,DC=local
globalAddressList: CN=Default Global Address List,CN=All Global Address Lists,CN=Address Lists Container,CN=mail,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=mail,DC=local
CN=Default Global Address List,CN=All Global Address Lists,CN=Address Lists Container,CN=mail,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=mail,DC=local
Permissions:
Make sure all users can read list and there are no user Denys.
PowerShell to Remove disabled users from Offline Address Book
1) Open Exchange Powershell
2) Get-Mailbox -ResultSize unlimited |Where{($_.UserAccountControl -like “AccountDisa
bled*”)} | set-mailbox -HiddenFromAddressListsEnabled $true
3) Update Offline Address Book