Posted on December 19th, 2008 by admin
This guide helps you implement Domain Name System (DNS) on the Windows Server® 2008 operating system in a small network. Windows Server 2008 uses DNS to translate computer names to network addresses. An Active Directory® domain controller can act as a DNS server that registers the names and addresses of computers in the domain and then provides the network address of a member computer when the domain controller receives a query with the name of the computer. This guide explains how to set up DNS on a simple network that consists of a single domain.
Posted on November 14th, 2008 by admin
This step-by-step guide provides instructions for modifying a test environment to decommission and remove Active Directory Rights Management Services (AD RMS) within your organization.
Posted on November 14th, 2008 by admin
This step-by-step guide provides the instructions necessary to configure Network Load Balancing (NLB) with Terminal Services for the Windows Server® 2008 operating system. This guide also includes instructions on installing and configuring NLB and setting up a terminal server.
Another one… Network Load Balance its a good practice to use on a corporate network.
Windows Server 2008 Rocks…
Posted on November 14th, 2008 by admin
The Windows Server® 2008 operating system provides a license management system for Terminal Services known as Terminal Services Licensing (TS Licensing). This system allows terminal servers to obtain and manage Terminal Services client access licenses (TS CALs) for devices and users that are connecting to a terminal server. TS Licensing supports terminal servers that run Windows Server 2008 as well as terminal servers running Windows Server® 2003 or Windows® 2000 Server.
Posted on October 26th, 2008 by admin
Recently I bought a XBOX 360 and I wanted to configure it with a Pear to Pear wired connection, because I’ll buy the Wireless Adapter Device later.
So, what I have setup to work together with my Windows Home Server and access all my Digital stuff over there. Example:
Configuration on My Windows HomeServer;
Define IP: 191.168.1.1
Define Mask: 255.255.0.0
Define Gateway; 191.168.1.1
Configuration on XBOX 360:
Define IP: 191.168.1.2
Define Mask: 255.255.0.0
You Have to set this information
Define Gateway: 191.168.1.1 (My Windows Home Server)
It’ll work with no problem and you’ll can access your photos, songs and movies.
But We can’t access the internet, yet… I’ll explain how to do it soon.
Posted on October 6th, 2008 by admin
Hi again, that’s another white page of Microsoft Server 2008 Technology.
Posted on September 18th, 2008 by admin
It’s a great Microsoft white paper about Active Directory Rights Management and You can download It on the link below:
Posted on September 17th, 2008 by admin
I found my friend a great blog website owned by Cleber Marques with some articles (in portuguese) about the MDOP Exam 70-656.
So I decided to post here those articles and if You want further information You can access his site:
www.clebermarques.com
MDOP General Information
MDOP SoftGrid Article
MDOP DaRT Article
MDOP AIS Article
MDOP AGPM Article
MDOP DEM Article
Posted on September 11th, 2008 by admin
Every picture that You insert into your delphi application project makes the executable bigger.
So, If you want minimize that problem with your disabled images of your buttons, You could use the code below:
function ConvertBitmapToGrayscale(const Bitmap: TBitmap): TBitmap;
var
i, j: Integer;
Grayshade, Red, Green, Blue: Byte;
PixelColor: Longint;
begin
with Bitmap do
for i := 0 to Width - 1 do
for j := 0 to Height - 1 do
begin
PixelColor := ColorToRGB(Canvas.Pixels[i, j]);
Red := PixelColor;
Green := PixelColor shr 8;
Blue := PixelColor shr 16;
Grayshade := Round(0.3 * Red + 0.6 * Green + 0.1 * Blue);
Canvas.Pixels[i, j] := RGB(Grayshade, Grayshade, Grayshade);
end;
Result := Bitmap;
end;
Posted on September 5th, 2008 by admin
Below is the knowledge You need do understand to pass in the brand new “Microsoft Desktop Optimization Configuring” Exam 70-656. I’ve got this Information on Microsoft Site and I’ll try to put related sites to help You in that difficult task.
Here We Go:
Configuring Group Policy Objects (GPOs) by Using Advanced Group Policy Management (AGPM)
Planning and Deploying Group Policy 2008
Monitoring Desktops by Using Microsoft Desktop Error Monitoring (DEM)
Microsoft Desktop Error Monitoring TechNet Virtual Labs
Managing Software Inventory by Using the Asset Inventory Service (AIS)
Asset Inventory Service Overview and Step-By-Step Guide
Repairing and Diagnosing Computer Systems by Using the Diagnostics and Recovery Toolset (DaRT)
Download Trial Evaluation
Winternals Quick Start Guide
Configuring Application Virtualization Servers
Microsoft Desktop Optimization Pack SoftGrid Trial Guide
Configuring Application Virtualization Clients
Microsoft Desktop Optimization Pack SoftGrid Trial Guide
Deploying and Managing the Application Virtualization Sequencer
Configuring and Troubleshooting Application Virtualization Sequencer
Microsoft Website about the Exam: http://www.microsoft.com/learning/en/us/exams/70-656.mspx