Blog / Windows

BDD 2007: Can’t connect to the deployment share

January 29, 2008

Error message: 

A connection to the deployment share (\\server\deployment_share) could not be made. The deployment will not proceed.

I ran into this problem this morning when trying to load Windows XP on a new computer using Business Desktop Deployment and Windows Deployment Services. It turned out that the reason for this is because my WinPE boot image didn’t have the network drivers for the new computer (when you type in ipconfig /all in the …

Exchange 2007: Mapi session exceeded the maximum of 32 objects of type “session”

January 13, 2008

Error Message:

Mapi session “/o=Organization/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=JohnSmith” exceeded the maximum of 32 objects of type “session”.

Source: MSExchangeIS

Event ID: 9646
On the client side, the user is unable to connect to Microsoft Exchange or getting this error:

Unable to open your default e-mail folders. The Microsoft Exchange Server computer is not available. Either there are network problems or the Microsoft Exchange Server is down for maintenance.

This usually happens when the user loses …

Useful PowerShell Scripts

January 2, 2008

Below are some simple PowerShell scripts that I find pretty useful in Windows administration:

Note: For the scripts that connect to a remote machine, you will need to run PowerShell as a user with Administrator privileges to that machine.

Aliases:

  • Gwmi = Get-WmiObject
  • fl = Format-List
  • ft = Fomat-Table
  • -Comp = -ComputerName

Get a list of installed applications for a specified machine (32-bit OS only).

Gwmi Win32_Product -Comp computer_name | Sort name | ft name, …
Newer