Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

function main {
Update-Windows-Configuration
Install-Utils
Install-Browsers
Install-Fonts
@spellingb
spellingb / Get-RemoteSSLCertificate.ps1
Created February 26, 2021 21:22 — forked from jstangroome/Get-RemoteSSLCertificate.ps1
PowerShell script to retrieve the public SSL certificate from a remote SSL endpoint
[CmdletBinding()]
param (
[Parameter(Mandatory=$true)]
[string]
$ComputerName,
[int]
$Port = 443
)