Assemblies

.NET objects are implemented within assemblies. An assembly may be static (based on a file) or dynamic (created in memory).

Many of the most commonly used classes exist in DLL files stored in %SystemRoot%Assembly. The list of currently loaded assemblies in a PowerShell session may be viewed using the following statement:

[System.AppDomain]::CurrentDomain.GetAssemblies() 

Once an assembly, and the types it contains, has been loaded into a session, it can't be unloaded without completely restarting the session.

Much of PowerShell is implemented in the System.Management.Automation DLL. Details of this can be shown using the following statement:

[System.Management.Automation.PowerShell].Assembly 

In this statement, the PowerShell type is chosen to get the assembly. Any other type in the same assembly is able to show the same information. The PowerShell type could be replaced with another in the previous command, as follows:

[System.Management.Automation.PSCredential].Assembly 
[System.Management.Automation.PSObject].Assembly 
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
52.14.240.178