Powershell Links _A bunch of links for powershell things I like and want to remember_ --- * Seb's IT Blog - [Fix PowerShell snap package TLS issues][1] On fresh PowerShell installs using the snap package, you can't use the gallery, `Invoke-Webrequest` or `Invoke-RestMethod` to any ssl sites unless you set this variable before running `pwsh`: export DOTNET_SYSTEM_NET_HTTP_USESOCKETSHTTPHANDLER=0 * Kevin Marquette writes a series delving into specific topics on PowerShell. Like in this weeks entry [PowerShell: Everything you wanted to know about PSCustomObject](https://powershellexplained.com/2016-10-28-powershell-everything-you-wanted-to-know-about-pscustomobject/?utm_source=twitter&utm_medium=blog&utm_content=bottomlink) has some great extended functionality of custom objects that I did not know about. * Another amazing bost by Kevin Marquette. This time on arrays. Ashamed to say I did not know adding to arrays was so expensive! [check it out](https://powershellexplained.com/2018-10-15-PowerShell-arrays-Everything-you-wanted-to-know/?utm_source=twitter&utm_medium=blog&utm_content=bottomlink) Tags: powershell-links, link-lists [1]:https://megamorf.gitlab.io/2018/10/17/ps-core-snap-tls-issue.html