Oct 23, 2010

How to uninstall MS Office 2011 for Mac?

Unlike with Office 2008 where you have to use a special Uninstall application, it is possible to uninstall a new MS Office just draging it to Trashcan.

Added later:
looks like it will not remove all stuff installed before: see here for the list of files you have to delete manually.

Aug 13, 2010

Windows Server 2003 Error when trying to login via RDP: The RPC server is unavailable.

Got it today (Friday 13, huh!) after scheduled patches installation and restart.
Solution - connect to the box via remote registry and create the following registry entry:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server
IgnoreRegUserConfigErrors = Dword:1

Jul 30, 2010

Devotion to Duty

Happy Sysadmin's day!



by xkcd.com

Jul 19, 2010

How to create a "/dev/null"-like stub e-mail address in MS Exchange

Via Active Directory, create a mail enabled distribution group with no members and assign it donotreply@somewhere.com e-mail address (and add any other e-mail addresses as aliases).

May 24, 2010

May 12, 2010

Windows: Delete a file with dot at the end of file name (c:\test\file.)

There are two methods do delete such files. Unfortunately, Windows can't do that and even chkdsk is not able to resolve the issue.

First method: del "\\?\c:\test\file." - doesn't works for me, still getting a message mentioned "file can't be found" or something like that.

Second: Use Unlocker - works just great!

Exchange 2003 SP2: Resolve error 1023

You can try a very useful piece of software for that - MFCMAPI
Download it: http://mfcmapi.codeplex.com/

Apr 26, 2010

BES: How to separate company's and personal mailboxes on Blackberry.

By default, all mails for BES mailbox go to Messages folder. If you have an additional mailbox (like gmail or something else), you probably will be confused, because all messages from this additional mailbox go to Messages folder too. To separate it (create another separate folder for BES mailbox), we have to update a database and resend service books to a device.

BBDBUpdate.exe -n localhost\BLACKBERRY -db BESMgmt -input EnableBESOnlyMessageApplication.sql

Apr 19, 2010

Create tar.gz on Windows box

I've tried to use GnuWin package, but got an error while packing a file with very long filename, so I have to find something else. Fortunately, I found that free 7Zip can do that without errors.

You need to download a free command line version (see URL in the header).
7za a -r -ttar -so dummy [what to archive] | 7za a -tgzip -si [archivename].tar.gz

Apr 14, 2010

How to run x64 code under ESX on Dell OptiPlex 755

If you're getting the "0xc000035a" error when trying to install a x64 guest OS under VMWare ESX(i), you can try to to set Trusted Execution (under "Performance" settings in the BIOS) to OFF.

Mar 29, 2010

Jan 22, 2010

Make Windows 7 map your network drives properly

We're use small vbs file to map network drives when user logging on. Windows System Log shows that script works ok under Windows 7, but network drives doesn't mapped properly. Finally I've found that Registry trick below resolve this.

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

EnableLinkedConnections = 1 (DWord)