How do you create an IShellLibrary (http://msdn.microsoft.com/en-us/library/windows/desktop/dd391719(v=vs.85).aspx) instance in PowerShell? The IShellLibrary interface makes it possible to manage Windows 7 libraries from code.
Does the Shell.Application COM object implement the IShellLibrary interface? Is it possible to cast a shell object to an IShellLibraryinstance in PowerShell? Below is an example on how to create a Shell.Application instance in PowerShell:
New-Object -ComObject Shell.Application
When I try to cast the object the result is:
PS C:\Users\knut> [IShellLibrary](New-Object -ComObject Shell.Application)
Unable to find type [IShellLibrary]: make sure that the assembly containing this type is loaded.
At line:1 char:16
+ [IShellLibrary] <<<< (New-Object -ComObject Shell.Application)
+ CategoryInfo : InvalidOperation: (IShellLibrary:String) [], RuntimeException
+ FullyQualifiedErrorId : TypeNotFound
Where is the IShellLibrary interface located? How can I import it into the PowerShell session?