Jun 30
The “New mail” notification that Exchange uses operates over a dynamically assigned UDP port that the Outlook client selects when it first connects to the Exchange server. If you need to lock down this port to enable notification through a firewall, you need to make a client-side registry change (this setting is supported only in Outlook 2003).
To do so, create the new DWORD value HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\RPC\FixedUDPPort and set it to the port that the client will listen on for mail notifications.
Jun 29
To fix this error, try:
Click start-run type services.msc then press enter
Look for the Automatic Updates Service, right click it and choose to stop
Click start->run type %windir%\SoftwareDistribution then press enter
Read the rest of this entry »
Jun 29
When you try to change the User Account properties via the User Accounts Control Panel, you may receive this error:
Automation server can’t create object
Read the rest of this entry »
Jun 17
To remove the domain drop-down list from the logon screen and force users to use their full user principal name (UPN), perform these steps:
1. Start the registry editor (regedit.exe).
2. Navigate to the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon registry subkey.
3. From the Edit menu, select New, DWORD value.
4. Enter a name of NoDomainUI and press Enter.
5. Double-click the new value and set it to 1. Click OK.
6. Reboot the machine.
Read the rest of this entry »
Jun 17
Yes, the same “Recover deleted items” option that’s available for a user mailbox is available for a public folder. However, unlike a mailbox, when you delete an item from a public folder, the item doesn’t go to a “Deleted items” folder. Instead, it’s simply hidden (by setting the PR_DELETED_ON property) and isn’t actually deleted until the “Deleted item retention” period on the public folder store has elapsed. You set the “Deleted item retention” option on public folders by selecting the public folder store in Exchange System Manager (ESM) and selecting Properties from the File menu. Set the “Keep deleted items for (days)” value to the number of days you want to save the contents of the “Deleted items” folder. Remember that if the public folder has replicas, you need to set the recovery time on each public store on each server. To recover an item, you must have Editor permissions on the folder (i.e., full Read, Write, and Delete permissions). Select the public folder from which the item was deleted and select “Recovery Deleted Items” from the Tools menu of the Microsoft Office Outlook client.
Jun 17
As part of the European Union (EU) and Microsoft antitrust settlement, Microsoft had to create versions of Windows XP Professional Edition and Windows XP Home Edition that don’t include Windows Media Player (WMP). These versions are called XP Professional Edition N and XP Home Edition N and are available only in Europe.
Jun 17
If you have Microsoft IIS with SMTP installed on a server, you can use the following code to send a basic email message from within a script:
Set objMessage = CreateObject(”CDO.Message”)
objMessage.Subject = “Subject”
objMessage.Sender = “ali@alibutt.com”
objMessage.To = “you@yourself.com”
objMessage.TextBody = “test mail”
objMessage.Send
Recent Comments