what must i always do to avoid this common error :
make sure that the assembly containing this type is loaded ?
what must i always do to avoid this common error :
make sure that the assembly containing this type is loaded ?
On Aug 16, 1:11 am, "IT Staff" <jkk...@hotmail.com> wrote:
> what must i always do to avoid this common error :
>
> make sure that the assembly containing this type is loaded ?
PS> [void][reflection.assembly]::loadwithpartialname("system.drawing")
- Oisin
You can also use the Resolve-assembly cmdlet from the PowerShell community
extensions
--
Richard Siddaway
Please note that all scripts are supplied "as is" and with no warranty
Blog: http://richardsiddaway.spaces.live.com/
PowerShell User Group: http://www.get-psuguk.org.uk
"Oisin Grehan" wrote:
> On Aug 16, 1:11 am, "IT Staff" <jkk...@hotmail.com> wrote:
> > what must i always do to avoid this common error :
> >
> > make sure that the assembly containing this type is loaded ?
>
> PS> [void][reflection.assembly]::loadwithpartialname("system.drawing")
>
> - Oisin
>
>
On Aug 16, 8:44 pm, RichS <Ri...@discussions.microsoft.com> wrote:
> You can also use the Resolve-assembly cmdlet from the PowerShell community
> extensions
> --
> Richard Siddaway
> Please note that all scripts are supplied "as is" and with no warranty
> Blog:http://richardsiddaway.spaces.live.com/
> PowerShell User Group:http://www.get-psuguk.org.uk
>
>
>
> "Oisin Grehan" wrote:
> > On Aug 16, 1:11 am, "IT Staff" <jkk...@hotmail.com> wrote:
> > > what must i always do to avoid this common error :
>
> > > make sure that the assembly containing this type is loaded ?
>
> > PS> [void][reflection.assembly]::loadwithpartialname("system.drawing")
>
> > - Oisin- Hide quoted text -
>
> - Show quoted text -
Which I wrote, ironically. :-)
- Oisin
On Aug 16, 8:44 pm, RichS <Ri...@discussions.microsoft.com> wrote:
> You can also use the Resolve-assembly cmdlet from the PowerShell community
> extensions
> --
> Richard Siddaway
> Please note that all scripts are supplied "as is" and with no warranty
> Blog:http://richardsiddaway.spaces.live.com/
> PowerShell User Group:http://www.get-psuguk.org.uk
and alternatively, using pscx, there is a GAC: drive. Calling invoke-
item against any of the paths -- wildcards also work -- will load the
assembly(ies). This is handy for batch loading of related assemblies.
e.g.
PS > ii gac:system.workflow*
GAC Version Location
--- ------- --------
True v2.0.50727 C:\WINDOWS\assembly\GAC_MSIL
\System.Workflow.ComponentModel\3.0.0.0__31bf3856ad364e35\System.W...
True v2.0.50727 C:\WINDOWS\assembly\GAC_MSIL
\System.Workflow.Activities\3.0.0.0__31bf3856ad364e35\System.Workf...
True v2.0.50727 C:\WINDOWS\assembly\GAC_MSIL
\System.Workflow.Runtime\3.0.0.0__31bf3856ad364e35\System.Workflow...
True v2.0.50727 C:\WINDOWS\assembly\GAC_MSIL
\System.WorkflowServices\3.5.0.0__31bf3856ad364e35\System.Workflow...
("ii" is an alias for invoke-item).
- Oisin
| Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ASP namespace strong type access for dynamically loaded user control | GJ | .NET General | 0 | 07 Apr 2008 |
| Re: Unable to cast COM object of type 'ADODB.RecordsetClass' to class type 'System.Object[]' | Michel Posseth [MCP] | .NET General | 2 | 27 Mar 2008 |
| Search unable to find Word documents when "Document" type selected | Kristan M. Kenney [MVP] | Vista file management | 0 | 29 Nov 2007 |
| Checking whether a type is loaded _efficiently_? | Alex K. Angelopoulos [MVP] | PowerShell | 6 | 02 Aug 2006 |
| Could not locate the assembly for type | Jérôme Piquot | WinFS | 1 | 20 Apr 2006 |