Difference between revisions of "Windows PowerShell 1.0 Essentials"

From Techotopia
Jump to: navigation, search
Line 92: Line 92:
 
#* [[Windows PowerShell 1.0 Looping with do and while Statements|The continue Statement]]<br><br>
 
#* [[Windows PowerShell 1.0 Looping with do and while Statements|The continue Statement]]<br><br>
 
# [[The Windows PowerShell 1.0 switch Statement]]
 
# [[The Windows PowerShell 1.0 switch Statement]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|Why Use a switch Statement?]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|Windows PowerShell switch Statement Syntax]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|A switch Statement Example]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|Explaining the Example]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|Using break in a Windows PowerShell switch Statement]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|The switch $_ Variable]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|Using Expressions in a Windows PowerShell switch Statement]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|Wildcards, Regular Expressions and Case Sensitivity in switch Statements]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|Using switch Statements to Iterate Through Ranges and Collections]]
 +
#* [[The Windows PowerShell 1.0 switch Statement|Using the continue Statement]]<br><br>

Revision as of 19:11, 3 December 2008

  1. Installing Windows PowerShell 1.0
  2. The Basics of the Windows PowerShell 1.0 Interactive Shell
  3. Windows PowerShell 1.0 Commands and Aliases
  4. Windows PowerShell 1.0 String Quoting and Escape Sequences
  5. Directing and Formatting Windows PowerShell 1.0 Output
  6. Understanding and Creating Windows PowerShell 1.0 Variables
  7. Basic Windows PowerShell 1.0 Types
  8. Working with Arrays in Windows PowerShell 1.0
  9. Windows PowerShell 1.0 Hashtables
  10. Basic Windows PowerShell 1.0 Operators
  11. Windows PowerShell 1.0 Comparison and Containment Operators
  12. Windows PowerShell 1.0 Pipes and Redirection
  13. Windows PowerShell 1.0 Flow Control with if, else and elseif
  14. Windows PowerShell 1.0 Looping with the for and foreach Statements
  15. Windows PowerShell 1.0 Looping with do and while Statements
  16. The Windows PowerShell 1.0 switch Statement