├── .gitignore ├── CF - SSL Certificate Expiration └── CF-SSL-Exp-Check.ps1 ├── CF-Linux-SSL-Exp └── CF-Linux-SSL.sh ├── CF-MapNetworkDrives └── CF-Map-Drives.ps1 ├── CF-SMBv1-Status └── Get-SMBv2-Status-V2.ps1 ├── CF-Treesize ├── CF-FindDuplicateFiles.ps1 ├── CF-Treesize.ps1 ├── CF-TreesizeEverything.ps1 └── CF-UltraTreesizeNinja.ps1 ├── CF-W11BlockAllow └── CF-Windows11AllowBlock.ps1 ├── CF-WindowsOSBuild.ps1 ├── CleanUpOndrive └── CleanupOneDrive.ps1 ├── Ninja-Webhook-To-Discord └── NinjaToDiscord.ps1 ├── README.md ├── W10-Upgrade ├── Local_W10_Upgrade.ps1 └── Remote_W10_Upgrade.ps1 ├── WYSIWYG-Styling ├── ConvertTo-HtmlTableToObject.ps1 ├── ConvertTo-ObjectToHtmlTable.ps1 ├── Example-ObjectToHtml.ps1 ├── Screenshot2_Convert-Back-To-Object.png ├── Screenshot_1.png └── Screenshot_2.png └── Windows11Check └── CF-W11-HardwareCompatible.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | CF-UltraTreesizeNinja-OldVersion.ps1 3 | -------------------------------------------------------------------------------- /CF - SSL Certificate Expiration/CF-SSL-Exp-Check.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF - SSL Certificate Expiration/CF-SSL-Exp-Check.ps1 -------------------------------------------------------------------------------- /CF-Linux-SSL-Exp/CF-Linux-SSL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-Linux-SSL-Exp/CF-Linux-SSL.sh -------------------------------------------------------------------------------- /CF-MapNetworkDrives/CF-Map-Drives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-MapNetworkDrives/CF-Map-Drives.ps1 -------------------------------------------------------------------------------- /CF-SMBv1-Status/Get-SMBv2-Status-V2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-SMBv1-Status/Get-SMBv2-Status-V2.ps1 -------------------------------------------------------------------------------- /CF-Treesize/CF-FindDuplicateFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-Treesize/CF-FindDuplicateFiles.ps1 -------------------------------------------------------------------------------- /CF-Treesize/CF-Treesize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-Treesize/CF-Treesize.ps1 -------------------------------------------------------------------------------- /CF-Treesize/CF-TreesizeEverything.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-Treesize/CF-TreesizeEverything.ps1 -------------------------------------------------------------------------------- /CF-Treesize/CF-UltraTreesizeNinja.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-Treesize/CF-UltraTreesizeNinja.ps1 -------------------------------------------------------------------------------- /CF-W11BlockAllow/CF-Windows11AllowBlock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-W11BlockAllow/CF-Windows11AllowBlock.ps1 -------------------------------------------------------------------------------- /CF-WindowsOSBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CF-WindowsOSBuild.ps1 -------------------------------------------------------------------------------- /CleanUpOndrive/CleanupOneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/CleanUpOndrive/CleanupOneDrive.ps1 -------------------------------------------------------------------------------- /Ninja-Webhook-To-Discord/NinjaToDiscord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/Ninja-Webhook-To-Discord/NinjaToDiscord.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /W10-Upgrade/Local_W10_Upgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/W10-Upgrade/Local_W10_Upgrade.ps1 -------------------------------------------------------------------------------- /W10-Upgrade/Remote_W10_Upgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/W10-Upgrade/Remote_W10_Upgrade.ps1 -------------------------------------------------------------------------------- /WYSIWYG-Styling/ConvertTo-HtmlTableToObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/WYSIWYG-Styling/ConvertTo-HtmlTableToObject.ps1 -------------------------------------------------------------------------------- /WYSIWYG-Styling/ConvertTo-ObjectToHtmlTable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/WYSIWYG-Styling/ConvertTo-ObjectToHtmlTable.ps1 -------------------------------------------------------------------------------- /WYSIWYG-Styling/Example-ObjectToHtml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/WYSIWYG-Styling/Example-ObjectToHtml.ps1 -------------------------------------------------------------------------------- /WYSIWYG-Styling/Screenshot2_Convert-Back-To-Object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/WYSIWYG-Styling/Screenshot2_Convert-Back-To-Object.png -------------------------------------------------------------------------------- /WYSIWYG-Styling/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/WYSIWYG-Styling/Screenshot_1.png -------------------------------------------------------------------------------- /WYSIWYG-Styling/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/WYSIWYG-Styling/Screenshot_2.png -------------------------------------------------------------------------------- /Windows11Check/CF-W11-HardwareCompatible.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezscholte/Public-Ninja-Scripts/HEAD/Windows11Check/CF-W11-HardwareCompatible.ps1 --------------------------------------------------------------------------------