View Single Post
Old 09-05-2007   #5 (permalink)
Kiron


 
 

Re: Where can I find System.management.automation.resources.dll

You can open its folder:

get-childItem $env:windir
System.management.automation.resources.dll -recurse | foreach
{$_.fullname -replace $_.name} | invoke-item

...or copy the assembly:

$dll = @(get-childItem $env:windir
System.management.automation.resources.dll -recurse)
copy-item $dll[0].fullName <destination>

--
Kiron

My System SpecsSystem Spec