How to enable HTTP Strict-Transport-Security (HSTS) on IIS

IIS 10.0 FTP IP Security allow list

apt-cache search monit lists "monit – utility for monitoring and managing daemons or similar programs"

…clients (set to $false) on # your virtual FTP Site in IIS. #> Set-WebConfigurationProperty -Filter /system.ftpserver/security/ipsecurity -Name allowUnlisted -Value “True” -PSPath ‘IIS:’ Set-WebConfigurationProperty -Filter /system.ftpserver/security/ipsecurity -Name allowUnlisted -Value “False” -PSPath…

Windows SID to username and vice versa

apt-cache search monit lists "monit – utility for monitoring and managing daemons or similar programs"

…= New-Object System.Security.Principal.NTAccount(“LOCAL_USER_NAME”) $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier]) $strSID.Value These use the System.Security.Principal.NTAccount class of .NET. Using Get-CimInstance / WMI, you can use: Get-CimInstance -ClassName Win32_UserAccount | ?{$_.Name -eq “USER_NAME”} | Select-Object SID #…