Thursday, May 10, 2012

Windows 2008 Server Evaluation Extend Period

How To Extend Windows 2008 Evaluation


Based on Knowledge Based, we can extend Windows 2008 evalution for testing purposes.


"Evaluating Windows Server 2008 software does not require product activation. Any edition of Windows Server 2008 may be installed without activation, and it may be evaluated for 60 days. Additionally, the 60-day evaluation period may be reset (re-armed) three times. This action extends the original 60-day evaluation period by up to 180 days for a total possible evaluation time of 240 days.
Note In the Windows Server 2008 Evaluation DVD package, there is a 120-day initial evaluation period. You can extend the evaluation period to 240 days. To extend the initial evaluation and testing period, follow the steps in this Microsoft Knowledge Base article."

Knowledged Based Article also explain step by step running activation script in the system.

When the initial 60-day evaluation period nears its end, you can run the Slmgr.vbs script to reset the evaluation period. To do this, follow these steps:
  1. Click Start, and then click Command Prompt.
  2. Type slmgr.vbs -dli, and then press ENTER to check the current status of your evaluation period.
  3. To reset the evaluation period, type slmgr.vbs –rearm, and then press ENTER.
  4. Restart the computer.
    This resets the evaluation period to 60 days.

Unfortunately, the KB article APPLIES TO section only lists the following versions.

Windows Server 2008 Enterprise
Windows Server 2008 Standard
Windows Web Server 2008
Windows Server 2008 Datacenter
Windows Server 2008 Datacenter without Hyper-V
Windows Server 2008 Enterprise without Hyper-V
Windows Server 2008 for Itanium-Based Systems
Windows Server 2008 Standard without Hyper-V






Login and Password in Vista Without Join Domain

The Welcome Screen is enabled by default and is shown at startup, where one can choose one of the available user-accounts (Just like in WinXP). The old classic logon screen is no longer available.
Secure login screen with CTRL + ALT + DEL before login
  1. Press the Start-button and run this command:
    control userpasswords2
  2. Change to the Advanced-tab and enable Require users to press CTRL+ALT+DEL

    This change should match the following DWORD registry setting:
    [HKEY_LOCAL_MACHINE \SOFTWARE \Microsoft \Windows NT \CurrentVersion \Winlogon]
    DisableCAD = 0
    This change should also match the following Local Security Policy (secpol.msc) -> Local Policies -> Security Options -> "Interactive logon: Do not require CTRL+ALT+DEL".
Note after pressing CTRL + ALT + DEL then the normal Welcome Screen will show with all the pretty user account icons.
Only display the user name and password prompt at login
  1. Open Control Panel and select System and Maintenance
  2. Select Administrative Tools and double-click Local Security Policy (secpol.msc)
  3. Expand Local Policies to Security Options
  4. Enable Interactive logon: Do not display last user name

    This change should match the following DWORD registry setting:
    [HKEY_LOCAL_MACHINE \Software \Microsoft \Windows \CurrentVersion \Policies \System]
    DontDisplayLastUserName = 1
Now it will only display the input fields for username and password, and it will no longer display all the available accounts with their user names and icons.
Hide a single user account from the Welcome Screen
By adding the username of the account to a special list in the registry, then it will no longer appear on the Welcome Screen. Just create DWORD registry value at the following location:
[HKEY_LOCAL_MACHINE \SOFTWARE \Microsoft \Windows NT \CurrentVersion \Winlogon \SpecialAccounts \UserList]
NameOfTheUser = 0 (1 = Show, 0 = Hide)

More Info MS KB942956
Note in Vista the Administrator account is disabled by default and when activated, then it will be displayed on the Welcome Screen automatically. More Info MS KB 926183
Customize the picture shown on the Welcome screen
To change the picture shown on the logon screen for a user:
  1. Open Control Panel and select User Accounts-
  2. Click Change Your Picture and select the picture you want.
Note the available user account pictures are located in the following directory:
C:\ProgramData\Microsoft\User Account Pictures\Default Pictures
Note the default user account picture is located here (Can be replaced with another 128x128 pixel bmp image):
C:\ProgramData\Microsoft\User Account Pictures\user.bmp
C:\ProgramData\Microsoft\User Account Pictures\guest.bmp
Note the picture currently selected by the user is located here:
C:\Users\\AppData\Local\Temp\.tmp.bmp
Prevent users from changing their logon picture
This can be useful is wanting all users to use the company logo as user logon picture.
  1. Start and Run...
    gpedit.msc
  2. Expand to Local Computer Policy -> Computer Configuration -> Administrative Templates -> Control Panel -> User Accounts
  3. Double-click Apply the default user logon picture to all users and change to Enabled

    This change should match the following DWORD registry setting:
    [HKEY_LOCAL_MACHINE \SOFTWARE \Microsoft \Windows \CurrentVersion \Policies \Explorer]
    UseDefaultTile = 1
Note the picture shown on the Start-menu will be replaced with an empty frame, when enabling this policy.

Note to change the default picture, just overwrite this bitmap file with another picture-file (128x128 pixel bmp image). If this bitmap-file doesn't exist then it will show an empty frame on the Welcome Screen.
C:\ProgramData\Microsoft\User Account Pictures\user.bmp
Disable the Welcome Screen by enabling automatic login
Automatic Login can be enabled, which will bypass the need to logon (turns off the Welcome Screen). This is done with the following steps:
  1. Run this this command to open the advanced user management:
    control userpasswords2
  2. Uncheck "Users must enter a username and password to use this computer" and provide the username and password for the account to use by default.
Credits Rob Farley