zigford.org/powershell-links.md
2020-07-21 06:49:32 +10:00

1.2 KiB

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 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 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

Tags: powershell-links, link-lists