Linking against RC2
The RC2 SDK is not yet available. Until it is, here is a quick and dirty way for you to find/extract the DLLs to link your code against. Do this from a RC2 shell and you'll a copy of the DLLS in C:\SDK:
PS>[appdomain]::currentdomain.getassemblies() |
where {($_.fullname -match "system.management") -OR ($_.fullname –match "Microsoft")} |
copy-item -path {$_.location} -destination c:\sdk\ -verbose
Enjoy!
Jeffrey Snover [MSFT]
Windows PowerShell/MMC Architect
Visit the Windows PowerShell Team blog at: http://blogs.msdn.com/PowerShell
Visit the Windows PowerShell ScriptCenter at: http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx