All of Windows Cipher Suites

All of Windows Cipher Suites

Working on a security project and I needed a reference guide as to what cipher suites are supported on what OS. So I have documented a list of the default cipher suites and their preferred order for every Windows Server version. These were gathered from fully patched operating systems. [su_note note_color=”#efacad”]These are the server defaults […]

Continue Reading
Guide to migrate FRS to DFSR

Guide to migrate FRS to DFSR

For most users this article only applies if you have Window 2003/ 2003 R2 Domain Controller in your enviornment that you are planning to get rid off. Pretty soon I hope! ๐Ÿ˜‰ [su_tooltip position=”north” content=”FRS – File Replication Service DFSR – Distributed File System for Replication[/su_tooltip] SYSVOL is a folder shared by domain controller to […]

Continue Reading

Check Proxy settings from Powershell

To check the proxy settings like ProxyOveride or if it is enabled or not: Get-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” To disable proxy from PowerShell: Set-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” ProxyEnable -value 0 To enable proxy from PowerShell: Set-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” ProxyEnable -value 1  

Continue Reading