Managing Windows with VBScript and WMI (Paperback)
暫譯: 使用 VBScript 和 WMI 管理 Windows

Don Jones

  • 出版商: Addison Wesley
  • 出版日期: 2004-04-03
  • 售價: $2,560
  • 貴賓價: 9.5$2,432
  • 語言: 英文
  • 頁數: 640
  • 裝訂: Paperback
  • ISBN: 0321213343
  • ISBN-13: 9780321213341
  • 已絕版

買這商品的人也買了...

相關主題

商品描述

Table of Contents:

Preface.
Acknowledgments.
About the Author.

I. INTRODUCTION TO WINDOWS ADMINISTRATIVE SCRIPTING.

1. Scripting Concepts and Terminology.

What Is Scripting?

Script Hosts.

ActiveX Scripting Languages.

The Component Object Model (COM).

Critical Scripting Security Issues.

Review.

2. Running Scripts.

Windows Script Host.

Command-Line Scripts.

Notepad and Script Editors.

Bare Bones: Notepad.

A Step Up: Programmer's File Editor.

Script-Specific: VBScript Editors.

Writing Your First Script.

Running Your First Script.

Debugging Your First Script.

Review.

3. The Components of a Script.
     A Typical VBScript.

Functions.

Subroutines.

Main Script.

Using Custom Functions and Subroutines.

Using Intrinsic Functions and Statements.

Making Decisions in a Script.

Comments and Documentation.

Review.

4. Designing a Script.

Creating a Task List.

Selecting the Appropriate Tools.

Displaying a Message.

Mapping a Drive.

Checking Group Membership.

Mapping a Printer.

Getting the Local IP Address.

Getting the Third Octet from the IP Address.

All Tasks Accounted For.

Creating Modules to Perform Tasks.

Validating User Input.

Planning for Errors.

Creating Script Libraries.

Review.

II. VBSCRIPT TUTORIAL.

5. Functions, Objects, Variables, and More.

What Are Variables?

Declaring Variables.

Understanding Data Types.

Assigning Data to Variables.

Data Coercion.

What Are Functions?

Input Parameters.

Output Values.

Intrinsic versus Custom Functions.

What Are Statements and Subroutines?

Functions, without the Output.

What Are Objects?

Properties.

Methods.

Collections.

A Sample Object.

Scripting with Objects.

Review.

6. Input and Output.

Displaying Messages.

The MsgBox Statement and Function.

More Complex Messages.

MsgBox Best Practices.

Go Generic with WScript.Echo.

Asking for Input.

Graphical Input.

Command-Line Input.

Command-Line Parameters as Input.

Running Command-Line Scripts.

Parsing Parameters.

Review.

7. Manipulating Numbers.

Numbers in VBScript.

Basic Arithmetic.

Advanced Arithmetic.

Boolean Math.

Converting Numeric Data Types.

Converting Other Data Types to Numeric Data.

Review.

8. Manipulating Strings.

Strings in VBScript.

Working with Substrings.

Concatenating Strings.

Changing Strings.

Formatting Strings.

Converting Other Data Types to String Data.

Review.

9. Manipulating Other Types of Data.

Working with Dates and Times.

Dates and Times in VBScript.

Getting the Date or Time.

Converting Date and Time Data.

Working with Past and Future Dates.

Working with Arrays.

Arrays in VBScript.

Creating and Manipulating Arrays.

Working with Array Data.

Working with Bytes.

Bytes in VBScript.

Converting Byte Data.

Review.

10. Controlling the Flow of Execution.

Conditional Execution.

If…Then.

Select…Case.

Loops.

Do While…Loop and Do…Loop While.

Do Until…Loop and Do…Loop Until.

For…Next.

For Each…Next.

Exiting Loops.

Putting It All Together.

Review.

11. Built-in Scripting Objects.

The WScript Object.

The Network Object.

Overview.

Methods and Properties.

Practical Application.

The Shell Object.

Overview.

Methods and Properties.

The Shortcut Object.

Methods and Properties.

Practical Application.

Review.

12. Working with the File System.

The FileSystemObject Library.

Working with Drives.

Working with Drive Objects.

Working with Folders.

Working with Folder Objects.

Folder Attributes.

Properties That Are Objects.

Working with Files.

Working with File Objects.

Reading and Writing Text Files.

Other FSO Methods and Properties.

Creating a Log File Scanner.

Review.

13. Putting It All Together: Your First Script.

Designing the Script.

Gathering Facts.

Defining Tasks.

Outlining the Script.

Writing Functions and Subroutines.

Identifying Candidate Modules.

Writing the Filename Formatting Function.

Writing the Main Script.

Identifying Potential Errors.

Testing the Script.

Analyzing the Results.

Adding Debug Code.

Modifying the Script.

Completing the Script.

Review.

III. WINDOWS MANAGEMENT INSTRUMENTATION AND ACTIVE DIRECTORY SERVICES INTERFACE.

14. Working with ADSI Providers.

Using ADSI Objects.

Using the WinNT Provider.

Examples.

Using the LDAP Provider.

Other Providers.

Review.

15. Manipulating Domains.

Querying Domain Information.

Changing Domain Settings.

Working with OUs.

Creating an OU.

Modifying an OU.

Querying an OU.

Deleting an OU.

Putting It All Together.

Review.

16. Manipulating Users and Groups.

Creating Users and Groups.

The WinNT Way.

The LDAP Way.

Querying User Information.

Changing User Settings.

Working with Groups.

Putting It All Together.

Review.

17. Understanding WMI.

The WMI Hierarchy.

Providers and Consumers.

WMI Versions.

Exploring WMI's Capabilities.

WQL Queries.

Installing WMI.

Using the WMI Tools.

Scriptomatic.

Really—It's This Easy.

Find the Class.

Write the Query, Test the Query.

Write the Script.

Try the Script.

Review.

18. Querying Basic WMI Information.

The WMI Query Language (WQL).

The Basics.

Boolean Operators.

Comparison Operators.

Associators, References, and Keys.

Determining What to Query.

Testing the Query.

Writing the Query in VBScript.

Using the Query Results.

Alternative Methods.

Review.

19. Querying Complex WMI Information.

Understanding WMI Relationships.

Associating WMI Instances.

ASSOCIATORS OF.

REFERENCES OF.

Using WHERE with ASSOCIATIONS OF and REFERENCES OF.

Writing the Query.

Testing the Query.

Writing the Query in VBScript.

Another Example.

Review.

20. Putting It All Together: Your First WMI/ADSI Script.

Designing the Script.

Writing Functions and Subroutines.

Writing the Main Script.

Testing the Script.

Review.

IV. CREATING ADMINISTRATIVE WEB PAGES.

21. Active Server Pages Crash Course.

About ASP.

VBScript in ASP.

The Response Object.

Writing Output.

Saving Cookies.

Ending.

The Request Object.

HTML Forms.

Cookies.

A Sample ASP Script.

Testing ASP Scripts.

Review.

22. Adding Administrative Script to a Web Page.

The Basic Web Page.

Adding Functions and Subroutines.

Adding Inline Script.

The Result.

Review.

23. Web Page Security Overview.

The ASP Security Context.

Prohibited Behaviors.

IIS 4.0, 5.0, and 5.1 versus IIS 6.0.

NTFS and IIS Security.

Writing Secure ASP Code.

Review.

24. Putting It All Together: Your First Administrative Web Pages.

Checking User Account Status.

Designing the Page.

Writing Functions and Subroutines.

Writing the Main Script.

Testing the Page.

Administering IIS.

Designing the Page.

Writing Functions and Subroutines.

Writing the Main Script.

Review.

V. ADVANCED SCRIPTING TECHNIQUES.

25. Modular Script Programming.

Introduction to Windows Script Components.

Scripting and XML.

Review.

26. Using Script Components.

Obtaining the Component.

Reviewing the Component.

Using the Component.

Review.

27. Encoded Scripts.

Installing the Script Encoder.

Writing Encoded Scripts.

Running Encoded Scripts.

Review.

28. Scripting Security.

Why Scripting Can Be Dangerous.

Security Improvements in Windows XP and Windows Server 2003.

Digitally Signing Scripts.

Running Only Signed Scripts.

Ways to Implement Safe Scripting.

The Filename Extension Game.

Script Signing.

Antivirus Software.

Defunct Techniques.

Review.

VI. READY-TO-RUN EXAMPLES.

29. Logon and Logoff Scripts.

NT and Active Directory Logon Scripts.

Active Directory-Specific Logon Scripts.

Active Directory Logoff Scripts.

Review.

30. Windows and Domain Administration Scripts.

Automating User Creation.

Finding Inactive Users.

Collecting System Information.

Review.

31. Network Administration Scripts.

Shutting Down Remote Computers.

Listing Remote Shares.

Finding Out Who Has a File Open.

Uninstall Remote MSI Packages.

Adding Users from Excel.

Listing Hot Fixes and Software.

Review.

32. WMI and ADSI Scripts.

The All-Purpose WMI Query Script.

The All-Purpose WMI Update Script.

The All-Purpose ADSI Object Creation Script.

The All-Purpose ADSI Object Query Script.

The All-Purpose ADSI Object Deletion Script.

Mass Password Changes with ADSI.

Review.

VII. APPENDIX.

Appendix. Administrator's Quick Script Reference.
Index.

商品描述(中文翻譯)

目錄:

前言。
致謝。
關於作者。

I. Windows 管理腳本介紹。

1. 腳本概念與術語。
腳本是什麼?
腳本主機。
ActiveX 腳本語言。
組件物件模型 (COM)。
關鍵的腳本安全性問題。
回顧。

2. 執行腳本。
Windows 腳本主機。
命令列腳本。
記事本與腳本編輯器。
基本:記事本。
升級:程式員檔案編輯器。
特定腳本:VBScript 編輯器。
撰寫你的第一個腳本。
執行你的第一個腳本。
偵錯你的第一個腳本。
回顧。

3. 腳本的組成部分。
一個典型的 VBScript。
函數。
子程序。
主腳本。
使用自定義函數和子程序。
使用內建函數和語句。
在腳本中做決策。
註解與文檔。
回顧。

4. 設計腳本。
創建任務清單。
選擇適當的工具。
顯示訊息。
映射驅動器。
檢查群組成員資格。
映射印表機。
獲取本地 IP 位址。
從 IP 位址獲取第三個八位元組。
所有任務都已考慮。
創建模組以執行任務。
驗證用戶輸入。
規劃錯誤處理。
創建腳本庫。
回顧。

II. VBScript 教學。

5. 函數、物件、變數等。
變數是什麼?
宣告變數。
理解資料類型。
將資料指派給變數。
資料強制轉換。
函數是什麼?
輸入參數。
輸出值。
內建函數與自定義函數。
語句與子程序是什麼?
函數,沒有輸出。
物件是什麼?
屬性。
方法。
集合。
一個範例物件。
使用物件進行腳本編寫。
回顧。

6. 輸入與輸出。
顯示訊息。
MsgBox 語句與函數。
更複雜的訊息。
MsgBox 最佳實踐。
使用 WScript.Echo 進行通用輸出。
請求輸入。
圖形輸入。
命令列輸入。
將命令列參數作為輸入。
執行命令列腳本。
解析參數。
回顧。

7. 操作數字。
VBScript 中的數字。
基本算術。
進階算術。
布林數學。
轉換數值資料類型。
將其他資料類型轉換為數值資料。
回顧。

8. 操作字串。
VBScript 中的字串。
處理子字串。
字串串接。
更改字串。
格式化字串。
將其他資料類型轉換為字串資料。
回顧。

9. 操作其他類型的資料。
處理日期和時間。
VBScript 中的日期和時間。
獲取日期或時間。
轉換日期和時間資料。
處理過去和未來的日期。
操作陣列。
VBScript 中的陣列。
創建和操作陣列。
處理陣列資料。
操作位元組。
VBScript 中的位元組。
轉換位元組資料。
回顧。

10. 控制執行流程。
條件執行。
If…Then。
Select…Case。
迴圈。
Do While…Loop 和 Do…Loop While。
Do Until…Loop 和 Do…Loop Until。
For…Next。
For Each…Next。
退出迴圈。
將所有內容整合在一起。
回顧。

11. 內建腳本物件。
WScript 物件。
網路物件。
概述。
方法與屬性。
實際應用。
Shell 物件。
概述。
方法與屬性。
快捷方式物件。
方法與屬性。
實際應用。
回顧。

12. 操作檔案系統。
FileSystemObject 函式庫。
操作驅動器。
操作驅動器物件。
操作資料夾。
操作資料夾物件。
資料夾屬性。
作為物件的屬性。
操作檔案。
操作檔案物件。
讀取和寫入文本檔案。
其他 FSO 方法與屬性。
創建日誌檔掃描器。
回顧。

13. 將所有內容整合在一起:你的第一個腳本。
設計腳本。
收集事實。
定義任務。
概述腳本。
撰寫函數和子程序。
確定候選模組。
撰寫檔名格式化函數。
撰寫主腳本。
確定潛在錯誤。