User Steven Murawski - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T05:17:39Zhttp://stackoverflow.com/feeds/user/1233http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790801/deploy-powershell-exchange-cmdlets-with-site-but-without-installing-full-manageme/1792509#17925091Answer by Steven Murawski for Deploy PowerShell Exchange Cmdlets with site but without installing full Management InstrumentationSteven Murawski2009-11-24T19:51:28Z2009-11-24T19:51:28Z<p>Another option would be (for Powershell V2 - which is supported by Exchange 2007 SP2) to use remoting and configure a session to export the commands you want.</p>
<p><a href="http://technet.microsoft.com/en-us/library/dd819496.aspx" rel="nofollow">Register-PSSessionConfiguration</a> allows you to define commands via a startup script. There is a great demo of how this works in the PDC 09 sessions <a href="http://microsoftpdc.com/Sessions/SVR12" rel="nofollow">SVR12</a> and <a href="http://microsoftpdc.com/Sessions/SVR13" rel="nofollow">SVR13</a>. <a href="http://blogs.msdn.com/powershell/archive/2009/11/19/pdc09-svr12-and-svr13-demos-session-demos.aspx" rel="nofollow">There are some example scripts in the code samples.</a></p>
http://stackoverflow.com/questions/8722/how-do-you-use-powershell/10137#1013710Answer by Steven Murawski for How do you use PowerShell?Steven Murawski2008-08-13T18:06:34Z2009-08-18T17:27:53Z<p>I'm an admin by trade and just starting in the "Dev" world, but I see that PowerShell can be very useful to developers in a number of ways. </p>
<ol>
<li>Task automation -> Lee Holmes (a developer on the PowerShell team) posted a proof-of-concept called BgShell, which was basically the PowerShell runtime hosted in a windows forms app that listened for keystrokes and kicked off actions written in PowerShell based on them. It also included some clipboard automation.</li>
<li>Quick access to the .NET framework. You don't have to compile and run something or use another program like Snippet Compiler to test some functionality. Load the assembly into your PowerShell session and interact with it. You get all the discoverability of PowerShell (like Get-Member) to explore your object.</li>
<li>Easy to build domain specific languages. James Kovacs wrote a simple build script language with PowerShell called Psake.</li>
<li>It can provide a scripting language for your application. Since PowerShell is part of the 09 Common Engineering Criteria, a lot of Microsoft applications will have interfaces for PowerShell, and familiarity with the language syntax will grow. You can leverage that knowledge by embedding the PowerShell runtime in your application and providing a scripting interface to your users, choosing what objects they will have access to.</li>
<li>Along the same line, if you need to create a command-line interface for your application, PowerShell provides a large part of the underlying plumbing needed for parsing arguments, and other basic tasks, leaving only the business logic for you to write, and providing a consistent interface with other applications (for example, if you have user accounts that need to be managed (that don't already integrate with Active Directory, an admin could (using the Quest AD Cmdlets and your applications interface) Get-QADUser | New-MyApplicationUser and be done. The Exchange 2007 team did this very well. All the functionality is based on PowerShell cmdlets, the GUI calls the cmdlets and shows the user what is being run, so they can build scripts based off of that.</li>
<li>It's just cool! In about 250 lines (including comments), Rob Foust and Jeff Hicks wrote a network sniffer in PowerShell. Easier to use than WinDump for lightweight troubleshooting.</li>
<li>Community - There is a great community focused around PowerShell, including developers. Find out more at PowerShellCommunity.org.</li>
</ol>
http://stackoverflow.com/questions/1217565/can-i-query-changesets-via-tfpt-exe-tf-exe-or-via-the-tfs-api-from-powershell/1219231#12192312Answer by Steven Murawski for Can I query Changesets via tfpt.exe, tf.exe, or via the TFS API (from powershell)?Steven Murawski2009-08-02T16:36:57Z2009-08-02T16:36:57Z<p>The <a href="http://msdn.microsoft.com/en-us/teamsystem/bb980963.aspx" rel="nofollow">October 2008 release of the TFS PowerTools</a> has some cmdlets for working with change sets.</p>
<ul>
<li>Add-TfsPendingChange</li>
<li>ConvertTo-FixedByte</li>
<li>ConvertTo-FixedPath </li>
<li>Get-TfsChangeset</li>
<li>Get-TfsChildItem </li>
<li>Get-TfsItemHistory</li>
<li>Get-TfsItemProperty</li>
<li>Get-TfsPendingChange </li>
<li>Get-TfsServer</li>
<li>Get-TfsShelveset </li>
<li>Get-TfsWorkspace</li>
<li>New-TfsChangeset </li>
<li>New-TfsShelveset</li>
<li>Remove-TfsPendingChange</li>
<li>Remove-TfsShelveset</li>
<li>Restore-TfsShelveset </li>
<li>Select-TfsItem</li>
<li>Set-TfsChangeset </li>
<li>Update-TfsWorkspace</li>
</ul>
http://stackoverflow.com/questions/1185868/whats-the-best-way-to-wrap-a-c-class-for-use-by-powershell-script/1185940#11859402Answer by Steven Murawski for Whats the best way to wrap a c# class for use by powershell script. Steven Murawski2009-07-27T00:08:41Z2009-07-28T23:38:13Z<p>If have an assembly (exe or dll) with the class in it, PowerShell can load it via <code>[System.Reflection.Assembly]::LoadFile("PathToYourAssembly")</code>
or in V2</p>
<pre><code>Add-Type -Path "PathToYourAsembly"
</code></pre>
<p>If you are creating a runspace in your application and would like to make an assembly available, you can do that with a <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.runspaces.runspaceconfiguration%28VS.85%29.aspx" rel="nofollow">RunspaceConfiguration</a>.</p>
<pre><code>RunspaceConfiguration rsConfig = RunspaceConfiguration.Create();
AssemblyConfigurationEntry myAssembly = new AssemblyConfigurationEntry("strong name for my assembly", "optional path to my assembly");
rsConfig.Assemblies.Append(myAssembly);
Runspace myRunSpace = RunspaceFactory.CreateRunspace(rsConfig);
myRunSpace.Open();
</code></pre>
http://stackoverflow.com/questions/1184893/how-to-loop-datareader-and-create-datatable-in-powershell/1185081#11850812Answer by Steven Murawski for How to Loop Datareader and create DataTable in PowershellSteven Murawski2009-07-26T17:34:16Z2009-07-26T17:34:16Z<p>Translating <a href="http://stackoverflow.com/questions/1184893/how-to-loop-datareader-and-create-datatable-in-powershell/1184967#1184967">Mladen's answer</a> into PowerShell is pretty straight forward:</p>
<pre><code>$sqlConnection = new-object System.Data.SqlClient.SqlConnection "server=localhost;database=Demo;Integrated Security=sspi"
$sqlConnection.Open()
#Create a command object
$sqlCommand = $sqlConnection.CreateCommand()
$sqlCommand.CommandText = "EXEC Demo.usp_GetTableValueParameter_Data"
#Execute the Command
$sqlReader = $sqlCommand.ExecuteReader()
$Datatable = New-Object System.Data.DataTable
$DataTable.Load($SqlReader)
# Close the database connection
$sqlConnection.Close()
#STARTING OPENXML PROCESS
#----------------------------
$xlsFile = "C:\Temp\Data.xlsx"
$datatable | Export-OpenXmlSpreadSheet -OutputPath $xlsFile -InitialRow 3
</code></pre>
<p>However, if you just need a DataTable back, you don't need to call ExecuteReader on the command, you could create a DataAdapter and use that to fill the DataTable:</p>
<pre><code>$sqlConnection = new-object System.Data.SqlClient.SqlConnection "server=localhost;database=Demo;Integrated Security=sspi"
$sqlConnection.Open()
#Create a command object
$sqlCommand = $sqlConnection.CreateCommand()
$sqlCommand.CommandText = "EXEC Demo.usp_GetTableValueParameter_Data"
$adapter = New-Object System.Data.SqlClient.SqlDataAdapter $sqlcommand
$dataset = New-Object System.Data.DataSet
$adapter.Fill($dataSet) | out-null
# Close the database connection
$sqlConnection.Close()
$datatable = $dataset.Tables[0]
#STARTING OPENXML PROCESS
#----------------------------
$xlsFile = "C:\Temp\Data.xlsx"
$datatable | Export-OpenXmlSpreadSheet -OutputPath $xlsFile -InitialRow 3
</code></pre>
http://stackoverflow.com/questions/1184360/powershell-runspace-vs-dlr/1185056#11850560Answer by Steven Murawski for PowerShell Runspace vs DLRSteven Murawski2009-07-26T17:20:45Z2009-07-26T17:20:45Z<p><a href="http://stackoverflow.com/questions/1184360/powershell-runspace-vs-dlr/1184728#1184728">Doug's answer</a> hits a few key points, but I think the primary reason to use PowerShell as the scripting engine in a .NET application is the fact that PowerShell is becoming the primary management surface across Microsoft applications and will enjoy a greater familiarity among systems administrators who are maintaining your application.</p>
<p>IronPython and IronRuby (as well as anything other language targeted for the DLR) will likely remain more familiar to the developer audience.</p>
http://stackoverflow.com/questions/1142211/try-catch-does-not-seem-to-have-an-effect/1144385#11443852Answer by Steven Murawski for Try/catch does not seem to have an effectSteven Murawski2009-07-17T16:31:35Z2009-07-24T12:45:48Z<p>I was able to duplicate your result when trying to run a remote WMI query. The exception thrown is not caught by the Try/Catch, nor will a Trap catch it, since it is not a "terminating error". In PowerShell, there are terminating errors and non-terminating errors . It appears that Try/Catch/Finally and Trap only works with terminating errors.</p>
<p>It is logged to the $error automatic variable and you can test for these type of non-terminating errors by looking at the $? automatic variable, which will let you know if the last operation succeeded ($true) or failed ($false).</p>
<p>From the appearance of the error generated, it appears that the error is returned and not wrapped in a catchable exception. Below is a trace of the error generated.</p>
<pre><code>PS C:\scripts\PowerShell> Trace-Command -Name errorrecord -Expression {Get-WmiObject win32_bios -ComputerName HostThatIsNotThere} -PSHost
DEBUG: InternalCommand Information: 0 : Constructor Enter Ctor
Microsoft.PowerShell.Commands.GetWmiObjectCommand: 25857563
DEBUG: InternalCommand Information: 0 : Constructor Leave Ctor
Microsoft.PowerShell.Commands.GetWmiObjectCommand: 25857563
DEBUG: ErrorRecord Information: 0 : Constructor Enter Ctor
System.Management.Automation.ErrorRecord: 19621801 exception =
System.Runtime.InteropServices.COMException (0x800706BA): The RPC
server is unavailable. (Exception from HRESULT: 0x800706BA)
at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
at System.Management.ManagementScope.InitializeGuts(Object o)
at System.Management.ManagementScope.Initialize()
at System.Management.ManagementObjectSearcher.Initialize()
at System.Management.ManagementObjectSearcher.Get()
at Microsoft.PowerShell.Commands.GetWmiObjectCommand.BeginProcessing()
errorId = GetWMICOMException errorCategory = InvalidOperation
targetObject =
DEBUG: ErrorRecord Information: 0 : Constructor Leave Ctor
System.Management.Automation.ErrorRecord: 19621801
</code></pre>
<p>A work around for your code could be:</p>
<pre><code>try
{
$colItems = get-wmiobject -class "Win32_PhysicalMemory" -namespace "root\CIMV2" -computername $strComputerName -Credential $credentials
if ($?)
{
foreach ($objItem in $colItems)
{
write-host "Bank Label: " $objItem.BankLabel
write-host "Capacity: " ($objItem.Capacity / 1024 / 1024)
write-host "Caption: " $objItem.Caption
write-host "Creation Class Name: " $objItem.CreationClassName
write-host
}
}
else
{
throw $error[0].Exception
}
</code></pre>
http://stackoverflow.com/questions/1161891/how-can-i-delete-lru-folders-until-5gb-free-space-is-available/1162385#11623851Answer by Steven Murawski for How can I delete LRU folders until 5GB free space is availableSteven Murawski2009-07-22T00:03:34Z2009-07-22T12:28:09Z<p>To schedule the task, you can use the task scheduler (<a href="http://get-admin.com/blog/?p=4" rel="nofollow">example here</a>)</p>
<p>For a script you could use</p>
<pre><code>param($WorkDirectory = 'c:\work'
, $LogFile = 'c:\work\deletelog.txt' )
#Check to see if there is enough free space
if ( ( (Get-WmiObject -Query "SELECT FreeSpace FROM Win32_LogicalDisk WHERE DeviceID = 'C:'").FreeSpace / 1GB ) -lt 5)
{
#Get a list of the folders in the work directory
$FoldersInWorkDirectory = @(Get-ChildItem $WorkDirectory | Where-Object {$_ -is [System.IO.DirectoryInfo]} | Sort-Object -Property LastWriteTime -Descending)
$FolderCount = 0
while ( ( (Get-WmiObject -Query "SELECT FreeSpace FROM Win32_LogicalDisk WHERE DeviceID = 'C:'").FreeSpace / 1GB ) -lt 5)
{
#Remove the directory and attendant files and log the deletion
Remove-Item -Path $FoldersInWorkDirectory[$FolderCount].FullName -Recurse
"$(Get-Date) Deleted $($FoldersInWorkDirectory[$FolderCount].FullName)" | Out-File -Append $LogFile
$FolderCount++
}
}
</code></pre>
http://stackoverflow.com/questions/1060854/what-are-good-guidelines-for-naming-powershell-verbs/1146042#11460421Answer by Steven Murawski for What are good guidelines for naming PowerShell verbs?Steven Murawski2009-07-17T22:54:31Z2009-07-17T22:54:31Z<p>From your use of the word "modules", I'm going to guess you are using V2 of PowerShell, which allows you to take advantage of <a href="http://huddledmasses.org/a-guide-to-advanced-functions/#more-1116" rel="nofollow">Advanced Functions</a>.</p>
<p>Advanced functions provide a way to attribute your function to provide native support for -WhatIf and -Confirm</p>
<pre><code>function Sync-PerforceRepository()
{
[cmdletbinding(SupportShouldProcess=$true)]
param (...) #add your parameters
Begin
{
#setup code here
}
Process
{
if ($pscmdlet.ShouldProcess($ObjectBeingProcessed,"String Describing Action Happening")
{
#Process logic here
}
}
End
{
#Cleanup code
}
}
</code></pre>
http://stackoverflow.com/questions/1145312/where-can-i-find-a-list-of-powershell-net-type-accelerators/1145977#11459771Answer by Steven Murawski for Where can I find a list of Powershell .NET Type Accelerators?Steven Murawski2009-07-17T22:35:08Z2009-07-17T22:35:08Z<p>@<a href="http://stackoverflow.com/questions/1145312/where-can-i-find-a-list-of-powershell-net-type-accelerators/1145390#1145390">Noldorin</a> has a good list of some of the Type Accelerators, with some. </p>
<p>PowerShell also allows you to use type literals to cast objects, call static methods, access static properties, reflect over, and anything else you might do with an instance of a System.Type object.</p>
<p>In order to use a type literal, you just enclose the full name (namespace and class name) of the class (or struct or enum) (with a period separating the namespace and the class name) enclosed in brackets like:</p>
<pre><code>[System.Net.NetworkInformation.IPStatus]
</code></pre>
<p>PowerShell will also provide a leading "System." in its attempt to resolve the name, so you don't need to explicitly use that if you are using something in a System* namespace.</p>
<pre><code>[Net.NetworkInformation.IPStatus]
</code></pre>
<p><a href="http://www.nivot.org/2008/03/27/CreateYourOwnCustomQuotTypeAcceleratorsquotInPowerShell.aspx" rel="nofollow">Oisin Grehan (a PowerShell MVP) also has a blog post about creating your own type accelerators</a>.</p>
http://stackoverflow.com/questions/1145704/can-you-use-an-objects-property-in-a-string-in-powershell/1145935#11459353Answer by Steven Murawski for Can you use an objects property in a string in powershell?Steven Murawski2009-07-17T22:19:07Z2009-07-17T22:19:07Z<p>@Johannes has the correct answer, but I just to add a bit more as to why you need to force the evaluation with the $().</p>
<p>Your example code has a perfect example as to why in string expansion only the primary reference is expanded (in string expansion, the primary expansion is done by calling the ToString() method on the object which can explain some "odd" results). </p>
<p>Your example contained at the very end of the command line:</p>
<p>...\$LogFileName.ldf' "</p>
<p>If properties of objects were expanded by default, the above would resolve to </p>
<p>...\'</p>
<p>since the object referenced by $LogFileName would not have a property called ldf, $null (or an empty string) would be substituted for the variable.</p>
http://stackoverflow.com/questions/1123634/how-do-i-dynamically-create-functions-that-are-accessible-in-a-parent-scope/1125291#11252911Answer by Steven Murawski for How do I dynamically create functions that are accessible in a parent scope?Steven Murawski2009-07-14T13:13:14Z2009-07-14T13:13:14Z<p>Another option would be to use the Set-Item -Path function:global:ChildFunction -Value {...}</p>
<p>Using Set-Item, you can pass either a string or a script block to value for the function's definition.</p>
http://stackoverflow.com/questions/1117396/looping-through-a-csv/1120222#11202223Answer by Steven Murawski for looping through a csvSteven Murawski2009-07-13T15:37:08Z2009-07-13T15:37:08Z<p>One line of PowerShell will read in the CSV file and create a custom object for each home and away team listing (with a property for the city name and for the team name). The last command in the pipeline will eliminate the duplicates.</p>
<pre><code>$TeamsAndCities = import-csv -path c:\mycsvfile.csv | foreach-object { $_.away, $_.home | select-object @{Name='City';Expression={$_.split(' ')[0]}}, @{Name='Team';Expression={$_.split(' ')[1]}} } | select-object -unique
</code></pre>
<p>You can do database access from PowerShell as well, but that might be suited to a new question with some more details about the database you are connecting to.</p>
http://stackoverflow.com/questions/1116894/should-a-windows-developer-know-the-command-line/1120094#11200940Answer by Steven Murawski for Should a Windows developer know the command line?Steven Murawski2009-07-13T15:17:24Z2009-07-13T15:17:24Z<p>If you plan on taking advantage of <a href="http://msdn.microsoft.com/en-us/data/cc655792.aspx" rel="nofollow">Velocity</a> (a distributed caching solution from MS), you will need to learn PowerShell, as that is the only way to configure it. </p>
<p>Configuring IIS in a consistent manner is another plus for PowerShell.</p>
http://stackoverflow.com/questions/999851/can-i-create-my-own-attribute-classes-in-powershell-2-0/1010150#10101501Answer by Steven Murawski for Can I create my own attribute classes in PowerShell 2.0?Steven Murawski2009-06-18T00:15:52Z2009-06-18T00:15:52Z<p>You should be able to create your own attributes, but only for certain purposes - specifically validation and argument transformation. </p>
<p>From the <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.internal.cmdletmetadataattribute%28VS.85%29.aspx" rel="nofollow">MSDN Docs</a>:</p>
<blockquote>
<p>Snap-ins cannot create custom
attributes that derive directly from
CmdletMetadataAttribute because there
is no public constructor. However,
snap-ins can derive custom attributes
from the ValidateArgumentsAttribute
and ArgumentTransformationAttribute
classes.</p>
</blockquote>
<p>I have yet to create a cmdlet attribute and try it in an advanced function though.</p>
http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/897768#8977685Answer by Steven Murawski for What are some of the most useful yet little known features in the PowerShell languageSteven Murawski2009-05-22T13:13:32Z2009-05-31T20:25:59Z<p>A feature that I find is often overlooked is the ability to pass a file to a switch statement.</p>
<p>Switch will iterate through the lines and match against strings (or regular expressions with the -regex parameter), content of variables, numbers, or the line can be passed into an expression to be evaluated as $true or $false</p>
<pre><code>switch -file 'C:\test.txt'
{
'sometext' {Do-Something}
$pwd {Do-SomethingElse}
42 {Write-Host "That's the answer."}
{Test-Path $_} {Do-AThirdThing}
default {'Nothing else matched'}
}
</code></pre>
http://stackoverflow.com/questions/840907/powershell-extension-methods-and-monkey-patching/845818#8458187Answer by Steven Murawski for PowerShell, Extension Methods, and Monkey PatchingSteven Murawski2009-05-10T18:28:18Z2009-05-10T18:28:18Z<p>If you have a method or property you want to add to a particular type, you can create a custom type extension via PowerShell's adaptive type system.</p>
<p>A custom type extension is a an XML file that describes the property or script method to a type and then load it into the PowerShell session via the Update-TypeData cmdlet.</p>
<p>A great example of this can be found on the <a href="http://blogs.msdn.com/powershell/archive/2008/09/06/hate-add-member-powershell-s-adaptive-type-system.aspx" rel="nofollow">PowerShell Team Blog - Hate Add-Member? (PowerShell's Adaptive Type System to the Rescue)</a> </p>
http://stackoverflow.com/questions/809176/powershell-c-measuring-powershell-host-memory-usage/812855#8128551Answer by Steven Murawski for Powershell. C# Measuring powershell host memory usage.Steven Murawski2009-05-01T19:24:03Z2009-05-01T19:24:03Z<p>One of the first areas to check would be that any objects you create in that runspace are dereferenced (no variables pointing towards them) so they can be garbage collected.</p>
<p>A similar issue can happen in the PowerShell console and <a href="http://blog.usepowershell.com/2009/03/tip-free-up-some-memory/" rel="nofollow">I blogged about that problem here</a>.</p>
http://stackoverflow.com/questions/804754/how-do-i-return-only-the-matching-regex-when-i-select-stringgrep-in-powershell/804903#8049034Answer by Steven Murawski for How do I return only the matching regex when i select-string(grep) in powershellSteven Murawski2009-04-30T00:25:46Z2009-04-30T00:25:46Z<p>David's on the right path. [regex] is a type accelerator for System.Text.RegularExpressions.Regex</p>
<pre><code>[regex]$regex = '.-.-.'
$regex.Matches('abc 1-2-3 abc') | foreach-object {$_.Value}
$regex.Matches('abc 1-2-3 abc 4-5-6') | foreach-object {$_.Value}
</code></pre>
<p>You could wrap that in a function if that is too verbose.</p>
http://stackoverflow.com/questions/804133/how-to-loop-through-a-dataset-in-powershell/804713#8047132Answer by Steven Murawski for How to loop through a dataset in powershell?Steven Murawski2009-04-29T23:11:10Z2009-04-29T23:11:10Z<p>The PowerShell string evalutation is calling ToString() on the DataSet. In order to evaluate any properties (or method calls), you have to force evaluation by enclosing the expression in $()</p>
<pre><code>for($i=0;$i -le $ds.Tables[1].Rows.Count;$i++)
{
write-host "value is : $i $($ds.Tables[1].Rows[$i][0])"
}
</code></pre>
<p>Additionally, the foreach keyword allows you to iterate through a collection or array without needing to figure out the length.</p>
<p>Rewritten - </p>
<pre><code>foreach ($Row in $ds.Tables[1].Rows)
{
write-host 'value is : $($Row[0])
}
</code></pre>
http://stackoverflow.com/questions/790796/confused-with-include-parameter-of-the-get-childitem-cmdlet/790925#7909252Answer by Steven Murawski for Confused with -Include parameter of the Get-ChildItem cmdletSteven Murawski2009-04-26T14:22:15Z2009-04-26T14:22:15Z<p>Tacking on to <a href="http://stackoverflow.com/questions/790796/confused-with-include-parameter-of-the-get-childitem-cmdlet/790895#790895">JaredPar's answer</a>, in order to do pattern matching with Get-ChildItem, you can use common shell wildcards.</p>
<p>For example:</p>
<pre><code>get-childitem "c:\test\t?st.txt"
</code></pre>
<p>where the "?" is a wildcard matching any one character or </p>
<pre><code>get-childitem "c:\test\*.txt"
</code></pre>
<p>which will match any file name ending in ".txt".</p>
<p>This should get you the "simpler" behavior you were looking for.</p>
http://stackoverflow.com/questions/710448/reflection-with-powershell/763505#7635051Answer by Steven Murawski for Reflection with PowershellSteven Murawski2009-04-18T14:21:47Z2009-04-18T14:21:47Z<p>Here's a little function you might want to try.. (I haven't tested it yet, as I don't have any criteria to test this with easily..)</p>
<p>It can be used by supplying the paths (one or more full or relative paths separated by commas) on the command line like this</p>
<pre><code>CheckForAbstractClassInheritance -Abstract System.Object -Assembly c:\assemblies\assemblytotest.dll, assemblytotest2.dll
</code></pre>
<p>or from the pipeline</p>
<pre><code>'c:\assemblies\assemblytotest.dll','assemblytotest2.dll' | CheckForAbstractClassInheritance -Abstract System.Object
</code></pre>
<p>or with fileinfo objects from Get-Childitem (dir)</p>
<pre><code>dir c:\assemblies *.dll | CheckForAbstractClassInheritance -Abstract System.Object
</code></pre>
<p>Tweak as needed..</p>
<pre><code>function CheckForAbstractClassInheritance()
{
param ([string]$AbstractClassName, [string[]]$AssemblyPath = $null)
BEGIN
{
if ($AssemblyPath -ne $null)
{
$AssemblyPath | Load-AssemblyForReflection
}
}
PROCESS
{
if ($_ -ne $null)
{
if ($_ -is [FileInfo])
{
$path = $_.fullname
}
else
{
$path = (resolve-path $_).path
}
$types = ([system.reflection.assembly]::ReflectionOnlyLoadFrom($path)).GetTypes()
foreach ($type in $types)
{
if ($type.IsSubClassOf($AbstractClassName))
{
#If the type is a subclass of the requested type,
#write it to the pipeline
$type
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/762927/powershell-ps1-file-wont-run-from-within-powershell/763465#7634652Answer by Steven Murawski for Powershell ps1 file won't run from within PowershellSteven Murawski2009-04-18T13:49:16Z2009-04-18T13:49:16Z<p>If you replace "function listallpaths" with param and get rid of the surrounding {} like this..</p>
<pre><code>param([string]$fromFolder, [string]$filter, [string]$printfile)
Get-ChildItem -Path $fromFolder -Include $filter -Recurse -Force -Name > $printfile
</code></pre>
<p>You will have a script file that you can call as required.</p>
<pre><code>PS> .\listAllPaths.ps1 c:\ *.pdf testingPDF.txt
</code></pre>
<p>As Matt alluded to, by declaring the function, when you called the script, it would create the function and then exit. A PowerShell script is basically a function stored in a file (without the surrounding braces.. they are implied), where the function itself would be stored in memory.</p>
http://stackoverflow.com/questions/738172/powershell-v1-is-it-possible-to-assign-the-result-of-a-switch-statement-to-a-var/738312#7383125Answer by Steven Murawski for Powershell v1: Is it possible to assign the result of a switch statement to a variable?Steven Murawski2009-04-10T17:39:00Z2009-04-10T17:39:00Z<p>For V1, I would wrap the switch statement in a function.</p>
<pre><code>function Get-DocumentLocation($Extension)
{
switch ($Extension)
{
doc {"C:\Users\username\Documents\"; break}
exe {"C:\Users\username\Downloads\"; break}
default {"C:\Users\username\Desktop\"}
}
}
$Location = Get-DocumentLocation $extension
</code></pre>
http://stackoverflow.com/questions/686445/can-powershell-be-used-as-code-behind-for-wpf/686881#6868814Answer by Steven Murawski for Can PowerShell be used as code behind for WPFSteven Murawski2009-03-26T17:57:09Z2009-03-26T17:57:09Z<p>PowerShell can be used to provide functionality in a WPF application. Check out these great blog posts regarding using PowerShell and WPF...</p>
<p>HuddledMasses.Org - PowerBoots - a WPF GUI Toolkit for PowerShell</p>
<p><a href="http://huddledmasses.org/powerboots-shoes-for-powershell/" rel="nofollow">PowerBoots - Shoes for PowerShell</a></p>
<p><a href="http://huddledmasses.org/powerboots-loading-xaml-windows-in-powershell-10-or-20/" rel="nofollow">PowerBoots - Loading XAML Windows in PowerShell 1.0 or 2.0</a></p>
<p>Windows PowerShell Team Blog</p>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/05/25/powershell-and-wpf-wtf.aspx" rel="nofollow">http://blogs.msdn.com/powershell/archive/2008/05/25/powershell-and-wpf-wtf.aspx</a></p>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/05/22/wpf-powershell-part-1-hello-world-welcome-to-the-week-of-wpf.aspx" rel="nofollow">WPF & PowerShell – Part 1 ( Hello World & Welcome to the Week of WPF )</a></p>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/05/23/wpf-powershell-part-2-exploring-wpf-and-the-rest-of-net-with-scripts.aspx" rel="nofollow">WPF & PowerShell – Part 2 (Exploring WPF (and the rest of .NET) with Scripts)</a></p>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/05/24/wpf-powershell-part-3-handling-events.aspx" rel="nofollow">WPF & PowerShell -- Part 3 (Handling Events)</a></p>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/05/25/wpf-powershell-part-4-xaml-show-control.aspx" rel="nofollow">WPF & PowerShell -- Part 4 (XAML & Show-Control)</a></p>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/05/26/wpf-powershell-part-5-using-wpf-powershell-modules.aspx" rel="nofollow">WPF & PowerShell - Part 5 ( Using WPF & PowerShell Modules)</a></p>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/05/27/wpf-powershell-part-6-running-functions-in-the-background.aspx" rel="nofollow">WPF & PowerShell - Part 6 (Running Functions in the Background)</a></p>
<p><a href="http://blogs.msdn.com/powershell/archive/2008/05/28/wpf-powershell-part-7-sharing-hosts.aspx" rel="nofollow">WPF & PowerShell - Part 7 (Sharing Hosts)</a></p>
http://stackoverflow.com/questions/686357/macro-substitution-expandstring-limitations/686834#6868342Answer by Steven Murawski for $macro substitution - ExpandString limitationsSteven Murawski2009-03-26T17:42:21Z2009-03-26T17:42:21Z<p>The error is occurring because quotes (single and double) are special characters to the PowerShell runtime. They indicate a string and if they are to be used as just that character, they need to be escaped.</p>
<p>A possible workaround would be to escape quotes with a backtick, depending on your desired result.</p>
<p>For example if my text file had </p>
<pre><code>'$foo'
</code></pre>
<p>The resulting expansion of that string would be</p>
<pre><code>PS>$text = [io.file]::ReadAllText('test.config')
PS>$ExecutionContext.InvokeCommand.ExpandString($text)
$foo
</code></pre>
<p>If you wanted to have that variable expanded, you would need to escape those quotes.</p>
<pre><code>`'$foo`'
PS>$text = [io.file]::ReadAllText('test.config')
PS>$ExecutionContext.InvokeCommand.ExpandString($text)
'foo'
</code></pre>
<p>or if you were going to have an unpaired single or double quote, you would need to escape it.</p>
<p>You could do a -replace on the string to escape those characters, but you'll have to make sure that is the desired effect across the board.</p>
<pre><code>PS>$single, $double = "'", '"'
PS>$text = [io.file]::ReadAllText('test.config') -replace "($single|$double)", '`$1'
PS>$ExecutionContext.InvokeCommand.ExpandString($text)
</code></pre>
<p>NOTE: After you do the ExpandString call, you won't have the backticks hanging around anymore.</p>
http://stackoverflow.com/questions/668321/how-to-use-powershell-get-member-cmdlet/670059#6700592Answer by Steven Murawski for How to use PowerShell Get-Member cmdletSteven Murawski2009-03-21T21:47:49Z2009-03-21T21:47:49Z<p>I just wrote a <a href="http://blog.usepowershell.com/2009/03/exploring-the-net-framework-with-powershell-static-members-part-4/" rel="nofollow">blog post on exploring static members of classes with PowerShell</a>, which might help. </p>
<p>What is happening when you pipe [Math] to Get-Member, you are passing in an object of System.RunTimeType, and it does return the members of that type.</p>
<p>There is a switch parameter for Get-Member which allows you to examine all the static members of a class:</p>
<pre><code>[Math] | get-member -static
</code></pre>
<p>If you need to find instance members, you will need to create an instance of the class and pipe that to Get-Member.</p>
http://stackoverflow.com/questions/622902/powershell-tips-tricks-for-developers/623647#6236475Answer by Steven Murawski for PowerShell Tips & Tricks for DevelopersSteven Murawski2009-03-08T14:18:34Z2009-03-08T14:18:34Z<p>I use PowerShell to explore and test the functionality of DLL's I've not used before. Loading an assembly in PowerShell and using Get-Member to examine it is a quick way to dig into different types.</p>
http://stackoverflow.com/questions/618749/how-to-get-select-object-to-return-a-raw-type-e-g-string-rather-than-pscustomo/621314#6213143Answer by Steven Murawski for How to get Select-Object to return a raw type (e.g. String) rather than PSCustomObject?Steven Murawski2009-03-07T04:32:46Z2009-03-07T05:49:17Z<p>To get the string for the file name you can use </p>
<pre><code>$files = Get-ChildItem $directory -Recurse | Where-Object {!($_.psiscontainer)} | Select-Object -ExpandProperty FullName
</code></pre>
<p>The -ExpandProperty parameter allows you to get back an object based on the type of the property specified.</p>
<p>Further testing shows that this did not work with V1, but that functionality is fixed as of the V2 CTP3.</p>
http://stackoverflow.com/questions/567650/how-to-reload-user-profile-from-script-file-in-powershell/569617#5696172Answer by Steven Murawski for How to reload user profile from script file in PowerShellSteven Murawski2009-02-20T13:48:34Z2009-02-21T00:45:45Z<p>If you want to globally refresh your profile from a script, you will have to run that script "dot-sourced". </p>
<p>When you run your script, all the profile script runs in a "script" scope and will not modify your "global" scope. </p>
<p>In order for a script to modify your global scope, it needs to be "dot-source" or preceded with a period.</p>
<pre><code>. ./yourrestartscript.ps1
</code></pre>
<p>where you have your profile script "dot-sourced" inside of "yourrestartscript.ps1". What you are actually doing is telling "yourrestartscript" to run in the current scope and inside that script, you are telling the $profile script to run in the script's scope. Since the script's scope is the global scope, any variables set or commands in your profile will happen in the global scope.</p>
<p>That doesn't buy you much advantage over running</p>
<pre><code>. $profile
</code></pre>
http://stackoverflow.com/questions/1306858/is-there-no-tfs-snapin-for-powershell-on-x64/1307612#1307612Comment by Steven Murawski on Is there no TFS Snapin for PowerShell on x64?Steven Murawski2009-08-20T19:43:18Z2009-08-20T19:43:18ZThe TFS snapin in the TFS PowerTools was built for x86 only. He's not recompiling the TFS PowerTools snapin.http://stackoverflow.com/questions/1203733/how-do-i-determine-if-a-powershell-cmdlet-parameter-value-was-specifiedComment by Steven Murawski on How do I determine if a PowerShell Cmdlet parameter value was specified?Steven Murawski2009-07-30T15:23:29Z2009-07-30T15:23:29Z@Jack Straw
If you have "potentially got many cmdlets with 100's of parameters", you might want to look at breaking some of that functionality up. One of the key benefits of PowerShell is discoverability and having large numbers of parameters makes self discovery that much more difficult.http://stackoverflow.com/questions/1185868/whats-the-best-way-to-wrap-a-c-class-for-use-by-powershell-script/1185940#1185940Comment by Steven Murawski on Whats the best way to wrap a c# class for use by powershell script. Steven Murawski2009-07-28T23:38:51Z2009-07-28T23:38:51ZI updated my answer to show how to add an assembly to the runspace configuration.http://stackoverflow.com/questions/1184360/powershell-runspace-vs-dlr/1185056#1185056Comment by Steven Murawski on PowerShell Runspace vs DLRSteven Murawski2009-07-26T23:56:52Z2009-07-26T23:56:52ZDon't get me wrong, I have no object to seeing PowerShell hosted on the DLR, but when looking to integrate a scripting language into an application, I think PowerShell should be the language of choice due to the growing base of familiarity with admins, devs, and others.http://stackoverflow.com/questions/1184360/powershell-runspace-vs-dlr/1185056#1185056Comment by Steven Murawski on PowerShell Runspace vs DLRSteven Murawski2009-07-26T20:12:31Z2009-07-26T20:12:31ZI think PowerShell is more appropriate for an enterprise application that is maintained by systems admins or "power users". Applications where developers will be doing more of the scripting could go either way.http://stackoverflow.com/questions/1142211/try-catch-does-not-seem-to-have-an-effect/1144385#1144385Comment by Steven Murawski on Try/catch does not seem to have an effectSteven Murawski2009-07-24T12:46:41Z2009-07-24T12:46:41Z@JasonMArcher - Right you are! Setting $ErrorActionPreference to 'Stop' as would work as well, but would have a global effect.http://stackoverflow.com/questions/1174487/is-powershell-going-to-replace-vbscript-in-near-futureComment by Steven Murawski on Is Powershell going to replace VBScript in near future?Steven Murawski2009-07-23T22:36:29Z2009-07-23T22:36:29ZRegarding your "Exercise", I may not be the best judge, but I find PowerShell scripts very readable and that is what really helped me become comfortable in the language.http://stackoverflow.com/questions/1174487/is-powershell-going-to-replace-vbscript-in-near-futureComment by Steven Murawski on Is Powershell going to replace VBScript in near future?Steven Murawski2009-07-23T22:35:16Z2009-07-23T22:35:16ZThe PowerGUI script editor has a VBScript Snippet translator where you can select a VBScript snippet and it will fill in the comparable PowerShell.http://stackoverflow.com/questions/1142211/try-catch-does-not-seem-to-have-an-effect/1144385#1144385Comment by Steven Murawski on Try/catch does not seem to have an effectSteven Murawski2009-07-18T13:11:05Z2009-07-18T13:11:05ZUpdated with a workaround.http://stackoverflow.com/questions/1142211/try-catch-does-not-seem-to-have-an-effectComment by Steven Murawski on Try/catch does not seem to have an effectSteven Murawski2009-07-18T13:10:33Z2009-07-18T13:10:33Z@EKS I updated my answer with a workaround.http://stackoverflow.com/questions/1142211/try-catch-does-not-seem-to-have-an-effect/1142257#1142257Comment by Steven Murawski on Try/catch does not seem to have an effectSteven Murawski2009-07-18T12:30:44Z2009-07-18T12:30:44ZTry/Catch/Finally does not exist in V1 of PowerShell, but it is in V2.http://stackoverflow.com/questions/1145312/where-can-i-find-a-list-of-powershell-net-type-acceleratorsComment by Steven Murawski on Where can I find a list of Powershell .NET Type Accelerators?Steven Murawski2009-07-17T22:25:35Z2009-07-17T22:25:35ZI replaced your use of the word alias with the type accelerators. In PowerShell, aliases are a different animal completely; they are shortcuts for commands, functions, and scripts.http://stackoverflow.com/questions/1022181/powershell-ise-wpf-control-in-lining/1023185#1023185Comment by Steven Murawski on PowerShell ISE WPF control in-liningSteven Murawski2009-06-21T16:10:18Z2009-06-21T16:10:18ZI haven't seen the .xaml file they are using, so I think Andy is correct that the only extension point is through the $psise object. I think the .xaml file has been compiled into one of the assemblies.http://stackoverflow.com/questions/1012973/can-powershell-autoconvert-error-output-into-exceptionsComment by Steven Murawski on Can PowerShell autoconvert error output into exceptions?Steven Murawski2009-06-19T13:08:25Z2009-06-19T13:08:25ZScott, I would make the last two questions a separate question.http://stackoverflow.com/questions/1013748/powershell-leave-item-alone-if-regex-doesnt-match/1013849#1013849Comment by Steven Murawski on Powershell: Leave item alone if regex doesn't matchSteven Murawski2009-06-19T12:59:58Z2009-06-19T12:59:58ZYou can do an if/else in a pipeline if it is part of a script block used by foreach-object. I'll edit your pipeline to show the correct syntax. By Shay Levy's answer really takes advantage of the regular expression support native in PowerShell.