October 17, 2006
@ 08:39 AM

This is dumb, but I find myself using this a lot recently, and want to remember it. Some things I installed a long time ago put some assemblies in the GAC and I kept getting these gac'd references in my assemblies.

gacutil.exe /l 
| where {$_ -like '*nunit*'} 
|% {gacutil /u $_}

I really love the "|%" syntax. I wish C# had that: someCollection |% $_.SomeMethod.


 
Categories: admin | scripting

Last week I saw this useful set of sample scripts for admin tasks. This morning I finally got to review it.

I like this kind of stuff because I rarely have time to learn admin skillz, yet, as a developer, I need to use them for trouble-shooting and keeping our development environment in order.

To bad these weren't in PSH.

Source: STUFF YOU CAN USE!! Finger Saving Good – No Touch Administration
Originally published on Fri, 08 Sep 2006 17:37:00 GMT


 
Categories: tool | admin | scripting