Free Ebook Video Training

Tuesday, December 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

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

Download

http://uploading.com/files/64NGEJDB/Winstructor.CiscoWorks.2000-SoSISO.part08.rar.html
http://uploading.com/files/CT11R1R5/Winstructor.CiscoWorks.2000-SoSISO.part09.rar.html
http://uploading.com/files/F3Z12NQ4/Winstructor.CiscoWorks.2000-SoSISO.part05.rar.html
http://uploading.com/files/TGANTNSN/Winstructor.CiscoWorks.2000-SoSISO.part07.rar.html
http://uploading.com/files/1QMCOS2R/Winstructor.CiscoWorks.2000-SoSISO.part06.rar.html
http://uploading.com/files/JMXJQAX8/Winstructor.CiscoWorks.2000-SoSISO.part04.rar.html
http://uploading.com/files/AJY6Y8KQ/Winstructor.CiscoWorks.2000-SoSISO.part03.rar.html
http://uploading.com/files/PAIBNR43/Winstructor.CiscoWorks.2000-SoSISO.part02.rar.html
http://uploading.com/files/R0EXE6WR/Winstructor.CiscoWorks.2000-SoSISO.part01.rar.html

Mirror

http://hotfile.com/dl/6612383/df02b0e/Winstructor.CiscoWorks.2000-SoSISO.part01.rar.html
http://hotfile.com/dl/6612389/e4ddc93/Winstructor.CiscoWorks.2000-SoSISO.part02.rar.html
http://hotfile.com/dl/6612395/5f66013/Winstructor.CiscoWorks.2000-SoSISO.part03.rar.html
http://hotfile.com/dl/6612405/bfe6bc2/Winstructor.CiscoWorks.2000-SoSISO.part04.rar.html
http://hotfile.com/dl/6612418/3cf9a0b/Winstructor.CiscoWorks.2000-SoSISO.part05.rar.html
http://hotfile.com/dl/6612428/c863195/Winstructor.CiscoWorks.2000-SoSISO.part06.rar.html
http://hotfile.com/dl/6612435/d969ffb/Winstructor.CiscoWorks.2000-SoSISO.part07.rar.html
http://hotfile.com/dl/6612441/1632ea0/Winstructor.CiscoWorks.2000-SoSISO.part08.rar.html
http://hotfile.com/dl/6612446/7063451/Winstructor.CiscoWorks.2000-SoSISO.part09.rar.html
Mirror:

http://rapidshare.com/files/244478584/Winstructor.CiscoWorks.2000-SoSISO.part01.rar
http://rapidshare.com/files/244478601/Winstructor.CiscoWorks.2000-SoSISO.part09.rar
http://rapidshare.com/files/244478661/Winstructor.CiscoWorks.2000-SoSISO.part07.rar
http://rapidshare.com/files/244478821/Winstructor.CiscoWorks.2000-SoSISO.part02.rar
http://rapidshare.com/files/244478848/Winstructor.CiscoWorks.2000-SoSISO.part05.rar
http://rapidshare.com/files/244478849/Winstructor.CiscoWorks.2000-SoSISO.part06.rar
http://rapidshare.com/files/244478902/Winstructor.CiscoWorks.2000-SoSISO.part04.rar
http://rapidshare.com/files/244478906/Winstructor.CiscoWorks.2000-SoSISO.part08.rar
http://rapidshare.com/files/244478934/Winstructor.CiscoWorks.2000-SoSISO.part03.rar

Mirror:

http://letitbit.net/download/5382a8244226/Winstructor.CiscoWorks.2000-SoSISO.part09.rar.html
http://letitbit.net/download/2e37ce767540/Winstructor.CiscoWorks.2000-SoSISO.part03.rar.html
http://letitbit.net/download/8e6709434675/Winstructor.CiscoWorks.2000-SoSISO.part02.rar.html
http://letitbit.net/download/174a36971462/Winstructor.CiscoWorks.2000-SoSISO.part05.rar.html
http://letitbit.net/download/67daec751559/Winstructor.CiscoWorks.2000-SoSISO.part07.rar.html
http://letitbit.net/download/9723ba304270/Winstructor.CiscoWorks.2000-SoSISO.part04.rar.html
http://letitbit.net/download/397167333037/Winstructor.CiscoWorks.2000-SoSISO.part08.rar.html
http://letitbit.net/download/78236391959/Winstructor.CiscoWorks.2000-SoSISO.part06.rar.html
http://letitbit.net/download/94c523410835/Winstructor.CiscoWorks.2000-SoSISO.part01.rar.html

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

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 (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 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
Download links:

http://www.easy-share.com/f/1326005755/VTC_intro_to_ASP_NET

http://uploading.com/files/0DJ7SX8X/VTC_intro_to_ASP_NET.part07.rar.html
http://uploading.com/files/93E98JI6/VTC_intro_to_ASP_NET.part06.rar.html
http://uploading.com/files/MN2JA99M/VTC_intro_to_ASP_NET.part04.rar.html
http://uploading.com/files/N9RWUX9E/VTC_intro_to_ASP_NET.part11.rar.html
http://uploading.com/files/RCA9Q49H/VTC_intro_to_ASP_NET.part08.rar.html
http://uploading.com/files/T7UTXU9V/VTC_intro_to_ASP_NET.part09.rar.html
http://uploading.com/files/V9DYH4IM/VTC_intro_to_ASP_NET.part02.rar.html
http://uploading.com/files/ZV1L24QL/VTC_intro_to_ASP_NET.part10.rar.html
http://uploading.com/files/0F3VCH1C/VTC_intro_to_ASP_NET.part05.rar.html
http://uploading.com/files/H36324GI/VTC_intro_to_ASP_NET.part01.rar.html
http://uploading.com/files/JA3NX66E/VTC_intro_to_ASP_NET.part03.rar.html

http://rapidshare.com/files/240767757/VTC_intro_to_ASP_NET.part11.rar
http://rapidshare.com/files/240767758/VTC_intro_to_ASP_NET.part06.rar
http://rapidshare.com/files/240767759/VTC_intro_to_ASP_NET.part02.rar
http://rapidshare.com/files/240767796/VTC_intro_to_ASP_NET.part07.rar
http://rapidshare.com/files/240767819/VTC_intro_to_ASP_NET.part05.rar
http://rapidshare.com/files/240767871/VTC_intro_to_ASP_NET.part03.rar
http://rapidshare.com/files/240767872/VTC_intro_to_ASP_NET.part08.rar
http://rapidshare.com/files/240767876/VTC_intro_to_ASP_NET.part01.rar
http://rapidshare.com/files/240767881/VTC_intro_to_ASP_NET.part04.rar
http://rapidshare.com/files/240767890/VTC_intro_to_ASP_NET.part10.rar
http://rapidshare.com/files/240767903/VTC_intro_to_ASP_NET.part09.rar

http://hotfile.com/dl/5092724/8a2c99e/VTC_intro_to_ASP_NET.part01.rar.html
http://hotfile.com/dl/5092725/691e612/VTC_intro_to_ASP_NET.part02.rar.html
http://hotfile.com/dl/5092732/0c1203e/VTC_intro_to_ASP_NET.part03.rar.html
http://hotfile.com/dl/5092736/839e4a2/VTC_intro_to_ASP_NET.part04.rar.html
http://hotfile.com/dl/5092739/ffa124a/VTC_intro_to_ASP_NET.part05.rar.html
http://hotfile.com/dl/5092745/87a9923/VTC_intro_to_ASP_NET.part06.rar.html
http://hotfile.com/dl/5092749/c164ea7/VTC_intro_to_ASP_NET.part07.rar.html
http://hotfile.com/dl/5092755/0b1c488/VTC_intro_to_ASP_NET.part08.rar.html
http://hotfile.com/dl/5092761/a9a3c2d/VTC_intro_to_ASP_NET.part09.rar.html
http://hotfile.com/dl/5092765/e41a60d/VTC_intro_to_ASP_NET.part10.rar.html
http://hotfile.com/dl/5092768/6f16c0d/VTC_intro_to_ASP_NET.part11.rar.html

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

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

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

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

Rita - Remazim (2008)

Rita - Remazim (2008)



Rita - Remazim (2008)

1. Haiynu Gdolim (4:06)
2. Mehaka (4:07)
3. Haim Hait (4:10)
4. Sof Aona (3:31)
5. Ahrey She Ahav (4:20)
6. Gara Mul Hamaim (2:45)
7. Remazim (3:16)
8. Lomed Oti Lirkod (4:07)
9. Hapam (4:07)
10. Eih Ze Kore (4:20)
11. Shekel Shevim (4:37)


http://rapidshare.com/files/88048833/Rita_-_Remazim__2008_.rar

Pump It Up! - The Ultimate Dance Workout (2004)

Pump It Up! - The Ultimate Dance Workout (2004)


Pump It Up - The Ultimate Dance Workout is a brand new concept, mixing dance music from the clubs with aerobic exercise to produce a fast, effective and hugely enjoyable way of getting fit and burning unwanted fat.

The DVD is shot in the same location as the video for Eric Prydz's 'Call On Me'... Not only that, the routines are demonstrated and choreographed by, the beautiful, Deanne Berry - the instructor in the music video! Seven of the girls from the video workout with Deanne, as she goes through the warm-up, 3 dance workouts and a chill-out cool-down.

Actors:
Presented by: Deanne Berry ; Artists include: Eric Prydz ; Linus Loves ; Danzel ; Milk & Sugar ; Onyx ; Boogie Pimps ; Tomcraft ; Afro Medusa ; Benny Benassi ; Ilo ; DJ Sammy ; Jakatta


http://rapidshare.com/files/85938627/PIU_-_TUDW.part1.rar
http://rapidshare.com/files/85944780/PIU_-_TUDW.part2.rar
http://rapidshare.com/files/85950137/PIU_-_TUDW.part3.rar
http://rapidshare.com/files/85956171/PIU_-_TUDW.part4.rar
http://rapidshare.com/files/85962333/PIU_-_TUDW.part5.rar
http://rapidshare.com/files/85967998/PIU_-_TUDW.part6.rar
http://rapidshare.com/files/85973310/PIU_-_TUDW.part7.rar

Winstructor - Planning Windows Server 2003 70-294

Winstructor - Planning Windows Server 2003 70-294 (Eng)

Winstructor Computer Based Training Products.

This certification exam measures your ability to plan, implement, and maintain a Microsoft Windows Server 2003 Active Directory infrastructure. This series of Videos maps to the 70-294 Exam Objectives.

Winstructor - Planning Windows Server 2003 70-294 (Eng)

Exam 70-294 contains the following Training Videos:

Installing Active Directory
Duration: 7:19
In this Video we show you how to Install Active Directory on a Windows 2003 Server.

Forest and Domain Functional Levels
Duration: 4:42
In this Video we discuss Forest and Domain Functional Levels.

Operations Masters
Duration: 28:33
Learn how to Administer the 5 Operations Masters Roles, or FSMO Roles in Windows 2003 Server. Operations Masters are critical to the healthy operation of your network!

Introduction to Group Policy
Duration: 1:51
In this Video we Introduce you to Group Policy. This video sets up the rest of the course on Group Policy.

Local Group Policy Objects
Duration: 1:48
In this Video we discuss Local Group Policy Objects. This video acts as an introduction to Group Policy Objects which are discussed in depth in the next video on Non-Local Group Policy Objects.

Non-Local Group Policy Objects
Duration: 25:07
In this Video we take a comprehensive look at Group Policy Objects, by first discussing the order in which Policies are applied. We look at the effects of Conflicting Policies. Then we move on and Create both Computer and User Policies at the Site and OU level and what the effect this has on a Windows XP Professional Computer that is logged into a Domain.

Resultant Set of Policy (RSOP)
Duration: 9:28
So what happens to a Computer or Users effective Policy if they join a different OU, or become a member of a new Group? In this Video we take a detailed look at the Resultant Set of Policy MMC which allows us to simulate what the net effect to our Policies will be, if a change occurs.

Folder Redirection using Group Policy
Duration: 5:25
In this Video we Folder Redirection using Group Policy. This Policy enables you to store the Users My Documents, Desktop, Application Data and Start Menu contents on a Server to make Backups much easier.

Software Restriction Using Group Policy
Duration: 11:46
In this video we show you how to use Group Policy to control the software that is allowed to run or restricted from running in your network.

These 70-294 Exam Training Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126313537/Winstructor_-_Planning_Windows_Server_2003_Active_Directory_70-294_SoSISO.part1.rar
http://rapidshare.com/files/126315749/Winstructor_-_Planning_Windows_Server_2003_Active_Directory_70-294_SoSISO.part2.rar

Winstructor - Planning Windows Server 2003 70-293

Winstructor - Planning Windows Server 2003 70-293 (Eng)

Winstructor Computer Based Training Products.

This certification exam measures your ability to plan and maintain a Microsoft Windows Server 2003 network infrastructure. This series of Videos maps to the 70-293 Exam Objectives.

Winstructor - Planning Windows Server 2003 70-293 (Eng)

Exam 70-293 contains the following Training Videos:

Introducing Certificates
Duration: 3:58
In this Video we Introduce you to Certificates, Public/Private Key Pairs, and Symmetric Keys.

Protecting the ROOT and Intermediate CA's
Duration: 1:46
In this Video we show you how to design your PKI Hierarchy to Protect the ROOT and Intermediate CA's. Protecting the ROOT and Intermediate CA's is Critical to the Security of your Certification Authority.

Installing the ROOT CA
Duration: 15:35
In this Video we show you how to Install the ROOT CA in a Standalone Workgroup Environment.

Installing the Intermediate CA
Duration: 6:37
In this Video we show you how to Install the Intermediate CA in a Standalone Workgroup Environment.

Installing the Issuing CA
Duration: 9:02
In this Video we show you how to Install the Issuing CA as an Enterprise Subordinate. Then we discuss Backups and Restoring your CA's.

Certificate Autoenrollment
Duration: 11:35
In this Video we show you how to use Certificate Autoenrollment to Automatically Enroll Users with Certificates. This is not an easy task, but even in a medium sized business, this can save you a considerable amount of time.

Issuing Certificates using Web Enrollment
Duration: 13:43
In this Video we show you how to Issue Certificates to users, using Web Enrollment.

Issuing Certificates using the Certification Authority MMC
Duration: 10:20
In this Video we show you how to Issue Certificates using the Certification Authority MMC and to Secure Access to a Website with SSL/Certificates.

Renewing Certificates
Duration: 4:55
Your ROOT, Intermediate and Issuing CA's need Certificates too! In this Video we show you how to Renew the Certificates for your PKI Hierarchy.

Key Recovery Agents
Duration: 18:34
In this Video we show you how to recover lost Keys by Creating a Key Recovery Agent. We demonstrate Archiving Keys and retrieving lost keys using the Certutil Utility. Then we recover an encrypted file, that has been encrypted with an old, deleted private key.

These 70-293 Exam Training Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126320825/Winstructor_-_Planning_Windows_Server_2003_Network_Infrastructure_70-293_SoSISO.part1.rar
http://rapidshare.com/files/126325808/Winstructor_-_Planning_Windows_Server_2003_Network_Infrastructure_70-293_SoSISO.part2.rar
http://rapidshare.com/files/126326375/Winstructor_-_Planning_Windows_Server_2003_Network_Infrastructure_70-293_SoSISO.part3.rar

Winstructor - Managing Windows Server 2003 70-291

Winstructor - Managing Windows Server 2003 70-291 (Eng)

Winstructor Computer Based Training Products.

This certification exam measures your ability to implement, manage, and maintain a Microsoft Windows Server 2003 network infrastructure. This series of Videos maps to the 70-291 Exam Objectives.

Winstructor - Managing Windows Server 2003 70-291 (Eng)

Exam 70-291 contains the following Training Videos:

DHCP Server
Duration: 28:21
In this Video we demonstrate how to Create a DHCP Server on a Windows 2003 Server. We cover Installing, Configuring, Backing Up, Restoring and Troubleshooting your DHCP Server.

DHCP Relay Agent
Duration: 3:55
In this Video we demonstrate how to Create a DHCP Relay Agent on a Windows 2003 Server, so your clients on a Remote Network Segment can be issued with a Dynamic IP Address.

Introduction and Installing DNS
Duration: 11:58
In this Video we Introduce you to DNS and its hierarchical structure. We then Install DNS on a Windows 2003 Server and demonstrate its ability to resolve host names immediately.

DNS Resolution
Duration: 8:24
In this Video we discuss DNS Resolution in detail. We show you exactly what happens when a client computer needs to resolve a Hostname to an IP Address.

DNS Zones
Duration: 26:31
In this Video we create Forward and Reverse Lookups on Primary, Secondary, Stub and Active Directory Integrated Zones. We discuss why you'd choose one Zone type over another and end with a demonstration on Delegating DNS.

DNS Records
Duration: 38:21
In this Video we demonstrate how to Create DNS Records on a Windows 2003 Server and discuss the various types of DNS Records, as well as experimental and records that are coming in the future.

Adminstering DNS
Duration: 30:01
In this Video we show you how to Administer a DNS Server. As DNS is the foundation of your Active Directory Infrastructure, you need to make sure that DNS is working properly. We show you how!

These 70-291 Exam Training Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126279394/Winstructor_-_Managing_Windows_Server_2003_Network_Infrastructure_70-291_SoSISO.part1.rar
http://rapidshare.com/files/126283657/Winstructor_-_Managing_Windows_Server_2003_Network_Infrastructure_70-291_SoSISO.part2.rar
http://rapidshare.com/files/126287216/Winstructor_-_Managing_Windows_Server_2003_Network_Infrastructure_70-291_SoSISO.part3.rar

Microsoft Official Curriculum (MOC) 6417A

Microsoft Official Curriculum (MOC) 6417A

MOC 6417A Updating Your Applications Infrastructure Technology Skills To Windows Server 2008

About this Course
This three day instructor led course provides students with an understanding of Applications Infrastructure technologies in Windows Server 2008. This course is intended to allow individuals who already have experience with Applications Infrastructure technologies in Windows 2000 Server or Windows Server 2003 to upgrade their skills to Windows Server 2008.

Audience Profile
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:

• Configure and use Windows Server as an application server with new Server Roles.
• Use new features in IIS 7.0 Application Server, including the new modular configuration system.
• Manage Web Applications with IIS 7.0.
• Troubleshoot IIS 7.0-based Web servers with automatic failed request tracing and other included features and tools.
• Plan for Windows SharePoint Services 3.0 implementation in a variety of network environments.
• Configure and manage Windows SharePoint Services 3.0 from initial setup through troubleshooting and day-to-day operation.
• Use new features in Terminal Services and describe Terminal Services Licensing.
• Use and manage Terminal Services remote programs and gateways, including troubleshooting and performance optimization.
• Configure disk storage in Windows Server 2008.

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: Server Roles and Initial Configuration Tasks
This module introduces Application Server Roles, describing Application Server features in Windows Server and demonstrating initial configuration and Unix interoperability.

Module 2: Overview of IIS 7.0 Application Server
This module introduces IIS 7.0 modular architecture, in which more than 40 features can be independently installed. It also demonstrates new scripting interface features and distributed configuration files.

Module 3: Managing Web Applications with IIS 7.0
This module covers several aspects of server management in IIS 7.0. IIS can be configured using the IIS Manager graphical user interface or using several configuration files. It also explores the appcmd.exe command line utility as it is used for server administration.

Module 4: Troubleshooting Web Servers
This module describes and demonstrates IIS 7.0 features for troubleshooting, including Runtime Control and Status API, Automatic Failed Request Tracing, and Trace Events.

Module 5: Introduction to the Windows SharePoint Services 3.0 Platform
This module describes and demonstrates Windows SharePoint Service 3.0, including planning for implementation and performing a new installation.

Module 6: Configuring and Managing Windows SharePoint Services 3.0
This module describes and demonstrates how to configure and manage Windows SharePoint Services 3.0, including creating and configuring sites and managing sites and servers.

Module 7: Configuring Terminal Services
Terminal Services has been updated with Windows Server 2008, including changes to Terminal Services core. This module covers the new Terminal Services core functionality as well as Terminal Services Web Access and Terminal Services Licensing.

Module 8: Managing Terminal Services
With Windows Server 2008 Remote Programs are accessed remotely through Terminal Services. Terminal Services Gateway can be used to help secure access to Remote Programs. This module describes and demonstrates using Terminal Services management consoles and Event Viewer as well as using Terminal Services with Windows System Resource Manager to optimize performance.

Module 9: Configuring Storage
One of the tasks that you perform when administering a server is managing disks. You will need to understand the Microsoft Windows Server 2008 tools that are available to set up and manage disks and disk drives. This understanding also allows users to employ advanced features, such as creating a mounted drive and importing a foreign disk.
This module covers these tasks and describes how to use the tools to manage and set up disks.

Home

http://rapidshare.com/files/129702625/MOC_6417A_UYAITSTWS_2008.md5
http://rapidshare.com/files/129708755/MOC_6417A_UYAITSTWS_2008.part01.rar
http://rapidshare.com/files/129714387/MOC_6417A_UYAITSTWS_2008.part02.rar
http://rapidshare.com/files/129719881/MOC_6417A_UYAITSTWS_2008.part03.rar
http://rapidshare.com/files/129724919/MOC_6417A_UYAITSTWS_2008.part04.rar
http://rapidshare.com/files/129730121/MOC_6417A_UYAITSTWS_2008.part05.rar
http://rapidshare.com/files/129735132/MOC_6417A_UYAITSTWS_2008.part06.rar
http://rapidshare.com/files/129740162/MOC_6417A_UYAITSTWS_2008.part07.rar
http://rapidshare.com/files/129744665/MOC_6417A_UYAITSTWS_2008.part08.rar
http://rapidshare.com/files/129748802/MOC_6417A_UYAITSTWS_2008.part09.rar
http://rapidshare.com/files/129752909/MOC_6417A_UYAITSTWS_2008.part10.rar
http://rapidshare.com/files/129756780/MOC_6417A_UYAITSTWS_2008.part11.rar
http://rapidshare.com/files/129760769/MOC_6417A_UYAITSTWS_2008.part12.rar
http://rapidshare.com/files/129764310/MOC_6417A_UYAITSTWS_2008.part13.rar
http://rapidshare.com/files/129768089/MOC_6417A_UYAITSTWS_2008.part14.rar
http://rapidshare.com/files/129771613/MOC_6417A_UYAITSTWS_2008.part15.rar
http://rapidshare.com/files/129775140/MOC_6417A_UYAITSTWS_2008.part16.rar
http://rapidshare.com/files/129778734/MOC_6417A_UYAITSTWS_2008.part17.rar
http://rapidshare.com/files/129782243/MOC_6417A_UYAITSTWS_2008.part18.rar
http://rapidshare.com/files/129785485/MOC_6417A_UYAITSTWS_2008.part19.rar
http://rapidshare.com/files/129789196/MOC_6417A_UYAITSTWS_2008.part20.rar
http://rapidshare.com/files/129792759/MOC_6417A_UYAITSTWS_2008.part21.rar
http://rapidshare.com/files/129796142/MOC_6417A_UYAITSTWS_2008.part22.rar
http://rapidshare.com/files/129799649/MOC_6417A_UYAITSTWS_2008.part23.rar
http://rapidshare.com/files/129803438/MOC_6417A_UYAITSTWS_2008.part24.rar
http://rapidshare.com/files/129807441/MOC_6417A_UYAITSTWS_2008.part25.rar
http://rapidshare.com/files/129811585/MOC_6417A_UYAITSTWS_2008.part26.rar
http://rapidshare.com/files/129815740/MOC_6417A_UYAITSTWS_2008.part27.rar
http://rapidshare.com/files/129819959/MOC_6417A_UYAITSTWS_2008.part28.rar
http://rapidshare.com/files/129824442/MOC_6417A_UYAITSTWS_2008.part29.rar
http://rapidshare.com/files/129829072/MOC_6417A_UYAITSTWS_2008.part30.rar
http://rapidshare.com/files/129833793/MOC_6417A_UYAITSTWS_2008.part31.rar
http://rapidshare.com/files/129838710/MOC_6417A_UYAITSTWS_2008.part32.rar
http://rapidshare.com/files/129843559/MOC_6417A_UYAITSTWS_2008.part33.rar
http://rapidshare.com/files/129848402/MOC_6417A_UYAITSTWS_2008.part34.rar
http://rapidshare.com/files/129853217/MOC_6417A_UYAITSTWS_2008.part35.rar
http://rapidshare.com/files/129858130/MOC_6417A_UYAITSTWS_2008.part36.rar
http://rapidshare.com/files/129863230/MOC_6417A_UYAITSTWS_2008.part37.rar
http://rapidshare.com/files/129868367/MOC_6417A_UYAITSTWS_2008.part38.rar
http://rapidshare.com/files/129873657/MOC_6417A_UYAITSTWS_2008.part39.rar
http://rapidshare.com/files/129879103/MOC_6417A_UYAITSTWS_2008.part40.rar
http://rapidshare.com/files/129884218/MOC_6417A_UYAITSTWS_2008.part41.rar
http://rapidshare.com/files/129887218/MOC_6417A_UYAITSTWS_2008.part42.rar

Winstructor - VBScript (Eng)

Winstructor - VBScript (Eng)

Winstructor Computer Based Training Products.

Designed for people with little or no programming or scripting experience, these VBScript Training Videos will have you scripting with VBScript fast! Start writing your own VBScripts today!

Winstructor - VBScript (Eng)

VBScript contains the following Training Videos:

Introduction to VBScript
Duration: 8:22
In this video we'll talk about what VBScript is, how to get it and why would you want to use it to script with. We discuss COM objects and how they add more power to your scripting. Finally we talk about script editors and how to set up the default Windows Script Host.

Lets Start Scripting
Duration: 12:32
In this video you'll learn all about Variables, Literals, Constants and the use of Comments in your scripts. You'll also learn about the function of the Option Explicit and On Error Resume Next statements.

Arrays
Duration: 14:21
In this video we'll introduce you to arrays which are simply lists of data. Arrays are one of the most widely used functions in most scripting languages, so you wont want to miss this video.

Statements and Functions
Duration: 15:15
In this video you'll learn all about Statements and Functions which are used in all VBScripts.

Loops
Duration: 11:35
In this video you'll learn all about Loops. We'll cover the For Each Next loop, the For Next loop, Do While loops and Do Until Loops.

Objects
Duration: 25:54
In this video you'll learn all about what Objects and Methods are. We focus on the FileSystem Object and show you how to use it to manipulate drives, folders, files and text.

WshShell
Duration: 28:52
In this video you'll learn all about the WshShell Object and see how we can use it to access the Windows Registry, Write to the Event Log, Run External Applications and much more!

WshNetwork
Duration: 13:30
In this video you'll learn all about the WshNetwork Object and see how we can use it to access logon information, map drives and printers.

Writing Your Own Scripts
Duration: 6:57
In this video we'll give you some hints on how to approach script writing for yourself.

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

Download

http://rapidshare.com/files/126406116/Winstructor_-_VBScript_SoSISO.part1.rar
http://rapidshare.com/files/126411095/Winstructor_-_VBScript_SoSISO.part2.rar
http://rapidshare.com/files/126412437/Winstructor_-_VBScript_SoSISO.part3.rar

Winstructor - Systems Management Server 2003 (SMS 2003)(Eng)

Winstructor - Systems Management Server 2003 (SMS 2003)(Eng)

Winstructor Computer Based Training Products.

Systems Management Server 2003 is Microsoft's Enterprise Management Product. Microsoft Systems Management Server 2003, or SMS 2003 is a robust Enterprise Management Application that offers remote management and administration of your network.

Winstructor - Systems Management Server 2003 (SMS 2003)(Eng)

SMS 2003 contains the following Training Videos:

Introduction to SMS 2003
Duration: 9:02
In this video we introduce you to Microsoft's Answer to your network management headaches - SMS 2003. We discuss what SMS 2003 is and what requirements you'll need to satisfy before you can install the product.

Installing the Primary Site Server
Duration: 12:02
In this video we show you how to install the Primary Site Server for SMS 2003.

SMS Clients
Duration: 17:55
In this video we show you how to install the SMS Adanced Client.

Inventory
Duration: 10:01
In this video we configure Hardware and Software Inventory on our SMS 2003 Server. This video is a pre-requisite for the next video on Reports and Queries.

Reports and Queries
Duration: 17:59
In this video we use SMS 2003 to query the devices it manages and use this data to produce reports.

Software Metering
Duration: 7:25
In this video we configure Software Metering and set up a Software Metering Rule that enables you to find out who is using the software in your company.

Backup and Recovery
Duration: 16:15
In this video we use the inbuilt SMS 2003 backup task, to backup our SMS Site Server and demonstrate how to restore our site to recover in case of a disaster.

These SMS 2003 Training Videos are produced in 800x600 Resolution (.WMV)

Home

http://rapidshare.com/files/126341110/Winstructor_-_System_Management_Server_2003_SoSISO.part1.rar
http://rapidshare.com/files/126401319/Winstructor_-_System_Management_Server_2003_SoSISO.part2.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.