February 2019
Intermediate to advanced
626 pages
15h 51m
English
.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 ...
Read now
Unlock full access