├── Backups.md ├── Command-Line.md ├── Command-Prompt.md ├── DNS.md ├── Email Hosting Tools.md ├── Hardware.md ├── ISO PE Boot Disks.md ├── Linux-Tools.md ├── Malware-Removal.md ├── MarkDown-Editors.md ├── Networking-Tools.md ├── NinjaOne-RMM.md ├── Online-Storage.md ├── Penetration-Testing.md ├── PowerShell-Commands.md ├── PowerShell-Scripting-Resources.md ├── PowerShell-Scripts.md ├── Project-Management.md ├── Security-Tools.md ├── Self-Hosted.md ├── Subreddits.md ├── VMware.md ├── Web-Server-Administration.md ├── Web-Tools.md ├── Windows-Administration.md ├── Windows-Tools.md └── o365-Tools-Resources.md /Backups.md: -------------------------------------------------------------------------------- 1 | # Backup Tools 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **veeam** - Gold Standard for Virtual Machine Backups 12 | 13 | https://www.veeam.com/ 14 | 15 |   16 |   17 | 18 | --- 19 | 20 | **veeam Windows Agent** - Free Backup Solution for Standalone Windows Machines 21 | 22 | https://www.veeam.com/agent-for-windows-community-edition.html 23 | 24 |   25 |   26 | 27 | --- 28 | 29 | 30 | 31 | **easeus** - Simple backup / restore / transfer software 32 | 33 | https://www.easeus.com/backup-software/ 34 | 35 |   36 |   37 | 38 | --- 39 | 40 | 41 | -------------------------------------------------------------------------------- /Command-Line.md: -------------------------------------------------------------------------------- 1 | ## Linux Command Line Commands 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **Run Command Line In Windows** - Overview of how to use Windows as a command line terminal 11 | 12 | https://learn.microsoft.com/en-us/windows/terminal/command-line-arguments?tabs=windows 13 | 14 |   15 |   16 | 17 | --- 18 | 19 | **Command Line One Liners** - Useful list of popular commands 20 | 21 | https://www.commandlinefu.com/commands/browse/sort-by-votes 22 | 23 |   24 |   25 | -------------------------------------------------------------------------------- /Command-Prompt.md: -------------------------------------------------------------------------------- 1 | ## Windows Command Prompt Commands 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | List of useful / less known command line commands for Windows (Run cmd.exe as local admin). A good overview of windows command line can be found here: https://learn.microsoft.com/en-us/windows/terminal/command-line-arguments?tabs=windows 11 | 12 | 13 | 14 | --- 15 | 16 | 17 | **Reboot To Bios** - Force Reboot System into BIOS. 18 | 19 | ``` 20 | shutdown /r /fw /f /t 0 21 | ``` 22 | 23 |   24 |   25 | 26 | --- 27 | 28 | **Get your public IP address** - Outputs public IP 29 | 30 | ``` 31 | curl ifcfg.me 32 | ``` 33 | 34 |   35 |   36 | 37 | --- 38 | 39 | 40 | **Get System MAC Address** - Provides you with a list of Netwrok Adapter MAC Addresses 41 | 42 | ``` 43 | getmac /v 44 | ``` 45 |   46 |   47 | 48 | --- 49 | 50 | **Show File Assoications** - Displays a list of all the current file name extension associations 51 | 52 | ``` 53 | assoc 54 | ``` 55 | 56 | To see file type associated .txt file 57 | 58 | ``` 59 | assoc .txt 60 | ``` 61 | To remove file type association with .txt 62 | 63 | ``` 64 | assoc .txt= 65 | ``` 66 | 67 | More exaples: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/assoc 68 | 69 |   70 |   71 | 72 | --- 73 | 74 | **Force System Reboot / Shutdown** - Force Reboot or Shutdown the system 75 | 76 | 77 | To Force Reboot 78 | ``` 79 | shutdown.exe -f -r -t 00 80 | ``` 81 | 82 | 83 | To Force Shutdown 84 | ``` 85 | shutdown.exe -f -s -t 00 86 | ``` 87 | 88 | 89 |   90 |   91 | 92 | --- 93 | 94 | -------------------------------------------------------------------------------- /DNS.md: -------------------------------------------------------------------------------- 1 | ## DNS 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **ViewDNS.info** - Multi DNS tool / resource 12 | 13 | https://viewdns.info/ 14 | 15 |   16 |   17 | 18 | --- 19 | 20 | **CentralOps** - DNS and Domain tools 21 | 22 | https://centralops.net/co/ 23 | 24 |   25 |   26 | 27 | --- 28 | 29 | 30 | **MXToolbox** - DNS Lookup tool 31 | 32 | [https://centralops.net/co/](https://mxtoolbox.com/DnsLookup.aspx) 33 | 34 |   35 |   36 | 37 | --- 38 | 39 | -------------------------------------------------------------------------------- /Email Hosting Tools.md: -------------------------------------------------------------------------------- 1 | ## E-mail / Hosting Tools 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **DSL Reports** - ISP Reports and Tools 11 | 12 | http://www.dslreports.com/ 13 | 14 |   15 |   16 | 17 | **MX Toolbox** - E-mail Monitoring and Testing 18 | 19 | https://mxtoolbox.com/ 20 | 21 |   22 |   23 | 24 | **multirbl.valli** - The complete IP check for sending Mailservers 25 | 26 | http://multirbl.valli.org/ 27 | 28 |   29 |   30 | 31 | **DNSlytics** - DNS Search and Analytics Tool 32 | 33 | https://dnslytics.com/ 34 | 35 |   36 |   37 | 38 | 39 | **Office365 Basic Hygiene Checkup** - Step by step guide to setting up o365 mail 40 | 41 | https://github.com/duocircle/Office365-Setup-DKIM-DMARC-SPF 42 | 43 |   44 |   45 | 46 | 47 | **Central OPS** - Domain + E-mail Dossier / WHO IS / NS Lookup 48 | 49 | https://centralops.net 50 | 51 |   52 |   53 | 54 | **DKIMvalidator** - DomainKeys, DKIM, and SPF Validitay Test 55 | 56 | http://dkimvalidator.com/ 57 | 58 |   59 |   60 | 61 | **SPF Testing Tool** - Tool to help deploy SPF records to your domain 62 | 63 | https://kitterman.com/spf/validate.html 64 | 65 |   66 |   67 | 68 | **DMARCIAN** - Tool for parsing DMARC reports 69 | 70 | https://dmarcian.com 71 | 72 |   73 |   74 | 75 | **DMARC Deployment Tools** - Tools for creating DMARC records 76 | 77 | https://dmarc.org/resources/deployment-tools/ 78 | 79 |   80 |   81 | 82 | **Guide for DMARC / DKIM / SPF** - How to Implement DMARC/DKIM/SPF to Stop Email Spoofing/Phishing 83 | 84 | https://dmarcly.com/blog/how-to-implement-dmarc-dkim-spf-to-stop-email-spoofing-phishing-the-definitive-guide 85 | 86 |   87 |   88 | -------------------------------------------------------------------------------- /Hardware.md: -------------------------------------------------------------------------------- 1 | ## Hardware 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **OCCT** - Hardware diagnostic and monitor (CPU / Motherboard / RAM) 11 | 12 | http://www.ocbase.com/index.php/download 13 | 14 |   15 |   16 | 17 | **Core Temp** - Monitor system temperature 18 | 19 | https://www.alcpu.com/CoreTemp/ 20 | 21 |   22 |   23 | 24 | 25 | **Guru3D Display Driver Uninstaller** - Clean removal of display drivers 26 | 27 | https://www.guru3d.com/files-details/display-driver-uninstaller-download,3.html 28 | 29 |   30 |   31 | 32 | **Driver Automation Tool** - Automate Driver Downloads & Packaging for SCCM/MDT 33 | 34 | https://gallery.technet.microsoft.com/scriptcenter/Driver-Tool-Automate-9ddcc010 35 | 36 |   37 |   38 | 39 | --- 40 | -------------------------------------------------------------------------------- /ISO PE Boot Disks.md: -------------------------------------------------------------------------------- 1 | ## ISO Boot Disks / PE Disks 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **YUMI Multi Boot** - Linux Multi Boot Disc 12 | 13 | https://www.pendrivelinux.com/yumi-multiboot-usb-creator/ 14 | 15 |   16 |   17 | 18 | **Hiren Boot Disk** - Diganostic Boot Disc (Updated W10 version) 19 | 20 | https://www.hirensbootcd.org/ 21 | 22 |   23 |   24 | 25 | 26 | **netboot.xyz** - PXE boot various operating system installers or utilities from one place 27 | 28 | https://netboot.xyz/ 29 | 30 |   31 |   32 | -------------------------------------------------------------------------------- /Linux-Tools.md: -------------------------------------------------------------------------------- 1 | # Linux Tools 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **Convert Path** - Convert Windows Path to Linux / UNIX 12 | 13 | https://universalpathconverter.com/ 14 | 15 |   16 |   17 | 18 | --- 19 | -------------------------------------------------------------------------------- /Malware-Removal.md: -------------------------------------------------------------------------------- 1 | ## Malware Removal 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **Tron Script** - Script to remove malware / optimize windows systems 12 | 13 | https://www.reddit.com/r/TronScript/ 14 | 15 |   16 |   17 | 18 | **Virus Total** - Online Virus Scan Tool 19 | 20 | https://www.virustotal.com 21 | 22 |   23 |   24 | 25 | --- 26 | --- 27 | -------------------------------------------------------------------------------- /MarkDown-Editors.md: -------------------------------------------------------------------------------- 1 | ## MarkDown Editors / Tools 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **Fugue Icons set** - Good set of icons for technical documentation. 12 | 13 | https://p.yusukekamiyamane.com/ 14 | 15 |   16 |   17 | 18 | --- 19 | 20 | **Dillinger Markdown Editor** - Online Markdown editor with live preview 21 | 22 | https://dillinger.io/ 23 | 24 |   25 |   26 | 27 | --- 28 | 29 | **Markdown Cheat Sheet** - A quick reference to the Markdown syntax. 30 | 31 | https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet 32 | 33 |   34 |   35 | 36 | --- 37 | 38 | 39 | **One Mark** - Markdown Plugin for Microsoft OneNote. 40 | 41 | https://onemark.neux.studio/ 42 | 43 |   44 |   45 | 46 | --- 47 | -------------------------------------------------------------------------------- /Networking-Tools.md: -------------------------------------------------------------------------------- 1 | ## Networking Tools 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **PingInfoView** - Ping monitor utility 12 | 13 | https://www.nirsoft.net/utils/multiple_ping_tool.html 14 | 15 |   16 |   17 | 18 | --- 19 | 20 | 21 | 22 | 23 | **PRTG Network Monitor** - PRTG ping monitoring tool 24 | 25 | https://www.paessler.com/ping-monitoring 26 | 27 |   28 |   29 | 30 | --- 31 | 32 | 33 | 34 | **Glasswire Network Firewall** - Current & past network activity Detect malware, & block badly behaving apps 35 | 36 | https://www.glasswire.com/ 37 | 38 |   39 |   40 | 41 | --- 42 | 43 | **imup** - Internet and ISP uptime monitor tool, good free option 44 | 45 | https://www.imup.io/ 46 | 47 |   48 |   49 | 50 | --- 51 | 52 | **Zenmap GUI** - GUI for NMAP, scans ports of IP's (useful for pen tests) 53 | 54 | https://nmap.org/zenmap/ 55 | 56 |   57 |   58 | 59 | --- 60 | 61 | **Advanced IP Scanner** - Scans Addresses and Ports 62 | 63 | https://www.advanced-ip-scanner.com/ 64 | 65 |   66 |   67 | 68 | --- 69 | 70 | **TCPView** - Windows program that will show you detailed listings of all TCP and UDP endpoints 71 | 72 | https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview 73 | 74 |   75 |   76 | 77 | --- 78 | 79 | **WireShark** - Network Protocol Analyzer 80 | 81 | https://www.wireshark.org/ 82 | 83 |   84 |   85 | 86 | --- 87 | -------------------------------------------------------------------------------- /NinjaOne-RMM.md: -------------------------------------------------------------------------------- 1 | ## NinjaOne RMM Tool Resources 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **NinjaOne Application Tracking** - NinjaOne to establish a whitelist of authorized applications in an organization 12 | 13 | https://github.com/jeffhunterninja/NinjaOne-Scripts/tree/main/Application%20Tracking 14 | 15 |   16 |   17 | 18 | -------------------------------------------------------------------------------- /Online-Storage.md: -------------------------------------------------------------------------------- 1 | ## Online File Share / Cloud Storage 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **NoFile.io** - Secure file share (up to 10gig free) 12 | 13 | https://nofile.io/ 14 | 15 |   16 |   17 | 18 | **odrive** - Sync all cloud storage in one place 19 | 20 | https://www.odrive.com/ 21 | 22 |   23 |   24 | 25 | **ownCloud** - OpenSource Cloud Collaboration Platform 26 | 27 | https://owncloud.org/ 28 | 29 |   30 |   31 | -------------------------------------------------------------------------------- /Penetration-Testing.md: -------------------------------------------------------------------------------- 1 | ## Penetration Testing 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **Kali Linux** - Penetration Testing Linux Distro 12 | 13 | https://www.kali.org/ 14 | 15 |   16 |   17 | 18 | **NMap** - Network discovery and security auditing tool (port scan) 19 | 20 | https://nmap.org/ 21 | 22 |   23 |   24 | 25 | **Outgoing Port Tester** - Listens on all TCP ports, allowing you to test any outbound TCP port 26 | 27 | http://portquiz.net/ 28 | 29 |   30 |   31 | -------------------------------------------------------------------------------- /PowerShell-Commands.md: -------------------------------------------------------------------------------- 1 | ## PowerShell Commands 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | **Check if Hostname + Port can be resolved on local network** 10 | 11 | 12 | 13 | Test-NetConnection [FQDN/IP Address] -Port [port number] 14 | 15 | Example: 16 | 17 | Test-NetConnection google.com -Port 443 18 | 19 | 20 | 21 | Can also be checked at this website: https://portchecker.co/ 22 | 23 |   24 |   25 | 26 | --- 27 | 28 |   29 |   30 | 31 | -------------------------------------------------------------------------------- /PowerShell-Scripting-Resources.md: -------------------------------------------------------------------------------- 1 | ## Scripting Resources 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | 12 | **Learn X in Y minutes, Where X=powershell** - Good outline of PowerShell Language 13 | 14 | https://learnxinyminutes.com/docs/powershell/ 15 | 16 |   17 |   18 | 19 | **SS64** - Command line reference – Database and OS scripting 20 | 21 | https://ss64.com/ 22 | 23 |   24 |   25 | 26 | **POSH GUI** - (Powershell GUI Designer) 27 | 28 | https://poshgui.com/ 29 | 30 |   31 |   32 | 33 | **Dicio** - Runs powershell scripts targeting multiple hosts at once. 34 | 35 | https://github.com/Wrexthor/Dicio 36 | 37 |   38 |   39 | 40 | **PowerShell Script Browser** - Search through library of TechNet PowerShell scripts 41 | 42 | https://www.powershellgallery.com/packages/ScriptBrowser/1.3.1.0 43 | 44 | 45 | ```powershell 46 | Install-Module -Name Scriptbrowser 47 | 48 | 49 | Enable-ScriptBrowser 50 | 51 | ``` 52 | 53 |   54 |   55 | 56 | 57 | -------------------------------------------------------------------------------- /PowerShell-Scripts.md: -------------------------------------------------------------------------------- 1 | ## PowerShell Scripts 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | **Chris Titus The Ultimate Windows Utility** - Windows Utility PowerShell Script - **Highly Recommended** 10 | 11 | 12 | https://christitus.com/windows-tool/ 13 | 14 | iwr -useb https://christitus.com/win | iex 15 | 16 |   17 |   18 | 19 | --- 20 | 21 | **Windows Decrapifier** - Clean + Optimize Windows 10 / 11 PowerShell Script 22 | 23 | https://community.spiceworks.com/scripts/show/4378-windows-10-decrapifier-1803-1809 24 | 25 | 26 | . .\w10.ps1 -clearstart -onedrive -LeaveServices 27 | 28 |   29 |   30 | 31 | --- 32 | 33 | **PowerShell to manage Windows Updates** - Overview of **PSWindowsUpdate** module 34 | 35 | https://www.techrepublic.com/article/how-to-use-powershell-to-manage-microsoft-updates-on-windows/ 36 | 37 | 38 | *Install Module* 39 | 40 | Install-Module PSWindowsUpdate -Force 41 | 42 | *List of cmdlets for module* 43 | 44 | Get-Command -module PSWindowsUpdate 45 | 46 | *Download + Install updates on local system, reboot* 47 | 48 | Install-WindowsUpdate -MicrosoftUpdate -AcceptAll -AutoReboot | Out-File "C:\($env.computername-Get-Date -f yyyy-MM-dd)-MSUpdates.log" -Force 49 | 50 | 51 | 52 |   53 |   54 | 55 | --- 56 | 57 | **Run PowerShell as Local Admin** 58 | 59 | https://github.com/samersultan/Powershell-as-local-admin 60 | 61 |   62 |   63 | 64 | --- 65 | 66 | **Mega Collection of PowerShell Scripts** - Good collection of scripts, well organized 67 | 68 | https://github.com/fleschutz/PowerShell?web=1&wdLOR=c09D8CA96-EED9-4C4A-AF41-ACDC638FDB8E 69 | 70 |   71 |   72 | 73 | --- 74 | 75 | **Awesome Windows Privacy** - Debload and privacy scripts for Windows 10 + 11 76 | 77 | https://github.com/TemporalAgent7/awesome-windows-privacy 78 | 79 |   80 |   81 | 82 | --- 83 | 84 | **Intune Powershell Scripts** Collection of powershell scripts for Intune 85 | 86 | https://github.com/microsoftgraph/powershell-intune-samples 87 | 88 |   89 |   90 | 91 | --- 92 | 93 | **Sophia Script for Windows** - The largest PowerShell module on GitHub for Windows 10 & Windows 11 fine-tuning and automating the routine tasks 94 | 95 | https://github.com/farag2/Sophia-Script-for-Windows 96 | 97 |   98 |   99 | 100 | --- 101 | 102 | **Active Directory Management** - Library of PowerShell scripts for managing active directory 103 | 104 | https://github.com/AndrewEllis93/PowerShell-Scripts 105 | 106 |   107 |   108 | 109 | --- 110 | 111 | **PowerShell Commands for Windows Admins** - Useful commands for Windows Administrators 112 | 113 | https://www.robvanderwoude.com/ntadmincommands.php 114 | 115 |   116 |   117 | 118 | --- 119 | 120 | **WSUS Clean Up Script** - Clean up WSUS Updates 121 | 122 | https://github.com/samersultan/wsus-cleanup 123 | 124 |   125 |   126 | 127 | --- 128 | 129 | **Windows User Profile Cleanup** - Delete user profiles older than a specified number of days in Windows 130 | 131 | https://gallery.technet.microsoft.com/scriptcenter/How-to-delete-user-d86ffd3c 132 | 133 |   134 |   135 | 136 | --- 137 | 138 | **o365 PowerShell Connect** -Connect to all o365 service via PowerShell 139 | 140 | https://eightwone.com/2015/08/31/connecting-to-office-365exchange/ 141 | 142 |   143 |   144 | 145 | --- 146 | 147 | **o365 PowerShell Script Library** - o365 PowerShell script collection 148 | 149 | https://github.com/Scine/Office365 150 | 151 |   152 |   153 | 154 | --- 155 | 156 | **All-in-One” PowerShell script** - Connect to all Office 365 Services PowerShell (Supports MFA) 157 | 158 | https://o365reports.com/2019/10/05/connect-all-office-365-services-powershell/ 159 | 160 |   161 |   162 | 163 | --- 164 | 165 | **Various standalone scripts** - Collection of useful scripts for day to day sys admin tasks 166 | 167 | https://github.com/bmrf/standalone_scripts 168 | 169 |   170 |   171 | 172 | --- 173 | 174 | **Windows One Liners** - One liners useful for Windows admins 175 | 176 | https://github.com/bmrf/standalone_scripts/blob/master/Windows%20one-liners.bat 177 | 178 |   179 |   180 | 181 | --- 182 | 183 | **Managing Private Channels in Microsoft Teams** - Restrict the ability to create private channels in teams 184 | 185 | https://blog.admindroid.com/managing-private-channels-in-microsoft-teams/ 186 | 187 |   188 |   189 | 190 | --- 191 | 192 | **Block Self Service Purchase o365** - Block Self-Service Purchase for Power Platform Products Using PowerShell 193 | 194 | https://blog.admindroid.com/block-self-service-purchase-for-power-platform-products-using-powershell/ 195 | 196 |   197 |   198 | 199 | --- 200 | 201 | -------------------------------------------------------------------------------- /Project-Management.md: -------------------------------------------------------------------------------- 1 | ## Project Management 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **Trello** - Modular board based project management tool 11 | 12 | https://trello.com/ 13 | 14 |   15 |   16 | 17 | **Trello Card Optimizer** - Chrome extension add's useful functionality to trello 18 | 19 | https://trellocards.com/TCO/ 20 | 21 |   22 |   23 | 24 | **Joplin** - An open source note taking and to-do application with synchronisation capabilities 25 | 26 | https://joplinapp.org/ 27 | 28 |   29 |   30 | 31 | **kramdown** - Adds additional functionality to Mark Down 32 | 33 | https://kramdown.gettalong.org/index.html 34 | 35 | Details on how to use: 36 | 37 | https://stackoverflow.com/questions/41915571/open-link-in-new-tab-with-github-markdown-using-target-blank 38 | -------------------------------------------------------------------------------- /Security-Tools.md: -------------------------------------------------------------------------------- 1 | ## Security Tools 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **HideMy.name Port Scanner** - Check IP address for OP ports 12 | 13 | https://hidemyna.me/en/ports/ 14 | 15 |   16 |   17 | 18 | **FX Tools** - Secure Password Generator 19 | 20 | https://www.webfx.com/tools/new-password-generator/ 21 | 22 |   23 |   24 | 25 | **have i been pwned?** - Find Out Whether Your Email Is Leaked In Past Hack Attacks 26 | 27 | https://haveibeenpwned.com/ 28 | 29 |   30 |   31 | 32 | **Dashlane Password Checker** - How Secure Is My Password? 33 | 34 | https://howsecureismypassword.net/ 35 | 36 |   37 |   38 | 39 | 40 | **Hows MY SSL?** - Check how secure your TLS client is 41 | 42 | https://www.howsmyssl.com/ 43 | 44 |   45 |   46 | 47 | **Attack Surface Analyzer** - Evaluate risk presented by when third-party software is installed 48 | 49 | https://github.com/microsoft/AttackSurfaceAnalyzer/blob/master/README.md 50 | 51 |   52 |   53 | 54 | **Glasswire** - Instantly see your current & past network activity. Detect malware, & block badly behaving apps. 55 | 56 | https://www.glasswire.com/ 57 | 58 |   59 |   60 | -------------------------------------------------------------------------------- /Self-Hosted.md: -------------------------------------------------------------------------------- 1 | ## Self Hosted 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **BookStack** - Self hosted Wiki / Document Management 11 | 12 | https://www.bookstackapp.com/ 13 | 14 |   15 |   16 | 17 | **Docker** - Run applications as virtual containers 18 | 19 | https://www.docker.com/ 20 | 21 |   22 |   23 | 24 | **AMPPS** - Package Library of Self Hosted Apps 25 | 26 | https://www.ampps.com 27 | 28 |   29 |   30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Subreddits.md: -------------------------------------------------------------------------------- 1 | ## Subreddits 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **SysAdmin Subreddit** - Most active subreddit for system / network admins 11 | 12 | https://old.reddit.com/r/sysadmin/ 13 | 14 |   15 |   16 | 17 | **PowerShell Subreddit** - PowerShell scripting subreddit 18 | 19 | https://old.reddit.com/r/PowerShell/ 20 | 21 | 22 |   23 |   24 | -------------------------------------------------------------------------------- /VMware.md: -------------------------------------------------------------------------------- 1 | ## VMWARE 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **vCenter Converter** - Easily convert physical machine to virtual 11 | 12 | https://www.vmware.com/products/converter.html 13 | 14 |   15 |   16 | 17 | **vSphere Hypervisor** - Free bare-metal hypervisor that virtualizes servers 18 | 19 | https://www.vmware.com/products/vsphere-hypervisor.html 20 | 21 |   22 |   23 | 24 | **veeam** - Backup for VMware, Hyper-V, physical and cloud (free edition) 25 | 26 | https://www.veeam.com/virtual-machine-backup-solution-free.html 27 | 28 |   29 |   30 | -------------------------------------------------------------------------------- /Web-Server-Administration.md: -------------------------------------------------------------------------------- 1 | ## Web Server Administration 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **Nginx Admin's Handbook** - NGINX administration basics, tips & tricks, caveats, and gotchas 11 | 12 | https://github.com/trimstray/nginx-admins-handboo 13 | 14 |   15 |   16 | 17 | **Nginx Configratuon Tool** - Nginx Web Configurator 18 | 19 | https://nginxconfig.io/ 20 | 21 |   22 |   23 | -------------------------------------------------------------------------------- /Web-Tools.md: -------------------------------------------------------------------------------- 1 | ## Web Tools 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **ZeroSSL** - Free SSL Certificate 11 | 12 | https://zerossl.com/ 13 | 14 |   15 |   16 | 17 | 18 | **Pinboard** - Bookmark management tool 19 | 20 | https://pinboard.in/ 21 | 22 |   23 |   24 | 25 | **Draw.io** - Online diagram software for making flowcharts, process diagrams, org charts, UML, ER and network diagrams 26 | 27 | https://www.draw.io/ 28 | 29 |   30 |   31 | -------------------------------------------------------------------------------- /Windows-Administration.md: -------------------------------------------------------------------------------- 1 | ## Windows Administration 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **Windows 11 Local Account** - Install and Log In to Windows 11 Without a Microsoft Account 11 | 12 | On reformat during initial setup hit **Shift + F10**, this will open a command prompt. 13 | 14 | 15 | Type the following: 16 | 17 | ``` 18 | OOBE\BYPASSNRO 19 | ``` 20 | 21 | More details: 22 | 23 | https://www.tomshardware.com/how-to/install-windows-11-without-microsoft-account 24 | 25 | 26 |   27 |   28 | 29 | --- 30 | 31 | 32 | 33 |   34 |   35 | 36 | 37 | **Ninite** - Install and Update Many Programs at Once 38 | 39 | https://www.ninite.com 40 | 41 |   42 |   43 | 44 | **GPOTools** - Restore and backup Group Policy 45 | 46 | https://github.com/FriedrichWeinmann/GPOTools 47 | 48 |   49 |   50 | 51 | **Group Policy Administrative Templates Catalog** - Group Policy Templates 52 | 53 | https://getadmx.com/ 54 | 55 |   56 |   57 | 58 | **Group Policy Search** - Good library of Group Policy Settings 59 | 60 | https://gpsearch.azurewebsites.net/ 61 | 62 |   63 |   64 | 65 | 66 | **Windows 10 GPO Settings** - Customizing the Windows 10 user experience with Group Policy 67 | 68 | https://decentsecurity.com/customizing-windows-10-user-experience 69 | 70 |   71 |   72 | 73 | **Policy Analyzer** - Group Policy Tool 74 | 75 | https://blogs.technet.microsoft.com/secguide/2016/01/22/new-tool-policy-analyzer/ 76 | 77 |   78 |   79 | 80 | **BatchPatch** - Patch Windows Systems Remotely (Force WSUS Updates) 81 | 82 | https://batchpatch.com/ 83 | 84 |   85 |   86 | 87 | **LAN Sweeper** - IT Asset Management Software That Finds & Manages All Assets Across Your Enterprise. 88 | 89 | https://www.lansweeper.com/ 90 | 91 |   92 |   93 | 94 | **OneDrive Mapper Tool** - OneDrive mapped to drive letters 95 | 96 | https://www.lieben.nu/liebensraum/onedrivemapper/ 97 | 98 |   99 |   100 | 101 | **CJWDEV** - Library of Windows Server Admin Software 102 | 103 | http://www.cjwdev.co.uk/Software.html 104 | 105 |   106 |   107 | 108 | **NirSoft** - Collection of small and useful freeware utilities for Admins 109 | 110 | http://nirsoft.net/ 111 | 112 |   113 |   114 | 115 | **RSAT** - Remote Server Administration Tools for Windows 10 116 | 117 | https://www.microsoft.com/en-us/download/details.aspx?id=45520 118 | 119 |   120 |   121 | 122 | **PDQ Deploy** - Easily deploy software remotely 123 | 124 | https://www.pdq.com/pdq-deploy/ 125 | 126 |   127 |   128 | 129 | **PDQ Inventory** - Tool that scans Windows computers to collect hardware, software, and Windows configuration data 130 | 131 | https://www.pdq.com/pdq-inventory/ 132 | 133 |   134 |   135 | 136 | **O&O ShutUp10** - Tools to debloat Windows 10 137 | 138 | https://www.oo-software.com/en/shutup10 139 | 140 |   141 |   142 | 143 | **User Profile Wizard** - Migrates current Windows user profiles to new user accounts 144 | 145 | https://www.forensit.com/domain-migration.html 146 | 147 |   148 |   149 | 150 | **ADRecon** - Gathers information about the Active Directory and generates a report which can provide a holistic picture of the current state of the target AD environment. 151 | 152 | https://github.com/sense-of-security/ADRecon 153 | 154 |   155 |   156 | 157 | **LAPS** Windows Local Admin Password Management 158 | 159 | https://www.microsoft.com/en-us/download/details.aspx?id=46899 160 | 161 |   162 |   163 | 164 | **Windows ISO's** - Windows operating systems, Office applications, language packs, and virtual machines directly from Microsoft servers 165 | 166 | https://tb.rg-adguard.net/public.php 167 | 168 |   169 |   170 | 171 | **Delprof2** - Easily remove unused accounts from Windows System 172 | 173 | https://helgeklein.com/free-tools/delprof2-user-profile-deletion-tool/ 174 | 175 |   176 |   177 | 178 | **SS64** - Command Line Reference 179 | 180 | https://ss64.com/nt/ 181 | 182 |   183 |   184 | 185 | 186 | -------------------------------------------------------------------------------- /Windows-Tools.md: -------------------------------------------------------------------------------- 1 | ## Windows Tools 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | **SuperDelete** - Force Delete Folders / Files when other methods don't work 11 | 12 | https://github.com/marceln/SuperDelete/releases/tag/1.2.0 13 | 14 |   15 |   16 | 17 | 18 | **Meld** - visual diff and merge tool 19 | 20 | http://meldmerge.org/ 21 | 22 |   23 |   24 | 25 | 26 | **ChoEazyCopy** - CChoEazyCopy is a graphical user interface for RoboCopy 27 | 28 | https://github.com/Cinchoo/ChoEazyCopy 29 | 30 |   31 |   32 | 33 | **FreeFileSync** - Synchronize Files and Folders 34 | 35 | https://freefilesync.org/download.php 36 | 37 |   38 |   39 | 40 | **Fat32 Format Tool** - Format Drive to Fat32 41 | 42 | http://www.ridgecrop.demon.co.uk/index.htm?guiformat.htm 43 | 44 |   45 |   46 | 47 | **Rufus** - Create bootable USB Drives 48 | 49 | https://rufus.ie/ 50 | 51 |   52 |   53 | 54 | **Dexpot** - Virtual Desktops for Windows 55 | 56 | https://dexpot.de/ 57 | 58 |   59 |   60 | 61 | **New Windows 10 Terminal** - Updated Windows 10 Terminal (requires build 1903) 62 | 63 | https://github.com/microsoft/terminal 64 | 65 |   66 |   67 | 68 | **WinSSHTerm** - A tabbed SSH solution for Windows, combining PuTTY/KiTTY, WinSCP and VcXsrv 69 | 70 | https://winsshterm.blogspot.com/ 71 | 72 |   73 |   74 | 75 | **Cmder** - Windows Console Emulator 76 | 77 | https://cmder.net/ 78 | 79 |   80 |   81 | 82 | 83 | **Fancy Zones** - Arrange and snap windows into efficient layouts 84 | 85 | https://github.com/microsoft/PowerToys/blob/master/src/modules/fancyzones/README.md 86 | 87 |   88 |   89 | 90 | **Mouse without Borders** - Control up to 4 computers with single mouse + keyboard 91 | 92 | https://www.microsoft.com/en-us/download/details.aspx?id=35460 93 | 94 |   95 |   96 | 97 | **List of Useful Software** - List of useful PC and Gaming software (good collection of self hosted apps) 98 | 99 | https://pcprograms.surge.sh/ 100 | 101 |   102 |   103 | -------------------------------------------------------------------------------- /o365-Tools-Resources.md: -------------------------------------------------------------------------------- 1 | ## o365 Tools and Resources 2 | 3 | Samer Sultan 4 | https://www.sultansolutions.com 5 | 6 | @SultanSolutions 7 | 8 | --- 9 | 10 | 11 | **o365 / Azure Service Health** - Alerts for o365 / Azure services 12 | 13 | https://status.azure.com/en-us/status 14 | 15 |   16 |   17 | 18 | 19 | **GCITS o365 Knowledgeable** - Resource for o365 User Guides / Trouble Shooting 20 | 21 | https://gcits.com/knowledge-base/ 22 | 23 |   24 |   25 | 26 | **o365 Admin Center Tool** - Simple desktop UI for o365 managment 27 | 28 | https://github.com/bwya77/O365-Admin-Center 29 | 30 |   31 |   32 | 33 | **Managing Private Channels in Microsoft Teams** - Restrict the ability to create private channels in teams 34 | 35 | https://blog.admindroid.com/managing-private-channels-in-microsoft-teams/ 36 | 37 |   38 |   39 | 40 | **Block Self Service Purchase o365** - Block Self-Service Purchase for Power Platform Products Using PowerShell 41 | 42 | https://blog.admindroid.com/block-self-service-purchase-for-power-platform-products-using-powershell/ 43 | 44 |   45 |   46 | 47 | **PowerShell ISEScriptAnalyzerAddOn** - PowerShell Script Analyzer 48 | 49 | https://www.powershellgallery.com/packages/ISEScriptAnalyzerAddOn/1.0 50 | 51 | ```powershell 52 | Install-Module -Name ISEScriptAnalyzerAddOn 53 | 54 | 55 | Enable-ScriptAnalyzer 56 | 57 | ``` 58 | 59 |   60 |   61 | 62 | **Disabling IMAP and POP for all future mailboxes** 63 | 64 | ```powershell 65 | 66 | Get-CASMailboxPlan -Filter {ImapEnabled -eq "true" -or PopEnabled -eq "true" } | set-CASMailboxPlan -ImapEnabled $false -PopEnabled $false 67 | 68 | ``` 69 | 70 |   71 |   72 | 73 | **Disabling IMAP and POP for all existing mailboxes** 74 | 75 | ```powershell 76 | 77 | Get-CASMailbox -Filter {ImapEnabled -eq "true" -or PopEnabled -eq "true" } | Select-Object @{n = "Identity"; e = {$_.primarysmtpaddress}} | Set-CASMailbox -ImapEnabled $false -PopEnabled $false 78 | 79 | ``` 80 |   81 |   82 | 83 | --------------------------------------------------------------------------------