Showing results for Types - Scripting Blog [archived]

Aug 10, 2015
0
0

PowerTip: Use PowerShell to List Exported Types

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows how to use Windows PowerShell to list exported types.  How can I use Windows PowerShell to list all of the exported types?  Use this command:  [appdomain]::CurrentDomain.GetAssemblies()|ForEach {     Try {         $_.GetExportedTypes()     } ...

Scripting Guy!Windows PowerShellPowerTip
Jun 15, 2015
0
0

PowerShell Custom Type Module

Doctor Scripto
Doctor Scripto

Summary: Create custom types in Windows PowerShell with a free module by Jon Newman. Microsoft Scripting Guy, Ed Wilson, is here. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a guest blogger who was with us in 2011, when he wrote Automate Facebook with a Free PowerShell Module.  My name is Jon Newman, and I’m an old hand at...

Scripting Guy!Windows PowerShellscripting techniques