How bad is it to not dispose() in Powershell?
This has been edited to include a safe, nonspecific answer. IN GENERAL: dispose everything, because Dispose is the .NET framework’s way to free up external resources (such as file handles, TCP ports, database connections, etc). Resources are not guaranteed to be released unless you call Dispose(). So beware. This is the general, non-SharePoint answer. SPECIFICALLY … Read more