Showing results for .NET Framework - Scripting Blog [archived]

Jan 31, 2016
Post comments count0
Post likes count0

PowerTip: Use PowerShell to view properties and their values for a .NET Framework class

Doctor Scripto
Doctor Scripto

Summary: Learn how to view properties and the associated values of those properties of .NET Framework classes with Windows PowerShell.  How can I use Windows PowerShell to view the properties and their values from a .NET Framework class,            such as System.String?  Use the Type accelerator [string], pi...

Scripting Guy!Windows PowerShellPowerTip
Jan 31, 2016
Post comments count0
Post likes count0

PowerTip: Find properties of .NET Framework class with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to display properties of a .NET Framework class.  How can I use Windows PowerShell to easily display properties of a .NET Framework class?  Pipe the type accelerator to the Get-Member cmdlet and specify the MemberType property,            for example: [string] | gm...

Scripting Guy!Windows PowerShellPowerTip
Jan 30, 2016
Post comments count0
Post likes count0

PowerTip: Find information about .NET Framework method with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to find information about a .NET framework method.  How can I use Windows PowerShell to find basic information about a particular .NET Framework method?  Use the GetMethod method from the class, for example:  [math].GetMethod("Tan") Note  The method name is case sensitive an...

Scripting Guy!Windows PowerShellPowerTip
Sep 3, 2014
Post comments count0
Post likes count0

Using and Understanding Tuples in PowerShell

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Windows PowerShell MVP, Joel Bennett talks about using tuples in Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. Today, we have a guest blog post by Windows PowerShell MVP, Joel Bennett. Joel has been a MVP for a while, and he created the infrastructure that is used by the Scripting Games before they were tu...

Scripting Guy!Windows PowerShellscripting techniques
Sep 2, 2014
Post comments count0
Post likes count0

Using a Tuple in PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn how to use a Tuple in Windows PowerShell Hey, Scripting Guy! I read your article from yesterday, so I know about Tuples. How do I actually use one? —HD Hello HD, Microsoft Scripting Guy, Ed Wilson, is here. I just got back from working out with my trainer. I am not nearly as sore today, but then there is always tomorrow. Anyway, ...

Scripting Guy!Windows PowerShellscripting techniques