I’ve had this problem on our citrix servers, and rdp sessions. All of a sudden the server name would be the default to log into instead of the domain name. This was frustrating our users, who were used to logging in just with their username and password, they never worried about the log on to box. So I found this fix after some research.

1. Open regedit

2. Navigate to My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon

Change the key DefaultDomainName to your default domain, and that’s it. Try logging in now.

Here’s the command to view what role or roles each domain controller in your active directory domain has.

netdom query fsmo

I’m not going to do a write up on how to change these roles, since Microsoft has an excellent article that talks about it already.

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

Some of you may have computer labs, or have a network at home may use VMware Server (the free one, not ESX). So I’ve been trying to rack my brains into how to backup these machines at night. Now there are some scripts out there that minimize the downtime to one minute, but they complicated and sometimes don’t work, but if you want to try go to the vmware communities. There is also backup software for VMware ESX like vranger,  and eXpress but these tools are expensive and I’m not sure if they work with VMWare Server. So I created my own script that will suspend the machine for a few minutes copy all the files to another directory and turn the machine back on. It does take a few minutes, but the machines I have are not critical that they must be up every second of the day. If you have machines that are this critical you’ll need to look into one of the above mentioned backup tools.

1. This will suspend the machine (you will need to point to the .vmx file)

VMrun command is located at c:\program files\vmware\vmware vix if you installed the typical installation of vmware server.

vmrun suspend “E:\VMware\Netexceed DC1 (Win23k)\Windows Server 2003 Standard Edition.vmx”

2. While the machine is suspended copy all the files

3. This will turn the machine back on

vmrun start “E:\VMware\Netexceed DC1 (Win23k)\Windows Server 2003 Standard Edition.vmx”

This is a copy of my actual backup batch file. The batch file below does the following. Basically all my vm’s are placed in d:\backups\Virtual Machine Backups. I have a directory for each virtual machine. In this case I have Netexceed dc1 folder. This batch file deletes the directory, and recreates it. It then suspends the machine, copies the files, and turns the machine back one. I then later on come and backup all the files in the virtual machine backups folder with another software (like Syncback) later.

@echo off
echo Starting Server Core backup of Virtual machines
echo ————————————————
echo.
echo.
echo Cleaning current backups…
d:
cd “D:\backups\Virtual Machine Backups”
RD “Netexceed DC1″ /S /Q
RD “Backup Server” /S /Q
RD “Netexceed Exchange x64″ /S /Q
MD “Netexceed DC1″
MD “Backup Server”
MD “Netexceed Exchange x64″
c:
echo.
echo.
echo Suspending domain controller for snapshot backup….
echo.
cd c:\program files\vmware\vmware vix
vmrun suspend “E:\VMware\Netexceed DC1 (Win23k)\Windows Server 2003 Standard Edition.vmx”
echo.
echo Suspended domain controller, copying files for backup…
echo.
xcopy “E:\VMware\Netexceed DC1 (Win23k)” “D:\backups\Virtual Machine Backups\Netexceed DC1″ /y
echo.
echo Backup completed, turning on domain controller….
echo.
vmrun start “E:\VMware\Netexceed DC1 (Win23k)\Windows Server 2003 Standard Edition.vmx”
echo.
echo Backup of Domain Controller completed successfully
echo.

I have to say you gotta someitmes hate adobe. The new version of Adobe photoshop cs3 won’t allow you to install it’s version on Windows server 2003, but after some reasearch I found a way. I don’t deserve the credit the credit goes to several users who posted on adobe’s forum but the posting got deleted (I found a cached version though). Here what you do.

1. Look for file called “AdobePhotoshop10en_US_volume.proxy.xml” or “AdobePhotoshop10en.xml” (search for it).

2. Open it with notepad, scroll to the bottom, and change string starting with
{“OS… (I just deleted the OS string and replaced it with the bottom string)
to
{“OS”:{“Macintosh”:{“Require”:[{"Version":"10.4.8"}],”Exclude”:[{"Version":"10.4.8"}]},”Windows”:{“XP”:{“Exclude”:true},”Server2003″:{“Exclude”:true}}

3. Run the installation and everything should work smooth.

Hope it works for you, it did for me.

 

December 2009
M T W T F S S
« Jul    
 123456
78910111213
14151617181920
21222324252627
28293031