Monday, June 29, 2009

Managing devices on Server 2008 Core Edition

Windows Server 2008 Core Edition doesn't have any interfaces to speak of locally, so how do you manage hardware on the server? It's possible and easily done on the Core installation.

Like many other configurations in Windows, you need to enable firewall access. You can turn off the firewall for this task.

The next step is to enable access to the universal plug and play (UPnP) driver. You need group policy access to follow this step, so this can either be a domain-based group policy setting, or you can do it locally. My previous tip outlines accessing the group policy remotely.

The UPnP driver is located in the group policy at Computer Configuration | Administrative Templates | System | Device Installation. Figure A shows this value being configured to an enabled state.

Windows Server 2008, managed server

Once remote administration and UPnP is enabled in the local firewall profile, the server's hardware can be remotely managed with device manager. You can do this within the Computer Management snap-in by right-clicking the root of the tree and selecting Connect To Another Computer to connect to the Windows Core server.

Browse to the Device Manager section, and you are viewing the Core server's hardware inventory. Figure B shows the remote device manager.

remote device manager, Server 2008

The remote device manager does not allow corrections to the server, as it is read-only. For most situations using Windows Server 2008 Core Edition, the driver update could be performed by a running executable or command-line installation of the driver. Further, most situations using Core installation would not be dealing with a complex hardware inventory, as their placement will generally be purpose-built.

Source

Monday, June 22, 2009

How to Configure the VPN Server?

To continue to configure the VPN server as required, follow these steps.

How to Configure the Remote Access Server as a Router

For the remote access server to forward traffic properly inside your network, you must configure it as a router with either static routes or routing protocols, so that all of the locations in the intranet are reachable from the remote access server.

To configure the server as a router:

1. Click Start, point to Administrative Tools, and then click Routing and Remote Access.
2. Right-click the server name, and then click Properties.
3. Click the General tab, and then click to select Router under Enable this computer as a.
4. Click LAN and demand-dial routing, and then click OK to close the Properties dialog box.

Source: support.microsoft.com/kb/323441

Monday, June 15, 2009

Small Business Server 2003 Defaults

Maintaining a fully fledged IT support services can extremely be a daunting task for many small business owners Poor IT management can affect any size of business especially when your business operations hinge on network availability. Without the availability of proper technical support resources, small businesses have a high risk of failure.

In a default Small Business Server 2003 installation, groups and user assignments are setup in “defaults” mode, which can cause catastrophic issues if handled incorrectly. The best method to deal with this is to change all of the default groups and assignments and start with your own customized groups and security.

By default, Small Business Server 2003 is setup with a few groups for security based on a small business environment. The administrator, by default, is made a member of the domain power users security group. The domain power users security group is nested inside another group called SBS Remote Operators. SBS Remote Operators are defined by local and domain group policy to deny logon locally. Try to log in to the console, and you will be informed that your administrator has denied your access to log in interactively to the server.

The solution is to remove the administrator from the SBS remote operators group as well as domain power users groups. The administrator only needs to be in the domain administrators and enterprise administrators for your domain. Second, browse to group policy locally and on domain policy and make sure that deny logon locally is disabled.

Accidentally assigning the administrator to either the domain power users or any remote desktop groups ( SBS Remote Operators and Terminal Server Users) will cause major problems. If the administrator cannot log on locally, then services will not start and reinstallation will be imminent.

By default, the administrator has remote desktop authority, so no further setup is needed.

Source

Tuesday, June 9, 2009

Windows Server 2003 - Mail Server Installation

Have a look at Windows server 2003 mail server installation.

Source: http://www.youtube.com/watch?v=2zP77XWv-Hw

Tuesday, June 2, 2009

How to remove component from Windows Server 2008 R2 server core installation?

The Deployment Image Servicing and Management (DISM) tool can permanently remove components from the file system, which means the role or feature can never be installed on the OS unless you perform a full OS reinstallation. Only remove components if you're sure you'll never need them. Goto the %windir%\servicing\packages folder. Take a note of the component you want to remove (it has a .mum extension) and copy the file name (without the .mum extension) Click to expand. At an elevated command prompt, run the command dism /online /remove-package /packagename:

Note that it's generally not recommended that you remove components, because you can't reverse this operation. This function is there for specific situations, such as trying to run on a flash drive, embedded device, or other system without much disk space.

Source:windowsitpro