|
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 |