Archive

Archive for August, 2012

Quickie: How to connect to projector over the network

August 27th, 2012 No comments

Once upon the time I was at one campus and I wanted to do presentation. When I they gave me IP address of projector I wanted to use, I started to wonder how to connect to it 🙂 Now I know, Windows 7 has utility to do so. It’s called netproj.exe. You run it, enter IP/host name, password and you are connected. Really nice to know 🙂

Categories: Windows Tags: , , ,

Quickie: New application AD Replication Status Tool

August 24th, 2012 No comments

Today Microsoft released great utility to check health of Active Directory Replication in your environment.

More information about utility is HERE.

I tested it and it’s nice tool to check vitality. You don’t have to use command line utilities.

Just check it and you’ll love it 🙂

Exchange 2010 is still looking for Demoted Domain Controller

August 23rd, 2012 No comments

When I was checking events today at one of our customers I mentioned one weird event. It was:

Event 2070

Process MSExchangeMailboxReplication.exe () (PID=1388).  Exchange Active Directory Provider lost contact with domain controller OLD_DC_NAME.  Error was 0x51 (ServerDown) (Active directory response: The LDAP server is unavailable.).  Exchange Active Directory Provider will attempt to reconnect with this domain controller when it is reachable. 

Read more…

Quickie: Remove data in AD after unsuccessful domain controller demotion

August 23rd, 2012 No comments

Today my ex-colleague called me that Windows 2000 Active Directory domain, he is taking care of, is not fully functional. He mentioned that “primary” domain controller is dead and now domain has some problems.

I had to seize all FSMO roles to live Domain Controller using ntdsutils as mentioned at this Microsoft article:

http://support.microsoft.com/kb/255504

I manually deleted dead domain controller’s information from Active Directory using following Microsoft article:

http://support.microsoft.com/kb/216498

After checking events I found out that there was also Certification Authority on dead domain controller and I needed to clean up all Enterprise Domain Certification Autorhority information from Active Directory Domain using following Microsoft article:

http://support.microsoft.com/kb/555151

PS: Don’t forget to put your account into all “administrative” groups: Domain Admins, Enterprise Admins and Schem Admins.

Quickie: List Copy Status of Storage Group

August 22nd, 2012 No comments

We have Exchange 2007 environment which contains 6 Failover Exchange clusters and each with 24 mailbox databases (total 144 mailbox databases). When there is a problem with replication of databases we needed to click every Failover cluster and check Copy Status of databases. To get rid of this hassle I wrote little script which lists all databases which Copy Status is not “Healthy”:

Get-MailboxServer | % { Get-StorageGroupCopyStatus -Server $_.Identity | ? {$_.SummaryCopyStatus -NotLike “Healthy” } }

For Exchange 2010 it would change little bit to:

Get-MailboxServer | % { Get-MailboxDatabaseCopyStatus -Server $_.Identity | ? {$_.Status -NotLike “Healthy” } }

Now I’m ready to check in couple of seconds the health of databases 🙂

Exchange 2007 problem

August 22nd, 2012 No comments

Today one of our biggest customer with the biggest Exchange environment called with weird problem. Customer’s exchange environment is scalled for 60k users in future.

E-mail from outside to inside were going through. So people could receive mails from Internet. When they tried to send an e-mail following appeared:

  • When user sent e-mail from OWA, all e-mail messages stayed as Draft folder
  • When user sent e-mail from Outlook, all e-mail message were at Sent Items, but no mails were delivered

Read more…

Categories: Exchange Tags: , , , , , , ,

It’s driving me crazy

August 22nd, 2012 1 comment

Today again I was pissed off from Windows Updates. I installed Windows 2008 R2 server and I started to download and install all Windows updates. I didn’t watch it, because, as always, I trusted it. But when I looked at it after couple minutes I found out following screen:

 

Internet Explorer installation under Windows Update window

Internet Explorer installation under Windows Update window

 

Windows Updates was installed IE 9.0 and window of IE 9.0 installation was under Windows Updates window. So I thought my computer is working as hard as it can and it was hiding windows from me to get some rest 🙂 When I clicked on hidden window I needed to confirm the installation:

IE 9.0 hidden confirmation window

IE 9.0 hidden confirmation window

This was not the first (but I hope it was last) time Windows Updates did it to me. 🙂

Customized ESXi images by hardware vendors

August 20th, 2012 No comments

When you install ESXi server on brand made servers (IBM, HP, DELL,…) you should use customized ESXi ISO images prepared by vendors:

I hope this will help someone.

 

 

Categories: VMWare Tags: , , , , , , , ,

Unable to initialize the Information Store service

August 16th, 2012 No comments

One Exchange 2010 server didn’t mount databases after each reboot. When I looked to Event viewer I saw following events:

The Microsoft Exchange Information Store service terminated with service-specific error %%-2137221213

The Microsoft Exchange Information Store service terminated with service-specific error %%-2137221213

Read more…

No Client Access server running Exchange 2010 or a later version were found in site…

August 14th, 2012 3 comments

One of our customer has Exchange working Exchange 2010 environment. Customer wanted to create one exchange mailbox server in other physical location. Customer would use this new mailbox server to host only archive databases. So I have installed new mailbox server in separate physical location (in separate AD site), created couple databases and configured users to use this databases as archive.

Read more…