English Deutsch Français 简体中文 繁體中文
Book123, Download eBooks for Free - Anytime! Submit your article

Categories

Share With Friends



Like Book123?! Give us +1

Archive by Date

Search Tag

Newest

Useful Links


Technical Managing Windows with VBScript and WMI

Posted on 2010-03-15




Name:Technical Managing Windows with VBScript and WMI
Language:English
File size:1.74 Mb
  

Free Download Now     Free register and download UseNet downloader, then you can FREE Download from UseNet.

    Download without Limit " Technical Managing Windows with VBScript and WMI " from UseNet for FREE!


Microsoft introduced Visual Basic, Scripting Edition--commonly known as VBScript--in the mid-'90s, positioning it as a native replacement for Windows' aging command-line batch language, which was based on Microsoft's earliest operating system, MS-DOS. VBScript was intended to be easy to learn, powerful, and flexible. The language was included as an add-on to Windows 95 and Windows NT 4.0, was an optional installation component included in Windows 98, and was included in all editions of Windows Me, Windows 2000, Windows XP, and Windows Server 2003. Software developers immediately seized upon VBScript for Web programming, particularly in Active Server Pages, Microsoft's rapid-development programming framework for the Web. However, Windows administrators--one of VBScript's initial target audiences--were left cold. VBScript seemed to be much more complicated than administrators' beloved MS-DOS-based batch language, and many didn't see the need to learn an entirely new batch language. When Windows 2000 and Active Directory came along, however, administrators found that Windows administration had become a great deal more complex. Suddenly, administrators were searching for Resource Kit and other utilities that offered automated administration, especially for repetitive tasks. Active Directory enabled the use of VBScript for logon and logoff scripts, which seemed to promise more advanced use environment manipulation. At around the same time, Microsoft's naivete in releasing a powerful language like VBScript with absolutely no security controls resulted in a huge wave of high-impact VBScript-based viruses, forcing administrators to lock down their environments and remove VBScript as an option both for viruses and for administrative tools. As a regular speaker at some of the country's top technical conferences that focus on Windows technologies, including MCP TechMentor, the past few years I've given half- and full-day sessions on VBScripting for Windows administrators, and the sessions have been incredibly popular. In these sessions, I try to provide just enough VBScript experience to make scripting possible, and then concentrate on accomplishing common administrative tasks with VBScript. I also cover the security concerns of VBScript and provide administrators with the means for safely using VBScript in their environments. This book is essentially a written form of those sessions, greatly expanded with more coverage of Windows Management Instrumentation and other advanced topics, and with more coverage of VBScript security issues and resolutions.I'm not out to turn you into a programmer. In fact, one of the real successes of VBScript is that you don't need to be a programmer to use it. Most of what you'll be doing in this book involves using VBScript to tell Windows to do things for you; you'll be able to ignore much of VBScript's complexity, using it as a sort of electronic glue to combine various operating system functions. Who Should Read This Book? The only assumption I have about you is that you already know how to administer some version of Microsoft Windows. You'll find that most of the material in this book is suitable for Windows NT, Windows 2000, and Windows Server 2003 environments, and it will continue to be useful through future versions of Windows. I do not assume that you have any background in programming, and I'm not going to give you a programming background. You should have a desire to learn how to use what I call "the batch language of the twenty-first century" and a wish to move away from clumsier--and often more complex--batch files based on the MS-DOS batch language. Although some folks like to refer to batch files as scripts, I don't; and when you see how easy and flexible VBScript is, you'll understand why! How to Use This Book align="left">You can read this book in order from the Introduction to the Appendix. However, if you already have some experience with VBScript, or if you just want to dive left into the more complete example scripts, you can skip around as much as you like. I've organized this book in the same way that I organize my live VBScripting sessions at conferences, so you may feel that it's some time before you really get into the meat of scripting. I assure you, though, that each example in this book--starting in Chapter 1--is focused on Windows administration. You'll get your feet wet left away! I've also included In This Chapter elements at the start of each chapter and Coming Up elements at the end of each chapter. These are brief paragraphs that are intended to help set the stage and help you decide if you need to read a particular chapter or not. They'll also help you decide which chapter to read next based on your individual needs and interests. I hope that these elements--along with the cross-references I've included in each chapter--will help you zip straight to the scripting information that you need most. To help you decide where to start, here's a brief overview of each chapter. Part I: Introduction to Windows Administrative Scripting Part I serves as an introduction to the world of scripting and provides you with a methodology for approaching administrative tasks from a scripting standpoint. One of the most difficult parts about producing new scripts from scratch is the "Where do I start?" factor, and I'll provide you with a framework for figuring that out every time. Chapter 1: Scripting Concepts and Terminology As I've already implied, administrative scripting isn't hard-core programming. Instead, it's using VBScript as a sort of electronic glue to secure various bits of the Windows operating system together. In this chapter, I'll introduce you to those various bits and set the stage with some basic terminology that you'll use throughout this book. Chapter 2: Running Scripts Writing a script isn't much fun if you can't run the script, and so this chapter will focus on the technologies used to execute scripts. You might be surprised to learn how many different Microsoft products support scripting. In this chapter, I'll show you how far your scripting skills can really take you. I'll also introduce you to some scripting tools that can make writing and debugging scripts a bit easier. Chapter 3: The Components of a Script In this chapter, I'll present a complete administrative script, and then break it down line-by-line to explain its various components. Although this chapter isn't necessary to learning administrative scripting, it will help you write scripts that are more reliable and easier to troubleshoot. Chapter 4: Designing a Script As I've mentioned already, one of the toughest aspects about scripting can be figuring out where to start. In this chapter, I'll provide you with a framework that you can use as a starting point for every new scripting project. I'll also introduce you to some concepts that many scripting books ignore, such as planning for errors and creating a useful "resource kit" of script components that you can reuse throughout your scripting projects. Part II: VBScript Tutorial Here's your official crash course to the VBScript language: just enough to make administration via script a possibility! The best part is that I won't use the trite "Hello, world" examples that books for software developers often start out with. Instead, I'll make every example useful to you as a Windows administrator. That means you'll be producing simple, useful scripts at the same time you're learning VBScript. What could be better? Chapter 5: Functions, Objects, Variables, and More In this chapter, I'll show you the basic building blocks of any script and introduce you to some sample scripts that use each building block in a particular administrative task. This is really the meat of administrative scripting, and you'll be able to write useful scripts when you're finished with this chapter. Chapter 6: Input and Output You can make your scripts more flexible by adding the ability to dynamically change computer, user, and domain names, along with other information. In this chapter, I'll show you how your script can collect information it needs to run and dynamically alter itself to take advantage of that information. Chapter 7: Manipulating Numbers This chapter will explain how scripts can manipulate numbers, making it easier to create scripts that work with numeric data, such as user account data. I'll also introduce you to VBScript's numeric data handling and conversion commands, putting you on the path to some great scripting techniques. Chapter 8: Manipulating Strings Strings--a fancy word for text data--are at the heart of most scripting tasks. In this chapter, I'll show you how VBScript deals with strings and how you can easily integrate them into your scripts. Chapter 9: Manipulating Other Types of Data Aside from text and numbers, your scripts may need to deal with dates, times, bytes, and other forms of data to accomplish specific administrative tasks. In this chapter, I'll show you how VBScript handles these other data types and how you can use them in your own scripts. Chapter 10: Controlling the Flow of Execution The best administrative scripts can respond to changing conditions with internal logic, called control-of-flow. In this chapter, I'll show you how your scripts can be made to evaluate various conditions and respond accordingly, perform repetitive tasks, and much more. Chapter 11: Built-in Scripting Objects align="left">Much of VBScript's power comes from its capability to join various operating system objects, and in this chapter, I'll introduce you to your first set of those objects. You'll learn how to manipulate network information, map drives, and much more--pretty much everything you need to write effective logon scripts. Chapter 12: Working with the File System A common use of s...

Buy It at Lowest Price on Amazon

Rating:

2.5 out of 5 by

 
Download Links
  ServerStatus
  Direct Download Link 1Alive
  Direct Download Link 2Alive
  Download Link 1Alive
  Download Link 2Alive


Buy This Book at Best Price >>

Like this article?! Give us +1:

Related Articles


Technical Managing Windows(R) with VBScript and WMI

Technical Managing Windows(R) with VBScript and WMI

Author: Don JonesPublisher: Pearson Higher EducationPublish Date: 24 March, 2004ISBN: 0321213343

Technical Managing Windows with VBScript and WMI

Technical Managing Windows with VBScript and WMI

Technical Addison Wesley Managing Windows with VBScript and WMI password: eBooks RuLeZ 1 74 MB

Technical Addison Wesley Managing Windows with VBScript and WMI password: eBooks RuLeZ 1 74 MB

Technical VBScript, WMI, and ADSI Unleashed: Using VBScript, WMI, and ADSI to Automate Windows Administration

Technical VBScript, WMI, and ADSI Unleashed: Using VBScript, WMI, and ADSI to Automate Windows Administration

VBScript, WMI, and ADSI Unleashed: Using VBScript, WMI, and ADSI to Automate Windows Administration Publisher: Sams Number Of Pages: 576 Publication Date: 2007-05-24 Sales Rank: 148540 ISBN / ASIN: 0321501713 EAN: 9780321501714 ...

Technical Managing Windows(R) with VBScript and WMI | Ebook Share

Technical Managing Windows(R) with VBScript and WMI | Ebook Share

Publisher: Addison-Wesley ProfessionalLanguage: EnglishISBN: 0321213343Paperback: 640 pagesData: March 24, 2004Format: CHMDescription: Visual Basic Scripting (VBScript) and Windows Management Instrumentation (WMI) are vital tools for system ...

Programming (Repost) Don Jones,"Managing Windows with VBScript and WMI"

Programming (Repost) Don Jones,"Managing Windows with VBScript and WMI"

Don Jones,"Managing Windows with VBScript and WMI"Addison-Wesley Professional | 2004 | ISBN: 0321213343 | CHM | 640 pages | 1,74 MB "Finally, a step-by-step VBScripting book to make you look like a programmer without the time and sweat! Don ...

Share this page with your friends now!
Text link
Forum (BBCode)
Website (HTML)
Tags:
VBScript   Managing   Windows  
 

DISCLAIMER:

This site does not store Technical Managing Windows with VBScript and WMI on its server. We only index and link to Technical Managing Windows with VBScript and WMI provided by other sites. Please contact the content providers to delete Technical Managing Windows with VBScript and WMI if any and email us, we'll remove relevant links or contents immediately.

Comments (0) All

Verify: Verify

    Sign In   Not yet a member?

Sign In | Not yet a member?