Click here to Skip to main content
15,867,568 members
Articles / Programming Languages / PowerShell

A Quick Guideline for Microsoft Windows PowerShell - Part 2

Rate me:
Please Sign up or sign in to vote.
4.68/5 (20 votes)
17 Aug 2010CPOL4 min read 52.3K   37   10
The objective of this article (Part 2) is to introduce you to using of VB / Microsoft .NET library, Function, Methods as well in your Microsoft Windows PowerShell script.

Table of Contents

  • Introduction
  • Background
  • VB Script to PowerShell
    • Functions / Methods
  • Message to All Silver Members and Above
  • Conclusion
  • References
  • Point of interest
  • History

Introduction

The VBA developer as well as VB Script writer are very much familiar with the use of mostly common built-in library or function, for example CInt(), CStr(), Abs()… etc. In this section, we will not discuss how to use this library or function in VB Script. We will discuss how we can convert and use library or function in <leo_highlight id="leoHighlights_Underline_0" style="DISPLAY: inline; BACKGROUND-ATTACHMENT: scroll; BACKGROUND-IMAGE: none; BORDER-BOTTOM: rgb(255,255,150) 2px solid; BACKGROUND-REPEAT: repeat; BACKGROUND-COLOR: transparent; -moz-background-size: auto auto; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial" önclick="leoHighlightsHandleClick('leoHighlights_Underline_0')" önmouseover="leoHighlightsHandleMouseOver('leoHighlights_Underline_0')" önmouseout="leoHighlightsHandleMouseOut('leoHighlights_Underline_0')" leohighlights_keywords="microsoft" leohighlights_removed_removed="http%3A//shortcuts.thebrowserhighlighter.com/leonardo/plugin/highlights/3_2/tbh_highlightsBottom.jsp?keywords%3Dmicrosoft%26domain%3Dwww.codeproject.com" leohighlights_underline="true">Microsoft Windows PowerShell.

Background

So, our main objective of this article is to put all mostly used libraries or functions & their use in <leo_highlight id="leoHighlights_Underline_1" style="DISPLAY: inline; BACKGROUND-ATTACHMENT: scroll; BACKGROUND-IMAGE: none; BORDER-BOTTOM: rgb(255,255,150) 2px solid; BACKGROUND-REPEAT: repeat; BACKGROUND-COLOR: transparent; -moz-background-size: auto auto; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial" önclick="leoHighlightsHandleClick('leoHighlights_Underline_1')" önmouseover="leoHighlightsHandleMouseOver('leoHighlights_Underline_1')" önmouseout="leoHighlightsHandleMouseOut('leoHighlights_Underline_1')" leohighlights_keywords="microsoft" leohighlights_removed_removed="http%3A//shortcuts.thebrowserhighlighter.com/leonardo/plugin/highlights/3_2/tbh_highlightsBottom.jsp?keywords%3Dmicrosoft%26domain%3Dwww.codeproject.com" leohighlights_underline="true">Microsoft Windows PowerShell under a single article.

It is very important to know that <leo_highlight id="leoHighlights_Underline_2" style="DISPLAY: inline; BACKGROUND-ATTACHMENT: scroll; BACKGROUND-IMAGE: none; BORDER-BOTTOM: rgb(255,255,150) 2px solid; BACKGROUND-REPEAT: repeat; BACKGROUND-COLOR: transparent; -moz-background-size: auto auto; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial" önclick="leoHighlightsHandleClick('leoHighlights_Underline_2')" önmouseover="leoHighlightsHandleMouseOver('leoHighlights_Underline_2')" önmouseout="leoHighlightsHandleMouseOut('leoHighlights_Underline_2')" leohighlights_keywords="microsoft" leohighlights_removed_removed="http%3A//shortcuts.thebrowserhighlighter.com/leonardo/plugin/highlights/3_2/tbh_highlightsBottom.jsp?keywords%3Dmicrosoft%26domain%3Dwww.codeproject.com" leohighlights_underline="true">Microsoft Windows PowerShell doesn’t have built-in methods, but we can achieve this by using the .NET Framework library.

Note

This article is a common place for all to participate with proper code snippets and full explanation.

VB Script to PowerShell

In this section, we will discuss how we can convert and use all the libraries or functions which are widely used in VB Script.

Functions / Methods

A list of functions / methods is given below:

Function / Methods Function / Methods Function / Methods Function / Methods
Abs() Cos()Split()LBound()
Asc() CSng()Eval()LCase()
CBool() CStr()Filter()Left()
CByte() Date()Hex()Len()
CCur() DateAdd()Hour()LTrim()
CDate() DateDiff()IsDate()RTrim()
CDbl() DatePart()IsEmpty()Mid()
Chr() DateSerial()IsNull()Minute()
CInt() DateValue()IsNumeric()Month()
CLng() Day()IsObject()MonthName()
Now()Replace()Right()Round()
  1. Abs(): Returns the absolute value of a number.

    Example:

    VBScript
    $result = [math]::abs(-99) 

    Output: 99

  2. Asc(): Returns the ANSI character code corresponding to the first letter in a string.

    Example:

    $result = [byte][char] "A"

    Output: 65

  3. CBool(): Returns an expression that has been converted to a Variant of subtype Boolean.

    Example:

    VB.NET
    $result = 0  // 0 is for false & 1 is for true
    $result = [bool] $result

    Output: False

  4. CByte(): Returns an expression that has been converted to a Variant of subtype Byte.

    Example:

    VB.NET
    $result = "99.45"
    $result = [byte] $result

    Output: 99

  5. CCur(): Returns an expression that has been converted to a Variant of subtype Currency.

    Example:

    $result = "{0:C}" -f 100

    Output: $100.00

  6. CDate(): Returns an expression that has been converted to a Variant of subtype Date.

    Example:

    VB.NET
    $result = '17/08/2010'
    $result = [datetime]$result  
  7. CDbl(): Returns an expression that has been converted to a Variant of subtype Double.

    Example:

    VB.NET
    $result = "10.99"
    $result = [double]$result

    Output: 10.99

  8. Chr(): Returns the character associated with the specified ANSI character code.

    Example:

    $result = [char]42 

    Output: *

  9. CInt(): Returns an expression that has been converted to a Variant of subtype Integer.

    Example:

    VB.NET
    $result = "99.96"
    $result = [int] $result  

    Output: 100

  10. CLng(): Returns an expression that has been converted to a Variant of subtype Long.

    Example:

    VB.NET
    $result = "123456789.45"
    $result = [long] $result

    Output: 123456789

  11. Date(): Returns the current system date.

    Example:

    VBScript
    $result = get-date –format d

    Output: 1/2/2002

  12. Now(): Returns the current date and time according to the setting of your computer's system date and time.

    Example:

    $result = get-date

    Output: Wednesday, January 02, 2002 1:32:08 AM

  13. Cos(): Returns the cosine of an angle.

    Example:

    $result = [math]::cos(45)

    Output: 0.52532198881773

  14. CSng(): Returns an expression that has been converted to a Variant of subtype Single.

    Example:

    VB.NET
    $result = "99.45"
    $result =  [single] $result   

    Output: 99.45

  15. CStr(): Returns an expression that has been converted to a Variant of subtype String.

    Example:

    VB.NET
    $result = 99
    $result = [string] $result     

    Output: "99"

  16. DateAdd(): Returns a date to which a specified time interval has been added.
    Windows PowerShell you can determine that by using the Get-Date Cmdlet along with the appropriate method. For example, this command calculates the date 37 days from the current date (using the AddDays() method) and stores that value in the variable $result.

    Example:

    VB.NET
    $result = get-date
    $result
    $result = (get-date).AddDays(37)
    $result

    Output:

    Wednesday, January 02, 2002 2:31:06 AM
    Friday, February 08, 2002 2:31:06 AM
  17. DateDiff(): Returns the number of intervals between two dates.
    Example:

    $result = New-TimeSpan $(Get-Date) $(Get-Date –month 12 -day 31 
    	-year 2006 -hour 23 -minute 30)

    Output:

    Days : 1824
    Hours : 20
    Minutes : 55
    Seconds : 0
    Milliseconds : 0
    Ticks : 1576689000000000
    TotalDays : 1824.87152777778
    TotalHours : 43796.9166666667
    TotalMinutes : 2627815
    TotalSeconds : 157668900
    TotalMilliseconds : 157668900000
  18. DatePart(): Returns the specified part of a given date.

    Example:

    VB.NET
    $result = (get-date).day
    $result = (get-date).dayofweek
    $result = (get-date).dayofyear
    $result = (get-date).hour
    $result = (get-date).millisecond
    $result = (get-date).minute
    $result = (get-date).month
    $result = (get-date).second
    $result = (get-date).timeofday
    $result = (get-date).year

    Output:

    2
    2
    Wednesday
    2
    2
    921
    41
    1
    50
    
    Days : 0
    Hours : 2
    Minutes : 41
    Seconds : 50
    Milliseconds : 953
    Ticks : 97109531250
    TotalDays : 0.112395290798611
    TotalHours : 2.69748697916667
    TotalMinutes : 161.84921875
    TotalSeconds : 9710.953125
    TotalMilliseconds : 9710953.125
  19. DateSerial(): Returns a Variant of subtype Date for a specified year, month, and day.

    Example:

    $result = get-date -y 2010 -mo 12 -day 31

    Output: Friday, December 31, 2010 2:46:44 AM

  20. DateValue(): Returns a Variant of subtype Date.

    Example:

    $result = [datetime] "12/1/2010"

    Output: Wednesday, December 01, 2010 12:00:00 AM

  21. Day(): Returns a whole number between 1 and 31, inclusive, representing the day of the month.

    Example:

    $result = (get-date).day

    Output: 2

  22. Replace(): Returns a string in which a specified substring has been replaced with another substring a specified number of times.

    Example:

    VB.NET
    $result = "Hallo"
    $result = $result -replace("a","e")

    Output:

     Hello
    ...... 
    
    
    .... 
    
    
    ... 
    
    
    
    '

Message to All Silver Members and Above

This Table of Contents and article are editable by all Silver members and above. What I want you to do is replace the entries in the Table of Contents, add as many as you are aware of on <leo_highlight id="leoHighlights_Underline_3" style="DISPLAY: inline; BACKGROUND-ATTACHMENT: scroll; BACKGROUND-IMAGE: none; BACKGROUND-REPEAT: repeat; BACKGROUND-COLOR: transparent; -moz-background-size: auto auto; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial" önclick="leoHighlightsHandleClick('leoHighlights_Underline_3')" önmouseover="leoHighlightsHandleMouseOver('leoHighlights_Underline_3')" önmouseout="leoHighlightsHandleMouseOut('leoHighlights_Underline_3')" leohighlights_keywords="microsoft" leohighlights_removed_removed="http%3A//shortcuts.thebrowserhighlighter.com/leonardo/plugin/highlights/3_2/tbh_highlightsBottom.jsp?keywords%3Dmicrosoft%26domain%3Dwww.codeproject.com" leohighlights_underline="true">Microsoft Windows PowerShell. This will really help beginners to find all of them under a single article.

References

  • <leo_highlight id="leoHighlights_Underline_0" style="DISPLAY: inline; BACKGROUND-ATTACHMENT: scroll; BACKGROUND-IMAGE: none; BORDER-BOTTOM: rgb(255,255,150) 2px solid; BACKGROUND-REPEAT: repeat; BACKGROUND-COLOR: transparent; -moz-background-size: auto auto; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial" önclick="leoHighlightsHandleClick('leoHighlights_Underline_0')" önmouseover="leoHighlightsHandleMouseOver('leoHighlights_Underline_0')" önmouseout="leoHighlightsHandleMouseOut('leoHighlights_Underline_0')" leohighlights_keywords="microsoft" leohighlights_removed_removed="http%3A//shortcuts.thebrowserhighlighter.com/leonardo/plugin/highlights/3_2/tbh_highlightsBottom.jsp?keywords%3Dmicrosoft%26domain%3Dwww.codeproject.com" leohighlights_underline="true">Microsoft Development Network

Conclusion

I hope that this might be helpful to you. Enjoy!

History

  • 17th August 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralMy vote of 5 Pin
Mohammad A Rahman11-Feb-12 12:18
Mohammad A Rahman11-Feb-12 12:18 
GeneralMy vote of 5 Pin
Tanvir Hasan Turan19-Sep-10 23:24
Tanvir Hasan Turan19-Sep-10 23:24 
Good work.
GeneralLinks to other parts please Pin
H. Gohel23-Aug-10 13:33
H. Gohel23-Aug-10 13:33 
GeneralRe: Links to other parts please Pin
Md. Marufuzzaman23-Aug-10 17:28
professionalMd. Marufuzzaman23-Aug-10 17:28 
GeneralMy vote of 5 Pin
Akhteruzzaman23-Aug-10 4:23
Akhteruzzaman23-Aug-10 4:23 
GeneralRe: My vote of 5 Pin
Md. Marufuzzaman23-Aug-10 17:31
professionalMd. Marufuzzaman23-Aug-10 17:31 
GeneralGood work Pin
Taslima Bagum22-Aug-10 5:15
Taslima Bagum22-Aug-10 5:15 
GeneralRe: Good work Pin
Md. Marufuzzaman22-Aug-10 18:04
professionalMd. Marufuzzaman22-Aug-10 18:04 
GeneralMy vote of 4 Pin
anishmehta18-Aug-10 7:01
anishmehta18-Aug-10 7:01 
GeneralRe: My vote of 4 Pin
Md. Marufuzzaman18-Aug-10 8:14
professionalMd. Marufuzzaman18-Aug-10 8:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.