calitech
asked on
easier way to renew self certificate in exchange 2007
Is there another way besides using the commands to renew a self signed cert in exchange 2007?
Since you've posted in the SBS zone as well, is this an SBS server? If so, what version?
ASKER
yes, 2008
ASKER
Thanks Morasiva but I was looking for a different way than typing the comands.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
I don't know of a way without commands but it only takes two to accomplish the renewal:
Get-ExchangeCertificate |fl
Copy thumbprint of cert to be renewed then
Get-ExchangeCertificate -Thumbprint PasteCopiedThumprint | New-ExchangeCertificate
That will renew the cert for an additional year.
DB
Get-ExchangeCertificate |fl
Copy thumbprint of cert to be renewed then
Get-ExchangeCertificate -Thumbprint PasteCopiedThumprint | New-ExchangeCertificate
That will renew the cert for an additional year.
DB
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
I couldn't renew it so I just removed it and created another self signed cert, then I exported it to the network, and then installed in on my workstation but outlook still is detecting the expired one. I put it in the trusted root folder.
ASKER
I restarted the server and then tried to import the cert in the trusted root, enterprise trust, and trusted publisher and now it works.
ASKER
Thanks