Dec 9, 2008

CSharp For Programmers Course Suite

Contents:

1.1 Introduction

1.1.1 Course Introduction
1.1.2 Course Prerequisites
1.1.3 Object-oriented Programming
1.1.4 Object-oriented Programming Concepts

1.2 .NET Overview

1.2.1 The .NET Framework
1.2.2 The Common Language Runtime
1.2.3 .NET Framework Class Libraries
1.2.4 Assemblies
1.2.5 .NET Framework Components

2.0 Visual Studio .NET

2.1 Visual Studio .NET Tour

2.1.1 Visual Studio .NET Overview
2.1.2 Launching Visual Studio .NET
2.1.3 Using the Solution Explorer
2.1.4 Using Toolbars
2.1.5 Using the Toolbox
2.1.6 Editing Properties
2.1.7 Editing Code
2.1.8 Getting Help

2.2 Creating Applications

2.2.1 Creating a Project
2.2.2 Compiling and Running Programs
2.2.3 Debugging Programs
2.2.4 Using the Visual Studio Simulator

2.3 Application Types

2.3.1 Application Types
2.3.2 Creating a Windows Application
2.3.3 Creating an ASP.NET Web Application
2.3.4 Application Type Facts

3.0 C# Language

3.1 C# Syntax

3.1.1 C# Overview
3.1.2 Code Format
3.1.3 Basic Program Structure

3.2 Data Types

3.2.1 Value and Reference Types
3.2.2 Reference and Value Type Facts
3.2.3 Value Types
3.2.4 String Variables
3.2.5 Data Type Keywords
3.2.6 Declare Data Types

3.3 Operators and Expressions

3.3.1 C# Operators
3.3.2 Building Expressions
3.3.3 Common C# Operators
3.3.4 Construct Expressions 1
3.3.5 Construct Expressions 2

3.4 Casting

3.4.1 Converting Data Types
3.4.2 Data Conversion Facts
3.4.3 Using the Casting Expression
3.4.4 Convert Data Types
3.4.5 Reference-type Conversions

3.5 Arrays

3.5.1 Defining Arrays
3.5.2 Initializing Arrays
3.5.3 Array Facts
3.5.4 Creating Single-dimensional Arrays
3.5.5 Creating Multi-dimensional Arrays
3.5.6 Create a Single-dimensional Array
3.5.7 Create a Multi-dimensional Array
3.5.8 Jagged Arrays

3.6 Conditional Statements

3.6.1 Conditional Statements
3.6.2 Using If Then
3.6.3 Using Switch
3.6.4 Conditional Statement Facts
3.6.5 Create an If Block
3.6.6 Correct an If Block
3.6.7 Format a Switch Block
3.6.8 Create a Switch Block

3.7 Iteration Structures

3.7.1 Iteration Structures
3.7.2 Using Do While
3.7.3 Using For
3.7.4 Using Foreach
3.7.5 Iteration Statement Facts
3.7.6 Create a Do While Block
3.7.7 Create a For Block
3.7.8 Create a Foreach Block

3.8 XML Documentation

3.8.1 Generating XML Documentation
3.8.2 XML Documentation Facts

4.0 .NET Components

4.1 Windows Controls

4.1.1 Managing Windows Controls
4.1.2 Use the Property Inspector
4.1.3 Set Control Properties
4.1.4 Get and Set Properties

4.2 Events

4.2.1 Defining Event Actions
4.2.2 Handle Events 1
4.2.3 Handle Events 2
4.2.4 Handle Events 3

4.3 Classes and Methods

4.3.1 Calling Methods
4.3.2 Call a Method 1
4.3.3 Call a Method 2

4.4 Manipulating Strings

4.4.1 Strings
4.4.2 Working with Strings
4.4.3 String Facts
4.4.4 The StringBuilder Class
4.4.5 Using the StringBuilder Class
4.4.6 StringBuilder Facts
4.4.7 Use StringBuilder 1
4.4.8 Use StringBuilder 2
4.4.9 Use Escape Sequences
4.4.10 Compare Strings

5.0 Classes and Methods

5.1 Classes and Namespaces

5.1.1 Creating a Class
5.1.2 Creating a Simple Class
5.1.3 Namespaces
5.1.4 Defining a Namespace
5.1.5 Class and Namespace Facts
5.1.6 Create a Namespace and Class

5.2 Methods

5.2.1 Defining a Method
5.2.2 Access Modifiers
5.2.3 Creating Methods
5.2.4 The Main Method
5.2.5 Calling Methods
5.2.6 Passing Parameters
5.2.7 Method Construction
5.2.8 Create a Method 1
5.2.9 Create a Method 2

5.3 Data Members and Properties

5.3.1 Data Members
5.3.2 Creating Data Members
5.3.3 Defining Properties
5.3.4 Using Properties
5.3.5 Data Member and Property Facts
5.3.6 Define a Property
5.3.7 Use Properties

5.4 Method Overloading

5.4.1 Method Overloading
5.4.2 Using Overloaded Methods
5.4.3 Method Overloading Facts
5.4.4 Call an Overloaded Method
5.4.5 Create an Overloaded Method

5.5 Static Members

5.5.1 Static Data Members
5.5.2 Static Methods
5.5.3 Creating Static Members
5.5.4 Static Member Facts
5.5.5 Create Static Members

5.6 Constructors

5.6.1 Constructors
5.6.2 Default Constructor
5.6.3 Creating a Constructor
5.6.4 Overloading Constructors
5.6.5 Constructor Facts
5.6.6 Create a Constructor
5.6.7 Overload a Constructor

6.0 Inheritance

6.1 Inheritance Concepts

6.1.1 Polymorphism and Inheritance
6.1.2 Inheritance Concepts
6.1.3 Inheritance Facts

6.2 Using Inheritance

6.2.1 Basic Syntax
6.2.2 Creating a Derived Class
6.2.3 Using Access Modifiers
6.2.4 Constructors and Inheritance
6.2.5 Inheritance Syntax
6.2.6 Create an Inherited Class

6.3 Advanced Inheritance

6.3.1 Virtual Methods
6.3.2 Creating Virtual Methods
6.3.3 Sealing a Class
6.3.4 Abstract Classes
6.3.5 Creating an Abstract Class
6.3.6 Customizing Inheritance Facts
6.3.7 Define a Virtual Method
6.3.8 Use a Virtual Method
6.3.9 Seal a Class
6.3.10 Create an Abstract Class

7.0 Interfaces

7.1 Interfaces

7.1.1 Interface Concepts
7.1.2 Implementing an Interface
7.1.3 Classes, Abstract Classes, and Interfaces
7.1.4 Classes, Abstract Classes, and Interfaces Comparison
7.1.5 Interface Facts
7.1.6 Define an Interface
7.1.7 Interfaces and Inheritance

8.0 Delegates and Events

8.1 Delegates

8.1.1 Delegates
8.1.2 Creating a Simple Delegate
8.1.3 Creating a Multicast Delegate
8.1.4 Delegate Facts
8.1.5 Using Delegates

8.2 Events

8.2.1 Delegates and Events
8.2.2 Registering Events
8.2.3 Event Facts

9.0 Enumerations and Structures

9.1 Enumerations

9.1.1 Custom Value Types
9.1.2 Enumerations
9.1.3 Creating Enums
9.1.4 Using Enums as Parameter Types
9.1.5 Enum Facts
9.1.6 Create an Enum
9.1.7 Use Built-in Enums
9.1.8 Use Enum Methods

9.2 Structures

9.2.1 Structures
9.2.2 Creating a Struct
9.2.3 Struct Facts
9.2.4 Define a Struct 1
9.2.5 Define a Struct 2

10.0 Exception Handling

10.1 Handling Exceptions

10.1.1 Exception Classes
10.1.2 Handling Exceptions
10.1.3 Built-in Exceptions
10.1.4 Exception Facts
10.1.5 Handle Exceptions 1
10.1.6 Handle Exceptions 2
10.1.7 Handle Exceptions 3

10.2 Custom Exceptions

10.2.1 Throwing Exceptions
10.2.2 Thowing an Exception
10.2.3 Custom Exceptions
10.2.4 Creating Custom Exceptions
10.2.5 Custom Exception Facts
10.2.6 Throw Exceptions
10.2.7 Define a Custom Exception

11.0 Advanced Topics

11.1 Collections

11.1.1 Collections
11.1.2 ArrayLists
11.1.3 Foreach
11.1.4 Creating an ArrayList
11.1.5 ArrayList Facts
11.1.6 Use a Collection
11.1.7 Queue Facts
11.1.8 Stack Facts
11.1.9 Hashtable Facts

11.2 Streaming and I/O

11.2.1 Streams
11.2.2 Streaming Facts
11.2.3 Reading and Writing Text Files
11.2.4 Text Files and Data Sources
11.2.5 Managing Files
11.2.6 System.IO.File Classes
11.2.7 Managing Files and Directories

11.3 Attributes

11.3.1 Reflection and Attributes
11.3.2 Using Intrinsic Attributes
11.3.3 Attribute Facts
11.3.4 Use Attributes

11.4 Operator Overloading

11.4.1 Operator Overloading
11.4.2 Overloading an Operator
11.4.3 Operator Overloading Facts

Winstructor - Google

Winstructor - Google (Eng)

Winstructor Computer Based Training Products.

The Search Engine of Choice used by Millions of People Worldwide. We show you how to use this magnificent search engine to create powerful searches and track down what you are looking for, first time. We show you how to locate certain filetypes, search within websites, find out who is linking to your site, and much, much more.

Winstructor - Google (Eng)

Google contains the following Training Videos:

Introducing Google Basic Searches
Duration: 10:35
In this video we introduce you to the Google Interface and teach you how to maximise your results when you search. We discuss how to use Key Words to target your search, we highlight how search order will affect your results and then we demonstrate using quoted searches to find phrases.

Special Google Searches
Duration: 9:55
Advanced Searches allow you really get specific in finding what you want. We teach you how to use the special search keywords to search within a specific website, and discuss how you can search the web for certain filetypes. Once you master these searches, you'll be the person who can find just about anything on the Web.

The Google Toolbar
Duration: 7:53
The Google Toolbar is a free and small download from Google. We show you how to get it, install it and use it to make your life easier. It even includes a free Pop Up Blocker!

These Google Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126239917/Winstructor_-_Google_SoSISO.rar

Winstructor - Exchange Server 2003

Winstructor - Exchange Server 2003 (Eng)

Winstructor Computer Based Training Products.

Microsoft's Enterprise Email Server, Exchange Server 2003, contains new features, enhancements and is more secure. Our Exchange Videos will not only have you understanding Exchange Server 2003 in no time, but they'll help you pass the Exchange MCSE Exam on your way to earning the MCSE 2003 Messaging Certification.

Winstructor - Exchange Server 2003 (Eng)

Exchange Server 2003 contains the following Training Videos:

Introduction to Exchange Server 2003
Duration: 2:28
In this Video we show Introduce Exchange Server 2003 and discuss the requirements you'll need to satisfy before installing your first server.

Installing Exchange Server 2003
Duration: 12:59
In this Video we show you how to install Exchange Server 2003 on a Windows 2003 Server.

Post Installation Configuration
Duration: 20:32
In this Video we show you how to create a Service Account to manage the Exchange 2003 Services and Use the Delegation of Control Wizard to assign Exchange Permissions to your Senior Administrators, Day-to-Day Administrators and Helpdesk Staff members. We then move on to discuss the steps required to install the Exchange System Management Tools on your local Workstation so you can manage your Exchange Configuration from your desk.

Removing an Exchange Server from an Organization
Duration: 6:06
In this Video we show you how to remove an Exchange 2003 Server from an Exchange Organization. The removal process doesn't always go smoothly, so with that in mind, we also demonstrate how to forcibly remove Exchange in the event something goes wrong.

Cached Exchange Mode
Duration: 4:03
In this Video we show explain the Cached Exchange Mode feature of Outlook 2003. Cached Exchange Mode gives you the advantage of caching a copy of your Exchange Profile and Offline Address Book, so when your Exchange Server is not available, you can keep working.

Internet Mail Wizard
Duration: 4:22
In this Video we show you how to use the Internet Mail Wizard to configure your Exchange 2003 Server to send and receive Internet Mail.

Front End and Back End Servers
Duration: 5:18
In this Video we show you how to configure Front End End Exchange Servers.

Administrative Groups
Duration: 5:29
In this Video we show you how to create Administrative Groups to simplify the management of your Exchange Server 2003 Organization.

Routing Groups
Duration: 3:48
In this Video we show you how to create Routing Groups to manage the Communication between Exchange Servers within your Exchange Server 2003 Organization.

Managing Policies
Duration: 10:20
In this Video we show you how to use Policies to Manage Mailbox, Public Folder and Server Settings.

Managing Address Lists
Duration: 12:22
In this Video we show you how to Create and Manage Address Lists and Offline Address Lists.

Managing Users, Contacts and Groups
Duration: 12:59
In this Video we show you how to Create and Manage Exchange Users, Contacts and Groups.

Public Folders
Duration: 21:04
In this Video we show you how to Create and Manage Exchange Public Folders from the Exchange System Manager, from the Outlook Client and from Outlook Web Access. We talk about Public Folder Security, then we move on to creating new General Purpose Public Folder Trees and finish with a discussion on Replication.

Backup and Restoring Exchange 2003
Duration: 7:54
In this Video we show you how to backup your Exchange Server in Case of Disaster. When the time comes, you'll also need to know how to restore your Exchange Server as well. We show you how!

Monitoring Exchange 2003
Duration: 17:17
In this Video we show you how to proactively Monitor all aspects of your Exchange Server so it runs at maximum performance.

These Exchange Server 2003 Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126230516/Winstructor_-_Exchange_Server_2003_SoSISO.part1.rar
http://rapidshare.com/files/126233687/Winstructor_-_Exchange_Server_2003_SoSISO.part2.rar
http://rapidshare.com/files/126236685/Winstructor_-_Exchange_Server_2003_SoSISO.part3.rar
http://rapidshare.com/files/126237020/Winstructor_-_Exchange_Server_2003_SoSISO.part4.rar

Winstructor - Citrix MetaFrame XP Feature Release 3

Winstructor - Citrix MetaFrame XP Feature Release 3 (Eng)

Winstructor Computer Based Training Products.

Citrix MetaFrame XP is the latest version of the Citrix Metaframe, with Support for Windows Server 2003. In this Series of Videos, we Install, Configure and Manage a Citrix Metaframe Environment. If you are wanting to simply learn more, upgrade your knowledge, or seek Citrix CCA Certification, this section is for you. Citrix Certified Administrators (Citrix CCA) are skilled industry professionals who have demonstrated a thorough knowledge of Citrix MetaFrame XP, Citrix MetaFrame 1.8 for Windows, or Citrix MetaFrame Presentation Server for Unix Operating Systems.

Winstructor - Citrix MetaFrame XP Feature Release 3 (Eng)

Citrix MetaFrame XP with Feature Release 3 contains the following Training Videos:

Installing Citrix Metaframe XP
Duration: 12:13
Installing Citrix Metaframe XP is not an easy task, there are a lot of steps to installing Citrix. We explain every step so you completely understand what you are installing and why you are installing it.

Licensing Citrix Metaframe XP
Duration: 3:01
Licensing Citrix Metaframe XP is simplified with this video. In order to run Citrix, you need to have a valid license. In this video, we discuss not only Citrix Licensing, but licensing your Terminal Server as well.

Administering Citrix Metaframe XP
Duration: 11:44
In this video we take an in depth look at the Citrix Management Console and show you how to Administer your Citrix Metaframe XP Farm.

Load Management
Duration: 5:03
In this video we show you how to configure Citrix Metaframe XP to Load Balance your Applications over multiple Citrix Servers for the best Performance and Availability.

Printing
Duration: 16:01
Printing is one of the most frustrating experiences within a Citrix Environment. We show you how to install, manage and troubleshoot Printers to make your life, much easier.

Publishing Applications
Duration: 20:35
Citrix is really all about Applications. In this video we show you how to Publish Applications to make them available to your users. We discuss publishing applications to the Desktop, ICA File and to the Web. We also discuss Managing your Published Applications and Securing them from Unauthorised Access.

These Citrix MetaFrame XP FR3 Training Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126226901/Winstructor_-_Citrix_MetaFrame_XP_FR3_SoSISO.part1.rar
http://rapidshare.com/files/126227830/Winstructor_-_Citrix_MetaFrame_XP_FR3_SoSISO.part2.rar

Microsoft Official Curriculum (MOC) 6415A

Microsoft Official Curriculum (MOC) 6415A

MOC 6415A Updating Your Network Infrastructure Technology Skills To Windows Server 2008



Introduction
This 3 day instructor-led course provides students with an understanding of Network Infrastructure technology in Windows Server 2008. This course is intended to allow individuals who already have experience with Network Infrastructure technology to upgrade their skills for Windows Server 2008. This course is based on an interim build of Windows Server 2008.

Audience
This course is intended for IT Professionals experienced on the technologies included in Windows Server 2000 and Windows Server 2003, and who hold an MCSE or MCSA certification and/or equivalent knowledge.

At Course Completion
After completing this course, students will be able to:

• Install and configure Windows Server 2008, including using new features and Roles.
• Take advantage of new features in Windows Server 2008, including server and domain isolation, IPv6, and improved DNS functionality.
• Use key functionality and benefits of a Server Core installation, including adding and configuring Roles.
• Manage the new backup infrastructure in Windows Server 2008, including Volume Shadow Copy service, scheduled and manual backups, media, the Universal Disk Format (UDF), and restoring data.
• Describe and use Network Policies and Network Access Protection (NAP) and identify enforcement options.
• Describe and manage Windows Deployment Services, including image capture and management.
• Describe and use new Windows Server Virtualization features to consolidate servers, provide for disaster recovery, and optimize server utilization.
• Use failover clustering and load balancing to maintain a high level of network availability.
• Monitor and optimize network performance using Windows Server 2008's included tools like Windows System Resource Manager.

Prerequisites
Before attending this course, students must have one or more of the following:

• On-the-job experience in planning, implementing, managing, or supporting Microsoft Windows Server 2000 or 2003, including Active Directory and Network Infrastructure
• Working knowledge of networking, for example, TCP/IP and Domain Name System (DNS).
• Designed a Microsoft Windows Server 2003 Active Directory and Network Infrastructure
• Designed Security for a Microsoft Windows Server 2003 Network
• Installed, Configured, and Administered Microsoft Windows 2000, Windows XP Professional, or Microsoft Vista.

Course Outline

Module 1: Configuring Windows Server 2008
This module explains how to install and configure Windows Server 2008.
It also explores using Server Manager to work with roles, features,
and other aspects of server configuration like Automatic Updates.

Module 2: Next Generation Networking
This module explains how to use new and improved networking features in Windows Server 2008,
including server and domain isolation, IPv6, and DNS.

Module 3: Server Core
This module explains how to use key functionality and benefits of a Server Core installation,
including adding and configuring roles.

Home

http://rapidshare.com/files/129115411/MOC_6415A_UYNITSTWS_2008.txt

Winstructor - CiscoWorks 2000

Winstructor - CiscoWorks 2000 (Eng)


Winstructor Computer Based Training Products.

In this series, we cover the installation of CiscoWorks2000 server software. You'll learn how to configure, secure and Integrate CiscoWorks 2000 with other 3rd Party Management Products.

Winstructor - CiscoWorks 2000 (Eng)

CiscoWorks 2000 contains the following Training Videos:

Installing CiscoWorks 2000
Duration: 7:15
In this video we show you how to Install CiscoWorks 2000 and the Resource Management Essentials Products.

Client Access
Duration: 13:43
In this video we show you how to configure Client Access within CiscoWorks 2000. You will learn how to Create, Modify and Delete User Accounts and Configure Alternative Authentication Mechanisms for better Security.

Configuring CiscoWorks 2000
Duration: 13:35
In this video we show you how to configure various CiscoWorks 2000 Administration Options. You will learn how to Backup and Restore the CiscoWorks Database, Add New Devices to CiscoWorks and much more.

Integrating CiscoWorks 2000 with other Applications
Duration: 8:53
In this video we show you how Integrating CiscoWorks with other Applications works. This allows you to launch CiscoWorks from within another Network Management Application such as Tivoli Netview, HP Openview Network Node Manager and more.

Inventory Lists
Duration: 16:49
In this video we show you how Inventory Lists can be created and automatically maintained by CiscoWorks 2000 to ensure that you have up to date information about your Network Devices.

IOS Images
Duration: 11:58
In this video we show you how you can use CiscoWorks 2000 to Manage, Maintain and Upgrade the IOS Images and dsitribute these images to your devices to keep them up to date.

Configuration Management
Duration: 12:09
In this video we show you how you can use the Configuration Management features of CiscoWorks 2000 to Manage the Current Running and Historial Configurations of your managed devices.

Syslog Messages
Duration: 9:55
In this video we show you how you can configure your devices to send their Syslog Messages to CiscoWorks 2000 and how to Manage these messages within CiscoWorks 2000.

These CiscoWorks 2000 Training Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126220984/Winstructor_-_CiscoWorks_2000_SoSISO.part1.rar
http://rapidshare.com/files/126223920/Winstructor_-_CiscoWorks_2000_SoSISO.part2.rar
http://rapidshare.com/files/126224028/Winstructor_-_CiscoWorks_2000_SoSISO.part3.rar

VTC - Introduction To Wireless Administration

VTC - Introduction To Wireless Administration (Eng)

VTC (Virtual Training Company) Introduction To Wireless Administration (Eng)

Wireless Networking is one of the fastest-growing technologies in both consumer and business arenas today. It’s become the primary means of communication for mobile users on the go, and allows us all to watch movies, listen to music, surf the web, and even conduct business from small mobile devices such as cell phones, PDAs, and laptops. This title, by veteran VTC author Bobby Rogers, delivers a solid foundation on these technologies to the up-and-coming wireless administrator. Both newcomers and experienced administrators will gain insight on administering both basic and complex wireless networks.

VTC - Introduction To Wireless Administration (Eng)

Overview:

Introduction & Course Outline
Course Introduction & Outline (03:25)

Overview of Wireless Networking
Overview of Wireless Networking (00:34)
Wireless Vs Wired Networks (03:26)
Wireless Basics (03:11)
Wireless Transmission Methods (02:55)
Wireless Hardware Overview (02:14)
Wireless Security Issues (03:04)

Wireless Standards & Topologies
Intro to Wireless Standards & Topologies (01:46)
802.11a (02:07)
802.11b (02:22)
802.11g (01:13)
802.11n (01:33)
802.11i (02:25)
Other Standards (01:26)
Wireless Topologies (02:31)

Wireless Technology Science Fundamentals
Waves/Frequency & Amplitude (04:10)
RF Wave Concepts (03:48)
RF Power (04:13)
Range & Speed (05:05)

Wireless Hardware
Wireless Access Points (02:40)
Wireless Network Hardware (02:24)
Wireless Client Hardware (04:35)
Antennas (03:53)
Boosters & other Wireless Hardware (01:32)

Configuring Wireless Access Points
Access Point General Configuration (02:21)
Configuring a Linksys AP (05:42)
Onfiguring a TrendNet AP Pt.1 (03:51)
Onfiguring a TrendNet AP Pt.2 (04:58)
Configuring a DLink AP (05:09)
Configuring a Linux AP (02:41)
Troubleshooting Wireless Access Points Pt.1 (03:36)
Troubleshooting Wireless Access Points Pt.2 (04:56)

Configuring Wireless Clients
General Client Configuration (02:58)
Configuring a Windows Client (02:21)
Configuring a Windows XP Client (02:04)
Configuring a Windows Vista Client (02:16)
Configuring a Linux Client (04:48)
Configuring a Mac OS X Client (04:23)

Wireless Applications
Intro to Wireless Applications (02:32)
Wireless Markup Language (02:42)
Wireless Application Protocol (03:17)
Wireless Enabled Web (01:50)

Wireless Security Protocols & Features
WEP (04:37)
WPA/WPA2/802.11i (03:32)
802.1x/EAP-TLS/PEAP/LEAP (02:57)
SSID Protection (03:36)
MAC Address Filtering (02:20)

Wireless Peripherals
Wireless Print Servers (02:45)
Wireless Media Centers (02:35)
Other Wireless Peripherals (03:57)

Bluetooth
Overview of Bluetooth (03:13)
Bluetooth Security Features (01:52)
Bluetooth Weaknesses (01:52)

Other Wireless Technologies
Infra Red Technologies (02:30)
Cell Phone Technologies (03:18)
Connecting with Wireless PDAs (02:17)
RFID (02:24)
ZigBee (01:51)

Wireless Security Testing
War Driving & War Chalking (05:04)
Penetration Testing Methodology (05:20)
Pen Testing Platforms (05:11)
Pen Testing Tools (03:01)
Netstumbler Demonstration (05:17)
Rouge Access Points & Illegal Clients (04:23)

Administering a Wireless Network
Site Survey & Design (07:24)
Home Networks (07:19)
Small & Medium Networks Pt.1 (05:15)
Small & Medium Networks Pt.2 (02:58)
Enterprise Wireless Networks (07:25)

Best Practices
Best Practices - Designing the Network Pt.1 (04:46)
Best Practices - Designing the Network Pt.2 (03:49)
Best Practices - Wireless Clients (04:50)
Best Practices - Wireless Access Points (06:48)
Connecting Wireless & Wired Networks (05:48)
Best Practices - Wireless Security (05:58)

Course Wrap up
Course Wrap Up (02:36)

Credit
About the Author (00:56)


Home

http://rapidshare.com/files/128460440/VTC_-_Introduction_To_Wireless_Administration.part1.rar
http://rapidshare.com/files/128460963/VTC_-_Introduction_To_Wireless_Administration.part2.rar

VTC - MCSA & MCSE (70-297) Microsoft Windows Server 2003

VTC - MCSA & MCSE (70-297) Microsoft Windows Server 2003


VTC (Virtual Training Company) Microsoft Windows Server 2003 (70-297) Designing Active Directory and Network infrastructure (Eng)

Microsoft network infrastructures can grow to become very large and complex. To master the design of network infrastructures, you will need the ability to understand and engineer complex customer needs and requirements. This course will carry you though the process of understanding and designing a Microsoft Server 2003 Active Directory and Network infrastructure. VTC Author Brad Causey gives a detailed guide of Active DIrectory, from concepts through practical applications, to help you prepare for the 70-297 certification exam.

VTC - MCSA & MCSE (70-297) Microsoft Windows Server 2003

Overview:

Intro to Active Directory Design
Overview of Active Directory Design (06:35)
What Active Directory Design is (03:46)

Active Directory Introduction
Active Directory Introduction (05:36)
Server 2003 (06:24)
Domain Controllers (05:05)
Roles (06:50)
Forests (05:00)
Domains (05:03)
Trust Types (06:49)
Organizational Units (04:04)
DNS (03:52)
WINS (03:25)
DHCP (04:45)
Sites (06:55)
Replication (06:21)
RRAS/RADIUS (04:54)

Analyzing The Existing Infrastructure
Analyzing the Existing Infrastructure (03:29)
Physical Layout (04:31)
Infrastructure Devices (05:03)
Addressing Schemes (06:20)
Operating Systems (05:42)
Hardware (06:06)
Performance (05:31)
Analyzing It All (05:08)

Basic Active Directory Design Elements
Domain Structure Pt.1 (05:09)
Domain Structure Pt.2 (06:02)
Domain Structure Pt.3 (03:31)
NT vs. Server 2003 (05:16)
Functional Levels (05:14)
Analyzing it all (04:34)
Common Solutions (05:13)

Designing Name Resolution
DNS Components (05:59)
DNS Zones (05:16)
Zone Transfers (03:46)
Server Roles (04:24)
DNS Structure (04:40)
Internal DNS vs. Public DNS (04:05)
Putting It All Together (04:21)

Designing The Network Infrastructure
IP Addressing (05:05)
Subnets (04:08)
Router Placement (04:57)
DMZs (03:47)
DHCP (04:33)
Implementation Considerations (05:14)

Designing A Security Infrastructure
Overview (05:07)
Organizational Units (05:46)
User and Computer Accounts (06:03)
OU Design (07:56)
Password Requirements (05:33)
Group Types (04:57)
Group Scopes (04:57)
Group Strategies (06:20)
Group Policies (05:46)
GPO Implementations (06:50)
Overall Group & Group Policy Strategy (03:52)

Designing Internet Access
Internet Access Considerations (05:23)
ISPs (03:16)
WAN Implementations (04:46)
Bandwidth (04:49)
NAT (04:45)
Overall Internet Access Strategy (04:51)

Designing A Remote Access Strategy
Remote Access Components (06:08)
Wireless Access (05:34)
ISA (03:24)
RRAS (05:06)
Remote Authentication (03:22)
VPNs (05:08)
RADIUS (04:34)

Designing Sites
AD Sites (05:22)
Site Design Considerations (05:48)
Domain Controller Placement (05:31)
Domain and Forest Role Placement (05:38)
Global Catalog Placement (04:11)
Replication (05:26)
Site Strategies (03:15)

Case Study - Timekeepers Inc
Company Background (03:56)
Existing Infrastructure (03:48)
Interviews (03:57)
Geographical Layout (04:15)
Goals (03:48)
Designing Network Infrastructure (03:06)

Wrap Up Movie
In Review (02:33)

Taking The Exam
Taking the Exam (04:12)

Author Movie
About the Author (01:17)


Home

http://rapidshare.com/files/115662141/VTC_-_Microsoft_Windows_Server_2003__70-297_.part1.rar
http://rapidshare.com/files/115665953/VTC_-_Microsoft_Windows_Server_2003__70-297_.part2.rar
http://rapidshare.com/files/115669639/VTC_-_Microsoft_Windows_Server_2003__70-297_.part3.rar
http://rapidshare.com/files/115669643/VTC_-_Microsoft_Windows_Server_2003__70-297_.part4.rar

VTC - MCSA & MCSE (70-293) Microsoft Windows Server 2003

VTC - MCSA & MCSE (70-293) Microsoft Windows Server 2003

VTC (Virtual Training Company) Microsoft Windows Server 2003 (70-293) Planning and Maintaining Network Infrastructure (Eng)

Designed for IT professionals who work in complex computing environments of medium to large size companies, Microsoft exam 70-293, "Planning and Maintaining a Microsoft Windows® Server 2003 Network Infrastructure" is a core networking system requirement for the MCSE (Microsoft Certified Systems Engineer) on Microsoft Windows® Server 2003 certification. Certified MCT and MCSE, VTC author, Brian Culp, shows users real world network solutions, as well as academic solutions to help users take and pass the MCSE 70-293 exam. He discusses the various server roles and availability, IP addressing, network infrastructure and security, as well as Internet connectivity strategy. This tutorial is essential for anyone considering tackling the MCSE 70-293 exam.

VTC - MCSA & MCSE (70-293) Microsoft Windows Server 2003

Overview:

Server Roles
Tutorial Overview (05:49)
Server 2003 Versions (05:16)
Understanding Server Roles (05:16)
Domain Controllers (04:17)
Single Master Roles (05:16)
File and Print Servers (04:14)
DHCP/ DNS/WINS Servers (04:12)
Web Servers (04:17)
Application Servers and Terminal Servers (04:50)

Maintaining IP Addressing
Understanding Network Protocols (05:59)
TCP IP Basics (05:45)
IP Addressing (04:29)
IP Rules (02:43)
Binary Addressing (05:14)
Address Classes (06:26)
IP Address Rules (06:51)
Classless Internet Domain Routing (03:04)
Automatic Private IP Addressing (05:07)
Using an Alternate Configuration (03:47)
Subnetting/Supernetting (06:58)
Subnetting Shortcuts (05:59)
Installing DHCP (05:24)
DHCP Lease Process (05:12)
Authorizing/Client Reservations (03:58)
Manage DHCP Options (04:20)
DHCP in a Routed Environment (05:58)
Configuring DHCP Relay Agent (03:58)
Using Superscopes (04:55)

Network Infrastructure
Resolving a Host Name (05:58)
Recursive and Iterative Queries (03:57)
Reverse Queries (03:39)
Installing the DNS Server Service (05:05)
DNS Server Roles (05:44)
Manage DNS Zones (04:05)
Stub Zone (02:59)
DNS Server Options (06:46)
Creating a Reverse Lookup Zone (02:40)
Resource Records (05:54)
DNS Forwarders (03:40)
Implementing Dynamic DNS (04:04)
Integrating DNS and Active Directory (04:00)
Modifying a Zone (04:45)
Aging and Scavenging (05:36)
Monitoring and Management (04:29)
Delegating Zones (06:25)
Migrating DNS Information (03:54)
Integrating Windows and UNIX (04:41)
Understanding NetBIOS Names pt. 1 (04:07)
Understanding NetBIOS Names pt. 2 (03:34)
Understanding WINS (04:43)
Planning WINS Replication (05:27)
Adding a WINS Replication Partner (06:41)
Static WINS Entries (02:51)
WINS Database Backup (03:20)
Troubleshoot NetBIOS Resolution (05:13)
Troubleshoot Host Resolution (03:56)

Routing and Remote Access
Understanding Routing (05:12)
Selecting Connectivity Devices (05:28)
Configuring RAS (05:21)
Configure a Remote Access Client (05:17)
Remote Access User Authentication (05:11)
Authentication Protocols (06:22)
Internet Authentication Service (04:59)
Configuring the IAS Server (05:58)
Remote Access Policies (05:53)
Default Remote Access Policies (06:32)
Create a Remote Access Policy (05:29)
Manage Routing Tables (07:00)
Interfaces/Devices/Ports (03:29)
Manage Routing Protocols (06:17)
Demand Dial Routing (06:00)
Configuring NAT (06:04)
Configuring a Firewall (06:11)
Internet Connection Sharing (04:58)
Setting Up a VPN (06:17)
Router to Router VPN (04:56)
Secure Callback and Caller ID (03:58)
Remote Access Account Lockout (04:42)
Multilink and BAP (03:33)
Configuring Remote Assistance (04:44)
Using Remote Desktop (03:14)
Remote Desktop Security (05:56)
Troubleshoot RAS (04:10)

Internet Connectivity Strategy
Connecting the LAN to the Internet (03:48)
Network Address Translation (05:28)
Internet Connection Sharing (03:50)
Wireless Access Considerations pt. 1 (02:52)
Wireless Access Considerations pt. 2 (04:21)
Wireless Encryption and Security (05:22)
Using the Connection Manager (01:51)
Creating a Service Profile (06:46)
Customizing Service Profiles (05:02)

Maintaining Network Security
Identifying Security Requirements (04:57)
Principle of Least Privilege (04:28)
Understanding Security Templates (04:46)
Configuring a Security Template (03:21)
Security Configuration and Analysis (04:15)
IPSec Basics (05:55)
Enabling IPSec (05:03)
Configuring IPSec Policy (04:22)
IPSec Policy Rules (04:22)
IPSec Policy Example pt. 1 (04:26)
IPSec Policy Example pt. 2 (04:17)
Using IPSec Monitor (03:20)
Resultant Set of Policy (06:29)

Security Infrastructure
Security Overview (04:31)
Using NTFS Permissions (03:07)
NTFS Permission Behavior (04:54)
Permissions with the Command Line (03:07)
Combining Share and NTFS Permissions (05:23)
Effective Permission (02:04)
Securing the Schema (06:30)
Creating an Audit Policy (06:11)
Reviewing Audit Policy (04:08)
Microsoft Baseline Security Analyzer (02:01)
Creating a Baseline Analysis (04:16)
Software Update Services (02:31)
Using SUS (03:28)
Public Key Cryptography (04:42)
Understanding Certification Authorities (05:12)
Microsoft Certificates Services (04:10)

Maintaining Server Availability
Understand Performance Bottlenecks (06:06)
Monitor with System Monitor (04:14)
Setting up a Performance Log (06:03)
Installing Network Monitor (04:43)
Monitor Traffic with Network Monitor (06:11)
Windows Backup/Backup Types (05:06)
Configuring a Backup (05:33)
Using the Command Line (05:47)
Automated System Recovery (03:57)
Performing a Restore (03:54)
Basic and Dynamic Disks (04:02)
Disk Fault Tolerance (06:00)
Server Clustering (05:01)
Configuring a Server Cluster (04:14)
Network Load Balancing (04:50)
NLB Clusters (04:24)

Credits
About this Author (01:24)


Home

http://rapidshare.com/files/115637717/VTC_-_Microsoft_Windows_Server_2003__70-293_.part1.rar
http://rapidshare.com/files/115642698/VTC_-_Microsoft_Windows_Server_2003__70-293_.part2.rar
http://rapidshare.com/files/115647528/VTC_-_Microsoft_Windows_Server_2003__70-293_.part3.rar
http://rapidshare.com/files/115652154/VTC_-_Microsoft_Windows_Server_2003__70-293_.part4.rar
http://rapidshare.com/files/115653276/VTC_-_Microsoft_Windows_Server_2003__70-293_.part5.rar

VTC - MCSA & MCSE (70-294) Microsoft Windows Server 2003

VTC - MCSA & MCSE (70-294) Microsoft Windows Server 2003



VTC (Virtual Training Company) Microsoft Windows Server 2003 (70-294) Directory Service environment (Eng)

This VTC course will provide students with the knowledge and skills to take and pass the Microsoft Windows® Server 2003 70-294 exam. The course focuses on the Windows Server 2003 Directory Service environment, including the components of Active Directory, installation and configuration, physical Active Directory components; sites; domain controllers, implementation of a global catalog server, topology, Group Policy Objects, and more. MCSE Author - Brian Culp teaches the Microsoft exam objectives while providing necessary background information, essential to the student’s success.

VTC - MCSA & MCSE (70-294) Microsoft Windows Server 2003

Overview:

Windows Server 2003 and Active Directory
Introduction (06:52)
Installing Server 2003 Versions (05:08)
Correcting Setup Problems (04:27)
Changing the Interface/Adding a Theme (05:07)
Schema/Global Catalog/Namespace (05:07)
Installing Active Directory (07:15)
Objects in Active Directory (07:43)

Physical Active Directory Components
Creating a Site to Control Replication (04:52)
Adding a Subnet/Moving a Subnet (03:59)
Site Properties (04:57)
Replication Within Sites (Intra-site) (04:59)
Replication Between Sites (Inter-site) (05:16)
Using SMPTOP/Site Link Bridges (04:53)
Configure Preferred Bridgehead Servers (03:05)
Implementing a Global Catalog Server (03:16)
Adding Attributes to the Global Catalog (03:25)
Forest-Wide Operations Master Roles (04:41)
Domain-Wide Operations Master (05:16)
Transfer FSMO Roles (05:08)

The Logical Active Directory Components
Domains Trees Forests (05:22)
Organizational Units (04:58)
Delegation of Control (06:25)
Application Data Partitions (05:19)
Create a Child Domain (04:13)
Domain Functional Modes (04:53)
Renaming a Domain Controller (05:00)
Forest Functional Modes (03:49)
Renaming a Domain (04:44)
Trust Relationships: External and Internal (06:11)
Shortcut/Realm/Cross-Forest Trusts (04:59)

Managing and Maintaining an Active Directory
Schema Security and Schema Cache (05:06)
Adding a Schema Attribute (07:48)
Adding a UPN Suffix (03:12)
The NETDOM Utility (03:34)
SYSVOL Folder and System State (03:17)
Restore of Active Directory/Restore Types (03:47)
Non-Authoritative Restore Operations (02:33)
Perform an Authoritative Restore Operation (02:36)
Active Directory Utilities (04:34)
Using REPLMON (04:21)

Planning and Implementing Strategies
Creating a Domain User Account (06:38)
Creating an Account With the Command Line (03:27)
Moving User Accounts (02:16)
Creating Lots of Users at Once (04:49)
Groups in Windows 2003 (05:00)
Creating a Group (02:22)
Group Nesting (03:12)
Changing Group Scope (01:55)
Impact of Universal Groups on Replication (03:46)
Recommendations for Strong Passwords (03:48)
Plan a Smart Card Authentication Strategy (02:55)
Using NTFS Permissions (03:17)
NTFS Permission Behavior (05:05)
Setting Permissions with the Command Line (03:16)
Combining Share and NTFS Permissions (05:38)
The Effective Permission (02:06)
Copying and Moving Considerations (03:28)
Ownership (04:44)

Planning and Implementing Group Policy
Group Policy Overview (03:37)
Creating a Group Policy Object (05:36)
Default Processing Order (05:11)
Group Policy Behaviors (04:36)
Inheritance (02:50)
Filtering Group Policy (03:59)
WMI Filters (03:17)
Manage the Desktop Environment (05:59)
Redirect Folders (05:12)
Automatically Enroll User Certificates (05:45)
Using the Resultant Set of Policy Tools (06:38)
Refresh Interval/GPRESULT/GPUPDATE (03:52)

Manage Software/Security Using Group Policy
Distribute Software Using Group Policy (06:09)
Advertisement/Default Storage Location (04:27)
Publishing/Assigning (03:25)
Modifying Packages/Distribute Updates (04:50)
Software Removal (04:28)
Security Templates (04:52)
Importing a Template (03:32)
Security Configuration and Analysis (04:16)
Creating an Audit Policy (04:15)
Reviewing Audit Policy (06:14)
Software Restriction Policies (04:46)
Restricted Groups/Using SECEDIT (03:32)

Credits
About the Author (01:53)


Home

http://rapidshare.com/files/115657539/VTC_-_Microsoft_Windows_Server_2003___70-294_.rar

VTC - MCSA & MCSE (70-291) Microsoft Windows Server 2003

VTC - MCSA & MCSE (70-291) Microsoft Windows Server 2003

VTC (Virtual Training Company) Microsoft Windows Server 2003 (70-291) Network Infrastructure (Eng)

This VTC course will provide students with the knowledge and skills to take and pass the Microsoft Windows® Server 2003 70-291 exam. The course focuses on administrating, implementing and maintaining a Microsoft Windows Server 2003 Network Infrastructure. Included in this course are topics such as: NetBIOS namespace, DNS namespace, implementing zones, implementing and managing IP addresses, TCP/IP protocols, routing and remote access, VPNs, network security, IPSec and more. Learn how to monitor, troubleshoot and diagnose issues related to service dependencies. MCSE author, Brian Culp, teaches the Microsoft exam objectives while providing necessary background information, essential to the student’s success.

VTC - MCSA & MCSE (70-291) Microsoft Windows Server 2003

Overview:

Administering a Windows 2000 Network
Overview of MS 701-291 (04:28)
The NetBIOS Namespace (05:44)
The DNS Namespace (04:35)
Planning Domain and Zones (05:15)

Implementing/Managing/Maintaining IP Addressing
TCP/IP overview (05:57)
IP Addressing (07:13)
Binary Addressing (05:15)
Address Classes (06:24)
Addressing Rules; the Logical AND Operator (06:51)
Classless Internet Domain Routing (03:09)
Diagnose and Resolve Issues Related to APIPA (05:13)
Using an Alternate Configuration (03:38)
Subnetting/Supernetting pt. 1 (03:35)
Subnetting/Supernetting pt. 2 (03:22)
Subnetting Shortcuts (05:55)

Implementing/Managing/Maintaining IP Addressing Cont'd
Installing and Configuring DHCP (05:18)
DHCP Lease Process (05:15)
DHCP Scopes (04:41)
Authorizing; Client Reservations (04:01)
Manage DHCP Options (04:23)
DHCP in a Routed Environment (05:52)
Configuring DHCP Relay Agent (04:03)
Using Superscopes (05:11)
Manage DHCP Databases (04:19)
Option Classes (04:35)
Integrating DHCP DDNS (04:00)
Integrating DHCP with Remote Access (02:32)
Troubleshooting DHCP (05:14)
Verify Database Integrity (02:11)
DHCP Audit Log Files (03:42)

Implementing/Managing/Maintaining Name Resolution
Resolving a Host Name (06:02)
Recursive and Iterative Queries (04:07)
Reverse Queries (03:47)
Install the DNS Server Service (05:17)
DNS Server Roles (05:50)
Manage DNS Zones (04:03)
Stub Zones (02:58)
DNS Server Options (06:41)
Creating a Reverse Lookup Zone (02:39)
Resource Records (05:56)
DNS Forwarders (03:34)
Implementing Dynamic DNS (04:01)
Integrating DNS and Active Directory (04:04)
Upgrading a Zone (04:39)
Aging and Scavenging (05:44)
Monitoring and Management (04:22)
Delegating Zones (06:28)
Migrating DNS information (03:59)
Integrating Windows and UNIX DNS (04:44)
Configuring DNS Clients (05:41)
NSLOOKUP (04:32)

Routing and Remote Access
Configuring the Remote Access Service (05:23)
Configure a Remote Access Client (05:16)
Remote Access User Authentication (05:18)
Remote Access Authentication Protocols (06:34)
Authenticating with IAS (05:03)
Configuring the IAS Server (05:47)
Remote Access Policies (06:04)
Default Remote Access Policies (06:24)
Create a Remote Access Policy (05:25)
Manage Routing Tables (06:50)
Interfaces/Devices/Ports (03:29)
Manage Routing Protocols (06:14)
Demand Dial Routing (06:04)
Configuring NAT (06:13)
Configuring a Firewall (06:05)
Internet Connection Sharing (04:47)
Setting up a VPN (06:09)
Router to Router VPN (04:54)
Secure Callback and Caller ID (03:50)
Remote Access Account Lockout (04:33)
Troubleshoot RRAS (04:10)

Implementing/Managing/Maintaining Network Security
IPSec Basics (05:52)
Enabling IPSec (05:01)
Configuring IPSec Properties (03:51)
Configuring IPSec Policy Rules (04:51)
Building an IPSec Policy pt. 1 (04:09)
Building an IPSec Policy pt. 2 (04:35)
IP Security Monitor (03:23)
Configuring a Security Template pt. 1 (03:23)
Configuring a Security Template pt. 2 (03:20)
Security Configuration and Analysis (04:09)
Creating an Audit Policy (04:06)
Reviewing Results of an Audit (05:59)
Auditing Best Practices (05:02)
Recommended Security Practices (04:45)
The Privilege of Least Privilege (04:05)

Maintaining a Network Infrastructure
Monitor the Network with System Monitor pt. 1 (04:45)
Monitor the Network with System Monitor pt. 2 (03:55)
Setting up a Performance Log (05:58)
Installing Network Monitor (04:36)
Monitor Traffic Using Network Monitor (05:59)
Troubleshoot Connectivity to the Internet (05:26)
Network Tools: IPConfig/Ping/Tracert/Pathping (06:03)
More Tools: Netdiag/Netstat/Netsh (05:26)
Kerberos Support Tools: Ksetup, Ktpass (04:17)
Service Dependency and Recovery Options (03:43)
Diagnose and Resolve Service-Related Issues (04:38)

Credits
About this Author (01:30)


Home

http://rapidshare.com/files/115631341/VTC_-_Microsoft_Windows_Server_2003__70-291_.part1.rar
http://rapidshare.com/files/115632504/VTC_-_Microsoft_Windows_Server_2003__70-291_.part2.rar

VTC - MCSA & MCSE (70-290) Microsoft Windows Server 2003

VTC - MCSA & MCSE (70-290) Microsoft Windows Server 2003

VTC (Virtual Training Company) Microsoft Windows Server 2003 (70-290) Administrating, Implementing and Maintaining (Eng)

This VTC course will provide students with the knowledge and skills to take and pass the Microsoft Windows® Server 2003 70-290 exam. The course focuses on administrating, implementing and maintaining a Microsoft Windows Server 2003 Network Infrastructure. Included in this course are topics such as: administration and security, managing user and group permissions, managing and maintaining printers, print drivers and print permissions and remote administration. Certified MCT, MCSE instructor Bill Ferguson shows you both real world solutions for your network and academic solutions to help you pass the 70-290 exam.

VTC - MCSA & MCSE (70-290) Microsoft Windows Server 2003

Overview:

Introduction And Overview
Introduction (04:43)
Managing Overview (04:36)

Administration
The Windows Server 2003 Family (05:00)
Logging On and the Security Dialog Box (04:18)
Installing and Configuring Admin Tools (03:51)
Creating User Accounts (03:23)
Creating Computer Accounts (05:10)
Creating an Organizational Unit Hierarchy (04:11)

Managing Users And Computers
Modifying User Properties (05:26)
Modifying Computer Properties (03:00)
Enabling and Unlocking Accounts (05:04)
User Account Templates (04:38)
Finding Users in Active Directory (03:22)
Creating /Saving Queries in Active Directory (03:10)
Resetting User and Computer Accounts (05:00)
Moving Domain Objects (04:09)

Managing Groups
Group Types and Scopes (05:32)
Strategies for Using Groups (03:58)
Creating Groups (05:39)
Modifying Groups (03:45)
Best Practices for Groups (05:05)

Managing Permissions
Overview and Importance (04:03)
Share Permissions (06:45)
NTFS Permissions for Folders (05:42)
NTFS Permissions for Files (03:26)
NTFS Special Permissions (04:53)
Best Practices and Combining Permissions (06:29)
Effective Permissions Tool (04:34)

Managing Printing
Printers Overview (04:49)
Installing Printers (06:27)
Printer Permissions (04:35)
Printer Drivers (03:23)
Printer Locations in Active Directory (04:32)
The Print Spooler (04:35)
Printer Priorities (05:39)
Printer Pools (05:10)
Printer Availablility Scheduling (05:27)

Managing Organizational Units
Overview and Purpose of OU's (05:27)
Delegation of Administrative Authority (04:17)
Distribution of Group Policy (04:22)
OU Permissions (05:25)

Managing Group Policy
Group Policy Objects (04:18)
Creating and Linking a GPO (04:57)
Filtering GPO's (04:57)
Using Block Inheritance (04:09)
Enforcing GPOs (04:44)
Configuring Group Policy Settings (04:40)
Assigning Scripts with GPOs (04:39)
Folder Redirection (06:22)
Determining Applied GPOs (05:33)
Group Policy Modelling (05:50)
Group Policy Results (05:05)

Managing Security
Managing Security Overview (02:50)
Predefined Security Templates (03:43)
Deploying a Custom Security Template (04:32)
Applying and Testing Security Templates (06:33)
What is Auditing?, Audit Policy (03:42)
Determing Events to Audit (04:44)
Enabling Audit Policy (06:10)
Managing Security Logs (04:59)

Remote Administration
Remote Desktop Connections Overview (04:21)
Connecting to a Remote Desktop (04:03)
Managing Remote Desktop Connections (05:46)
Managing Idle and Session Timeouts (05:58)
Creating a Share on a Local Computer (04:27)
Defragmenting a Disk on a Remote Computer (04:39)
Connecting to a Remote Console Session (04:17)
Creating Shortcuts to Administrative Tools (04:37)

Monitoring Server Performance
Establishing a Baseline (05:32)
Real Time Monitoring (03:39)
Logged Monitoring (05:28)
Configuring Alerts (04:19)
Task Manager (06:57)

Managing Server Performance
Memory (04:09)
Processor (04:11)
Disk Subsystem (04:33)
Network Subsystem (04:33)

Managing Device Drivers
Device Drivers Overview (03:41)
Driver Signing (06:18)
Driver Rollback (04:16)
File Signature Verification (02:56)
Best Practices with Drivers (03:44)

Managing Disks
Managing Disks Overview (03:52)
Partitions Overview (04:50)
Creating Partitions (05:15)
Converting Disks (03:36)
Creating Volumes (04:39)
Importing a Foreign Disk (04:33)
Changing Drive Letters (03:15)

Managing Data Storage
File Compression (05:40)
File Encryption (05:34)
Disk Quotas (07:10)

Managing Disaster Recovery
Disaster Recovery Defined (03:11)
Parts of a Disaster Recovery Plan (05:42)
Backing Up Data and System State Data (04:13)
Restoring and Advanced Backup Options (04:59)
Volume Shadow Copies (06:20)
Safe Mode vs. Last Known Good Configuration (06:27)
The Recovery Console (05:14)

Managing Software Update Services
Software Update Services (03:10)
Server Requirements and Installation (04:21)
SUS Tools (03:59)
SUS and Group Policy (04:27)
Backing Up SUS (03:12)

Preparation for the 70-290 Test
Preparation for for the Test (04:46)
The Day of the Test (05:48)

Credits
About This Author (00:41)


Home

http://rapidshare.com/files/115579771/VTC_-_Microsoft_Windows_Server_2003__70-290_.part1.rar
http://rapidshare.com/files/115584509/VTC_-_Microsoft_Windows_Server_2003__70-290_.part2.rar

VTC - MCSA&MCSE (70-270) Microsoft Windows XP Administration

VTC - MCSA&MCSE (70-270) Microsoft Windows XP Administration


VTC (Virtual Training Company) Microsoft Windows XP Administration (70-270) (Eng)

Virtual Training Company's Microsoft Windows XP Admin tutorial is an excellent resource in preparation for the Microsoft Certification Exam #70-270. Certified Instructor Bill Ferguson guides you through installing Windows XP, including automated installation, troubleshooting the boot process, and configuring your hardware. He also helps you with managing the desktop, both for a user and an administrator, and with connecting within a network and through remote access. At the end of this tutorial, he will give you some tips helpful for taking the Microsoft Certification test.

VTC - MCSA&MCSE (70-270) Microsoft Windows XP Administration

Overview:

Introduction and Overview
Intro and Overview (04:33)

Installing Windows XP Professional
Installing Windows XP Professional Overview (03:08)
System Requirements (03:52)
File Systems (04:44)
Hardware and Software Compatibility (04:09)
Workgroups vs. Domains (04:46)
Steps to a Clean Installation (05:26)
Upgrading to Windows XP (05:51)
Dual Booting (06:46)
User Setting Migration Tools (04:58)
Post Installation Tasks (05:04)
Troubleshooting Installations (05:29)

Automation of an Installation
Answer File and UDF Values During Setup (04:43)
Setup Manager Wizard (04:13)
Installing Setup Manager (05:18)
Configuring Setup Manager (05:45)
Setup Values (03:28)
Creating and Deploying an Image (06:34)
Sysprep.inf and Sysprep.exe (05:25)
Remote Installation Services (05:17)

Understanding the Boot Process
Overview of the Boot Process (04:37)
Pre-Boot and Boot Sequences (06:18)
Kernel and Log On Sequences (04:04)
The Boot.ini file and ARC Paths (06:36)
Boot.ini. Switches (04:10)
Advanced Boot Options and Recovery Console (05:07)
System Restore Points (05:47)

Hardware Configuration
Hardware Configuration Overview (03:28)
Hardware Requirements (06:22)
Driver Signing (05:03)
Driver Updates (04:42)
Driver Rollback (04:00)
Adding and Removing Hardware (06:45)
Troubleshooting Hardware (06:17)
Viewing Hidden Devices (04:11)
Viewing Non-Present Devices (05:08)
Understanding Resource Settings (05:16)
Resource Settings and the Troubleshooter Tool (05:18)

User Desktop Settings
Managing the Desktop - Overview (04:57)
Display Properties (07:08)
Customizing the Desktop (04:03)
Configuring Accessibility Options (03:58)
Keyboard and Sound Accessibility Options (05:17)
Mouse, Magnifier, & Narrator (06:04)
Configuring Regional Options (05:59)
User Profiles (06:42)
Environment Variables and Startup and Recovery Options (06:46)
Remote Assistance (04:27)

Administering Connectivity
Connectivity Overview (03:48)
User Accounts (06:01)
The Authentication Process - Local (03:14)
The MMC and Local Security (05:26)
Logon Options in a Workgroup (03:34)
Networking Options in a Workgroup (04:26)
Internet Connection, Folder, and Printer Sharing (05:52)
Configuring Network Options in a Domain (05:46)
Internet Connection Firewalls (06:16)

Understanding TCP/IP
Overview of TCP/IP (03:48)
The TCP/IP Protocol Suite (03:23)
Internet and Transport Layer Protocols (06:11)
Application Layer Protocols (03:54)
Classful IP Addressing (05:43)
Understanding Binary Numbers (05:35)
Subnet Masks (03:26)
Anding (06:27)
Classless Inter-Domain Routing (05:36)
Configuring IP Addresses (06:38)
Troubleshooting TCP/IP (08:04)

Name Resolution
Name Resolution Overview (05:15)
Domain Name System (05:22)
NetBIOS Name Resolution (04:06)
Windows Internet Name Server (05:23)
Working With the LMHosts file (05:28)
Name Resolution Processes (06:47)
Dynamic Updates (05:14)
Troubleshooting Name Resolution (07:25)

Using Remote Access Connectivity
Overview of Remote Access (04:58)
Connection Options (04:30)
Remote Access Protocols (03:59)
Multilink (05:17)
Virtual Private Networks (05:26)
Authentication Protocols (07:54)
Encryption Protocols (04:26)
Remote Desktop (05:36)
User Names and Passwords for RAS (04:23)

Mobile Computing
Overview of Mobile Computing (03:51)
Hardware Configuration (04:30)
Power Management (05:00)
Offline Files and Folders (06:09)

Disk Management
Overview of Disk Management and Basic Disks (05:14)
Dynamic Disks and Conversion (05:02)
Viewing Disk Properties (06:06)
Managing Volumes and Partitions (05:45)
Defragmenting Volumes (05:31)

File Systems
Overview of File Systems (04:42)
FAT and FAT 32 (03:55)
NTFS (06:06)
Converting File Systems (04:32)
Data Compression (07:33)
Encrypting a File with EFS (04:28)
Recovering a File with EFS (03:41)

Interoperability
Interoperability Overview (03:23)
Client Services for Netware (04:00)
Configuring NWLink (06:30)
Netware Logon and Printing (04:48)
Print Services for Unix and Telnet (05:40)

Computer and OS Management
Management Overview (03:23)
The System Information Tool (04:54)
Task Manager (06:00)
Event Viewer (07:05)

How to Take and Pass the 70-270 Test
Preparing for the Test (04:21)
The Day of the Test (05:22)

Credits
About the Author (01:06)


Home

http://rapidshare.com/files/115551921/VTC_-_Microsoft_Windows_XP_Administration__70-270_.rar

VTC (Virtual Training Company) - PHP Programming

VTC (Virtual Training Company) - PHP Programming (Eng)

VTC - PHP Programming: The Basics Tutorials

In Real World PHP Programming: The Basics, VTC Author Mike Morton introduces PHP programming in a fashion that is immediately applicable to experienced programmers, and new programmers alike. This programming title does not focus on getting certified in PHP, but rather focuses on the application of PHP in everyday programming, including the proper terminology as well as learning PHP slang. Starting with the absolute basics of PHP types and statements, Mike progresses you through conditional and loops, MySQL, and into advanced topics such as functions and session management. With working examples, and application of what you are learning shown throughout, Mike makes learning PHP an easy and enjoyable endeavour.

VTC (Virtual Training Company) - PHP Programming (Eng)

Overview:

Introduction
What This Course Covers (02:14)
What You Will Need (02:41)
Resources - Using PHP.net Pt.1 (04:51)
Resources - Using PHP.net Pt.2 (04:17)
Other PHP Resources (03:10)
Hosting Resources (06:23)

Starting with PHP
What is PHP (04:10)
PHP Programming Standards (04:07)
Embedding PHP in HTML (05:27)
Embedding HTML in PHP (05:15)
The All Important Semi-colon (01:38)
Your First PHP Script (05:34)
Comments (02:24)
Chapter 2 Challenge (07:57)

PHP Basics
Variables (04:04)
PHP Statements (00:45)
Values and Value Types Part 1 (07:48)
Values and Value Types Part 2 (02:43)
Referencing Variables and Constants (03:00)
Superglobals (05:04)
Variable Variables (03:56)
Basic Operators Part 1 (04:21)
Basic Operators Part 2 (04:35)
Advanced Operators (05:52)
Chapter 3 Challenge (06:08)

PHP Conditionals and Loops
The "IF" Statement (04:45)
Extending "IF" (03:02)
"SWITCH" Statements (04:40)
The "WHILE" Structure (03:18)
The "DO-WHILE" Structure (02:29)
The "FOR" Loop (04:41)
Chapter 4 Challenge (02:28)

Applying What You Know
INCLUDE and REQUIRE (03:42)
Setting up Your File Structure (04:53)
Global Headers and Footers (03:16)
A Functional Website Example Pt.1 (06:23)
A Functional Website Example Pt.2 (04:18)
A Functional Website Example Pt.3 (04:32)
A Functional Website Example Pt.4 (04:49)
A Functional Website Example Pt.5 (04:30)
A Functional Website Example - Addendum (06:09)

PHP and functions
Why use functions (03:12)
Variable Scope (02:58)
Creating and using Functions (03:12)
Functions with Parameters (06:28)
Returning Values (04:05)
Chapter 6 Challenge (05:59)

PHP Arrays
What is an Array (02:09)
Creating Arrays (06:03)
Multidimensional Arrays (03:23)
"FOREACH" looping - basic (03:18)
"FOREACH" looping - advanced (04:19)
Navigating Arrays (02:21)
Manipulating Keys (03:56)
Sorting Arrays (02:41)
Serialization (02:20)
Challenge (07:56)

Starting with MYSQL
Getting Information: mysql.com (02:49)
Other MYSQL Resources (02:00)
What is a relational database? (03:27)
Accessing MYSQL - the command line (04:36)

MYSQL Basics
Configuring Users in MYSQL - Part 1 (03:59)
Configuring Users in MYSQL - Part 2 (03:02)
Creating Databases and Tables (02:24)
MYSQL Data Types - Numeric Types (04:04)
MYSQL Data Types - Date Types (02:17)
MYSQL Data Types - String Types (02:58)
EXAMPLE: Creating A Table Statement - Part 1 (05:27)
EXAMPLE: Creating A Table Statement - Part 2 (03:47)
Basic MYSQL commands - INSERT (02:46)
Basic MYSQL commands - SELECT and UPDATE (05:46)
Basic MYSQL commands - DELETE and DROP (02:32)
Setting Up phpMyAdmin (05:43)
Using phpMyAdmin (06:06)

Using MYSQL with PHP
Connecting to MYSQL (02:28)
Choosing a database (01:49)
Querying a database (03:53)
Retrieving results (05:38)
Useful MySQL functions in PHP (03:55)

PHP and Sessions
What is a session (01:39)
set_cookie vs session_start (05:36)
Session Tracking With Built in PHP Functions (03:54)
Session Tracking With Databases Pt.1 (04:36)
Session Tracking With Databases Pt.2 (04:40)

Final Words
Where to go from here (03:02)

Credits
About the Author (02:04)


Home

http://rapidshare.com/files/102021818/VTC_-_Real_World_PHP_Programming_Basics.part1.rar
http://rapidshare.com/files/102028020/VTC_-_Real_World_PHP_Programming_Basics.part2.rar
http://rapidshare.com/files/102034061/VTC_-_Real_World_PHP_Programming_Basics.part3.rar
http://rapidshare.com/files/102037348/VTC_-_Real_World_PHP_Programming_Basics.part4.rar

VTC Virtual Training Company - Microsoft SQL Server 2005

VTC Virtual Training Company - Microsoft SQL Server 2005 Eng


Microsoft SQL Server 2005 Administration Tutorials

SQL Server 2005 is Microsoft's latest release of their enterprise database solution product. SQL Server 2005 is the result of five years of research, development and collection of suggestions and wish lists from database administrators and developers. Microsoft continues to drive the enterprise database market with the added features and capabilities of this new product. Microsoft Certified Database Administrator and Certified Trainer Mark Long covers the basics of SQL Server 2005 administration in this course.

VTC Virtual Training Company - Microsoft SQL Server 2005 Eng

Overview:

Welcome/Introduction
Introduction (02:08)
SQL Server Overview (03:24)
SQL Server History (04:46)
Course Objeectives (01:56)
Transact SQL (03:58)
Course Overview (03:52)
SQL Server Mystique (02:51)

Installing SQL Server 2005
SQL Server 2005 Editions (04:27)
Preparing To Install SQL Server 2005 (03:25)
Hardware Requirements (04:27)
Working With Previous Versions (04:10)
SQL Server 2005 Installation (02:19)
Installing SQL Server 2005 Pt.1 (05:09)
Installing SQL Server 2005 Pt.2 (03:40)
Changing & Deleting SQL Server (02:52)
Default & Named Instances (05:13)
Getting Assistance (05:20)

Administrative Tools
Management Studio Overview (04:41)
Registering Servers (03:46)
Object Explorer (03:21)
Executing TSQL Queries (03:00)
Management Studio Solutions (04:12)
Server Configuration Manager (02:59)
SQLCMD (02:35)
SQLCMD Variables (04:03)
Dedicated Administrator Connection (03:25)

SQL Server Security
Securing SQL Server 2005 (03:05)
Authentication Modes Pt.1 (04:30)
Authentication Modes Pt.2 (04:43)
Principles (03:10)
Permissions (03:31)
Securables (02:45)
Managing Logins (05:05)
Managing Users (03:24)
Schemas (03:33)
Managing Schemas (04:07)
Managing Permissions (04:15)
Managing Server Permissions (02:37)
Managing Database Permissions (02:23)
TSQL Permissions (01:28)

System Databases
System Databases (06:00)
System Database Concerns (02:29)
Sample Database (04:05)

Databases
Creating A Database Pt.1 (04:41)
Creating A Database Pt.2 (03:05)
Database Properties & Options (05:27)
Generating Scripts (05:06)
Shrinking Database Files (04:31)
Creating Tables Pt.1 (05:48)
Creating Tables Pt.2 (03:03)
Datatypes Pt.1 (05:20)
Datatypes Pt.2 (05:51)
Primary & Foreign Keys (04:10)
Diagrams (05:44)

Transaction Logs
How Transaction Logs Work (03:45)
Transactions Explained (05:14)
Explicit & Implicit Transactions (05:28)
Location, Location, Location (03:27)
Advantages Of Using Transactions Logs (03:40)
Transaction Log Options (04:45)

Data Storage
How SQL Server Stores Data (05:03)
Fillfactor (05:12)
DBCC Showcontig (06:05)

SQL Profiler
Profiler (04:06)
Using SQL Profiler Part1 (04:24)
Using SQL Profiler Part2 (05:08)

Automating SQL Server
Automation Overview (04:34)
SQL Server Agent Service (02:57)
Creating Operators (03:22)
Creating Jobs Pt.1 (05:33)
Creating Jobs Pt.2 (05:45)
Creating Alerts (06:05)
Alert Considerations (03:57)

Database Backups
Backup Strategy (03:35)
Database Recovery Models (05:48)
Which Files and When (02:41)
Performing A Backup (03:47)
SQL Backup Statement (03:36)
Transaction Log Backups (02:45)
Backup Types (05:39)

Restoring Data
SQL Server Recovery Process (04:46)
Restoring A Database (03:13)
The Restore Statement (03:29)

High Availability
SQL Server High Availability (02:53)
Clustering (02:21)
Standby Servers (05:13)
Log Shipping (05:58)
Database Mirroring (03:08)

Database Maintenance
Memory Management Basics (04:37)
Maintenance Plan Creation (06:14)

Course Wrap-Up
Course Wrap-Up (02:41)

Credits
About The Author (01:48)


Home

http://rapidshare.com/files/101999056/VTC_-_Microsoft_SQL_Server_2005.part1.rar
http://rapidshare.com/files/102005514/VTC_-_Microsoft_SQL_Server_2005.part2.rar
http://rapidshare.com/files/102011605/VTC_-_Microsoft_SQL_Server_2005.part3.rar
http://rapidshare.com/files/102015553/VTC_-_Microsoft_SQL_Server_2005.part4.rar

VTC (Virtual Training Company) - Microsoft ASP.NET

VTC (Virtual Training Company) - Microsoft ASP.NET (Eng)


Microsoft ASP.NET has taken many of the best active server technologies and combined them into one powerful set of coding instructions which allow interaction between the user and the server. Today's companies and their customers rely on a back-and-forth flow of data that can be specific and more importantly, updated based on individual requests for information. Why is this important? A customer shopping at an e-store can have specific pages generated and delivered based on their shopping habits. As they continue to shop or change their habits, the information can be updated, or even updated at their request. In this seven hour tutorial, Certified Instructor Mark Long will introduce and then expand on Microsoft's ASP.NET.

Overview:

What is ASP.NET?
Welcome (02:24)
What is ASP.NET? (05:09)
ASP in Action (07:54)

Course Overview
Course Overview (03:24)

History of ASP
Short History of ASP pt. 1 (05:06)
Short History of ASP pt. 2 (02:41)
What is ASP.NET? (02:31)
ASP.NET Requirements (06:46)

What's Different About ASP.NET?
Not ASP 4.0 (04:51)
New Features (07:19)
File Extensions (03:05)
Languages (04:21)

A Simple ASP.NET Page
A Simple ASP.NET Example pt. 1 (05:31)
A Simple ASP.NET Example pt. 2 (04:11)

.NET Framework
What is the .NET Framework? (06:59)
How .NET Works (06:27)
Main Features of .NET pt. 1 (06:21)
Main Features of .NET pt. 2 (02:39)
ASP.NET Namespaces (04:39)

Internet Information Server
Getting Acquainted With IIS (05:18)
Administering IIS (05:49)

Visual Studio.NET
Using Visual Studio .NET (05:51)
WebMatrix (03:30)

Web Forms
Basic Building Block (05:21)
ASP.NET Page Structure pt. 1 (04:50)
ASP.NET Page Structure pt. 2 (02:43)
Page Directives pt. 1 (03:38)
Page Directives pt. 2 (03:57)
Code-Behind Pages (03:10)
Using Code-Behind Pages (05:42)
Events (05:58)
Creating/Using Events (07:34)
Page Events (03:55)
Postback (04:45)
Postback Example (04:29)

Controls
ASP.NET Controls (03:21)
HTML Controls (05:32)
Server Controls (02:48)
Web Controls pt. 1 (04:55)
Web Controls pt. 2 (02:40)
Validation Controls (05:21)
Using Validation Controls pt. 1 (04:21)
Using Validation Controls pt. 2 (05:12)
Rich Controls (04:21)
Linking Controls (05:43)
Third Party Controls (04:04)
Selecting the Right Control (05:29)
Page Layout (05:20)

User Controls
What is a User Control? (04:51)
Creating a User Control pt. 1 (04:00)
Creating a User Control pt. 2 (04:43)

Tracing
What is Tracing? (05:08)
Using Tracing (06:34)
Utilizing the Trace Object (07:06)
Remote Debugging (02:37)

Managing State
State Management Basics (05:04)
State Management Options pt. 1 (04:26)
State Management Options pt. 2 (03:40)
Server Side State Management (04:16)
Client Side State Management (02:18)
Global.asax (05:33)
Application Variables (07:31)
Session Variables (03:56)
Cookies (05:27)
Cookie-less Sessions (03:23)

Optimizing ASP.NET Apps
What is Caching? (04:53)
The Cache Object (04:13)
Using the Cache Object (05:59)
Output Caching (06:10)
Fragment Caching (03:12)

Configuration
.config Files (07:20)
Configuration File Sections (05:35)
Dynamic Properties and Other Tricks (04:17)

ASP.NET Security Basics
Security Settings pt. 1 (05:29)
Security Settings pt. 2 (02:55)
Authentication Methods (05:27)
Forms Authentication (05:18)
Windows Authentication (03:42)
Passport Authentication (06:20)

Web Services
XML Primer (04:58)
What are XML Web Services? (04:15)
Creating an XML Web Service pt. 1 (03:48)
Creating an XML Web Service pt. 2 (03:54)
Calling XML Web Services pt. 1 (06:48)
Calling XML Web Services pt. 2 (02:57)

Deployment
Web Application Deployment (03:52)
Updating a Web Application (02:24)

Credits
About this Author (02:31)

Home

http://rapidshare.com/files/101992501/VTC_-_Microsoft_ASP.NET.part1.rar
http://rapidshare.com/files/101992611/VTC_-_Microsoft_ASP.NET.part2.rar

Microsoft Operations Manager 2005

Winstructor - Microsoft Operations Manager 2005 (Eng)

Winstructor Computer Based Training Products.

Microsoft Operations Manager (MOM 2005) provides robust tools to allow you to Manage and Monitor your Servers and Applications. In this series of training videos, you'll learn how to configure this great systems management product.

Winstructor - Microsoft Operations Manager 2005 (Eng)

Microsoft Operations Manager 2005 (MOM 2005) contains the following Training Videos:

Introducing MOM 2005
Duration: 4:55
In this video we introduce you to Microsoft Operations Manager 2005, the requirements you'll need to meet and give you an overview to what the MOM 2005 product is all about.

Installing MOM 2005
Duration: 41:45
In this video we will show you how to Install Microsoft Operations Manager (MOM 2005) and the associated Reporting packages.

Configuring MOM 2005
Duration: 13:51
In this video we'll begin Configuring MOM 2005. We'll start with the MOM Action and DAS accounts and show you the permissions each will need to have in order to run effectively. We'll also show you how to configure the Windows Event Logs both manually and by using Group Policy in order to prevent them from filling up and stopping MOM from Monitoring the logs.

Managing Agents
Duration: 10:50
In this video you'll learn how to discover computers using Computer Discovery Rules. We'll then show you how to install the MOM Agent on a discovered computer so it can then be automatically managed and monitored by MOM.

MOM 2005 Management Packs
Duration: 11:02
In this video you'll see just how easy it is to import Management Packs into MOM so you can manage and monitor your favorite applications.

Monitoring with MOM 2005
Duration: 27:50
In this video you'll see how monitoring with MOM 2005 works. We'll show you events being generated from managed agents and talk about how to use the Operator Console.

Creating Custom Rules
Duration: 21:10
In this video you'll see how easy it is to create your own MOM Custom Rules when you need to manage applications where there arent any Management Packs available. You'll also learn how to define your own Alert Resolution States for SLA's and how to configure notification groups and operators.

Optimizing MOM 2005
Duration: 12:17
In this video you'll learn some tricks to Optimizing MOM 2005. We'll also cover some basic troubleshooting tasks you can perform to help you make MOM 2005 run the best it can.

MOM 2005 Reporting
Duration: 24:02
In this video you'll see how easy it is to produce great reports using the MOM Reporting Console.

Backup and Restoring MOM 2005
Duration: 19:12
In this video we will discuss how to Backup and Restore Microsoft Operations Manager 2005.

These MOM 2005 Training Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126292389/Winstructor_-_Microsoft_Operations_Manager_2005_SoSISO.part1.rar
http://rapidshare.com/files/126298704/Winstructor_-_Microsoft_Operations_Manager_2005_SoSISO.part2.rar
http://rapidshare.com/files/126303261/Winstructor_-_Microsoft_Operations_Manager_2005_SoSISO.part3.rar
http://rapidshare.com/files/126308064/Winstructor_-_Microsoft_Operations_Manager_2005_SoSISO.part4.rar
http://rapidshare.com/files/126308692/Winstructor_-_Microsoft_Operations_Manager_2005_SoSISO.part5.rar

Dance Vision - Salsa Shine Patterns Volume I

cDance Vision - Salsa Shine Patterns Volume I


Jose & Jami's instructions are very clear and precise. They demonstrate every shine breaking on the "1" (LA STYLE) and on the "2" (NEW YORK STYLE/MODERN 2) beat, explain and show the shine with their back to the camera, and then dance to the music.

LA STYLE- Man starts Left foot forward
NEW YORK STYLE/MODERN 2 - Man starts on Right foot, back on 2, forward on 6.

Introduction to Timing
1) Forward & Back Basic
2) Side Basic
3) Side Tap
4) Heel, Heel, Toe
5) Hot Toe or Kick Ball Change
6) Two Corners
7) Four Corners
8) Chase Turn
9) Suzy-Q
10) Forward Crossovers
11) Crossover Suzy-Q
12) Angle Suzy Q
13) Front & Back Crossovers
14) Mambo Jazz
15) Kick Pivot
16) Left Flare
17) ½ Flare
18) Slave
19) Chord Beats Crossover
20) Chord Beats Side Steps
21) Cuban
22) Hook Step with Syncopated Back Rock
23) Spiral Kick
24) Spiral Kick with Turn
25) Double Crossover Tap
26) Dance Demonstration


http://rapidshare.com/files/86171742/Dance_Vision_-_Salsa_Shine_Patterns_Volume_I.part1.rar
http://rapidshare.com/files/86175882/Dance_Vision_-_Salsa_Shine_Patterns_Volume_I.part2.rar
http://rapidshare.com/files/86180105/Dance_Vision_-_Salsa_Shine_Patterns_Volume_I.part3.rar
http://rapidshare.com/files/86184394/Dance_Vision_-_Salsa_Shine_Patterns_Volume_I.part4.rar
http://rapidshare.com/files/86188813/Dance_Vision_-_Salsa_Shine_Patterns_Volume_I.part5.rar
http://rapidshare.com/files/86191582/Dance_Vision_-_Salsa_Shine_Patterns_Volume_I.part6.rar

VTC (Virtual Training Company) - JavaScript 2007

VTC (Virtual Training Company) - JavaScript 2007 (Eng)

VTC (Virtual Training Company) - JavaScript 2007 (Eng)

Overview
Objectives (00:53)
Introduction (05:30)
The Big Picture (04:38)
Object Oriented Pt.1 (05:54)
Object Oriented Pt.2 (04:49)
Set-up Your Personal Web Server (02:14)
Summary (01:19)

Basic Concepts
Objectives (01:15)
Inheritance (05:12)
Inheritance Exercise (06:04)
Polymorphism (03:53)
Polymorphism Exercise Pt.1 (06:54)
Polymorphism Exercise Pt.2 (07:17)
Encapsulation (07:20)
Encapsulation Exercise (05:59)
Syntax (05:15)
Syntax Exercise (02:49)
Summary (01:36)

Data Types & Objects
Objectives (01:13)
Data Types & Variables (04:21)
Object Types (02:32)
Creating JavaScript variables Exer 1 (05:14)
Creating JavaScript variables Exer 2 (05:14)
Custom Object Types Exer 1 (07:21)
Custom Object Types Exer 2 (05:47)
Dynamically Insert Objects Pt.1 (04:03)
Dynamically Insert Objects Pt.2 (05:09)
Summary (01:24)

Structures of the Language
Objectives (01:23)
Expressions & Operators Pt.1 (03:35)
Expressions & Operators Pt.2 (05:24)
Using Expressions & Operators Exer Pt.1 (04:14)
Using Expressions & Operators Exer Pt.2 (03:53)
Loops & Conditions (04:53)
Functions (03:37)
Arrays (04:17)
String Manipulation Exer (02:52)
Array Manipulation Exer (04:41)
Summary (01:49)

Strings/Dates & Time
Objectives (01:07)
String Manipulation Pt.1 (03:02)
String Manipulation Pt.2 (04:53)
Link Creation Exer (02:41)
Regular Expression Pt.1 (04:46)
Regular Expression Pt.2 (04:26)
Form Validation Pt.1 (04:04)
Form Validation Pt.2 (04:53)
Date & Time (05:25)
Calculating Date & Time Exer (03:07)
Summary (01:47)

Browser Interaction
Objectives (01:24)
HTML Elements Pt.1 (03:18)
HTML Elements Pt.2 (04:46)
JavaScript with HTML Elements Exer (06:52)
Document Object Model Pt.1 (04:33)
Document Object Model Pt.2 (05:30)
Frames & Windows Pt.1 (04:02)
Frames & Windows Pt.2 (07:26)
JavaScript Popup Windows Exer (03:39)
Summary (01:49)

Dynamic HTML
Objectives (01:31)
DOM Objects & HTML Interaction (07:23)
Use Style Sheets Pt.1 (03:44)
Use Style Sheets Pt.2 (04:46)
Using DOM with Style Exer (05:06)
Modifying Elements Pt.1 (03:52)
Modifying Elements Pt.2 (03:05)
Creating Table Elements Exer (06:17)
Summary (01:35)

Advanced JavaScript
Objectives (01:24)
Plug-in Detection (04:59)
Plug-in Exer Pt.1 (04:08)
Plug-in Exer Pt.2 (06:02)
Cookies (06:07)
Creating Cookies Exer Pt.1 (05:37)
Creating Cookies Exer Pt.2 (04:51)
Server-Side Scripting (05:14)
Session Management (04:40)

Putting It All Together
Session Registration Validation Pt.1 (04:38)
Session Registration Validation Pt.2 (03:40)
Constructing the Home Page Pt.1 (05:49)
Constructing the Home Page Pt.2 (06:54)
Constructing the Home Page Pt.3 (01:54)
Importing Style Sheets (02:42)
Animating a Billboard (03:34)
Customizing Popup Boxes (05:29)
Changing the Visibility of Text (03:10)
Introduction to AJAX Pt.1 (04:08)
Introduction to AJAX Pt.2 (04:47)
Introduction to AJAX Pt.3 (03:37)
Summary (02:34)

Credits
About this Author (01:56)

Home

http://rapidshare.com/files/102043374/VTC_-_JavaScript_2007.part1.rar
http://rapidshare.com/files/102049458/VTC_-_JavaScript_2007.part2.rar
http://rapidshare.com/files/102052830/VTC_-_JavaScript_2007.part3.rar
This site does not store any files on its server.We only index and link to content provided by other sites. In case of any query/objection regarding copyright or piracy, please inform us at youzhny197@gmail.com, we will immediately respond to you.