├── .gitignore ├── AD-computers-html-report.ps1 ├── AD-computers-network-html-report.ps1 ├── AD-get-server-status.ps1 ├── AD-passwords-expiring-csv.ps1 ├── AD-passwords-expiring-soon-email.ps1 ├── IIS-delete-website.ps1 ├── IIS-restart-all-apppools.ps1 ├── PSReadLine-Commands.txt ├── PowerShellHelp ├── PowershellHelp.designer.ps1 ├── PowershellHelp.ps1 └── PowershellHelp.resx ├── Powershell-Cmdlet-Explorer ├── Powershell-Cmdlet-Explorer.designer.ps1 ├── Powershell-Cmdlet-Explorer.ps1 └── Powershell-Cmdlet-Explorer.resx ├── Report-Functions.ps1 ├── aws-cloudwatch-custom-metrics-config.ps1 ├── aws-cloudwatch-custom-metrics.ps1 ├── azure-upload-vhd.ps1 ├── clean-system-local.ps1 ├── copy-everything.ps1 ├── create-cmdlets-js.ps1 ├── create-csv-from-mysql-table.ps1 ├── create-csv-from-sqlserver-table.ps1 ├── create-startup-executable.ps1 ├── create-startup-powershell-script.ps1 ├── docs └── index.html ├── download-web-files.ps1 ├── file-search.ps1 ├── file-watcher.ps1 ├── flancy-sys-info-ws.ps1 ├── get-cmdlets-list.ps1 ├── get-module-commands.ps1 ├── git-clone-continuous.ps1 ├── git-clone-list.ps1 ├── git-init.ps1 ├── git-pull.ps1 ├── hyperv-backup-vm.ps1 ├── iis-tools.ps1 ├── list-gce.ps1 ├── list-tables-mysql.ps1 ├── list-tables-sqlserver.ps1 ├── list-top-ten-processes.ps1 ├── monitor-webpage.ps1 ├── network-tools-install-modules.ps1 ├── network-tools.ps1 ├── nodejs-forever-start-apps.ps1 ├── ping-server.ps1 ├── plex-manufacturing-cloud.ps1 ├── readme.md ├── remove-all-print-jobs.ps1 ├── screenshots └── cmdlet1.png ├── send-email.ps1 ├── server-system-info-website.ps1 ├── setup-domain-controller.ps1 ├── setup-file-server.ps1 ├── setup-print-server.ps1 ├── silent-chrome-install.ps1 ├── ssh-apt-upgrade-ubuntu.ps1 ├── ssh-new-db-mongodb.ps1 ├── ssh-new-db-mysql.ps1 ├── ssh-restart-web.ps1 ├── ssh-start-web.ps1 ├── ssh-stop-web.ps1 ├── system-info-html-report-local.ps1 ├── system-info-local-json.ps1 ├── test-server.ps1 ├── transfer-365-user.ps1 └── wsus-critical-report.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | debug.log 2 | .vs 3 | staging-scripts 4 | PowerShellHelp -------------------------------------------------------------------------------- /AD-computers-html-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/AD-computers-html-report.ps1 -------------------------------------------------------------------------------- /AD-computers-network-html-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/AD-computers-network-html-report.ps1 -------------------------------------------------------------------------------- /AD-get-server-status.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/AD-get-server-status.ps1 -------------------------------------------------------------------------------- /AD-passwords-expiring-csv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/AD-passwords-expiring-csv.ps1 -------------------------------------------------------------------------------- /AD-passwords-expiring-soon-email.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/AD-passwords-expiring-soon-email.ps1 -------------------------------------------------------------------------------- /IIS-delete-website.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/IIS-delete-website.ps1 -------------------------------------------------------------------------------- /IIS-restart-all-apppools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/IIS-restart-all-apppools.ps1 -------------------------------------------------------------------------------- /PSReadLine-Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/PSReadLine-Commands.txt -------------------------------------------------------------------------------- /PowerShellHelp/PowershellHelp.designer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/PowerShellHelp/PowershellHelp.designer.ps1 -------------------------------------------------------------------------------- /PowerShellHelp/PowershellHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/PowerShellHelp/PowershellHelp.ps1 -------------------------------------------------------------------------------- /PowerShellHelp/PowershellHelp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/PowerShellHelp/PowershellHelp.resx -------------------------------------------------------------------------------- /Powershell-Cmdlet-Explorer/Powershell-Cmdlet-Explorer.designer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/Powershell-Cmdlet-Explorer/Powershell-Cmdlet-Explorer.designer.ps1 -------------------------------------------------------------------------------- /Powershell-Cmdlet-Explorer/Powershell-Cmdlet-Explorer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/Powershell-Cmdlet-Explorer/Powershell-Cmdlet-Explorer.ps1 -------------------------------------------------------------------------------- /Powershell-Cmdlet-Explorer/Powershell-Cmdlet-Explorer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/Powershell-Cmdlet-Explorer/Powershell-Cmdlet-Explorer.resx -------------------------------------------------------------------------------- /Report-Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/Report-Functions.ps1 -------------------------------------------------------------------------------- /aws-cloudwatch-custom-metrics-config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/aws-cloudwatch-custom-metrics-config.ps1 -------------------------------------------------------------------------------- /aws-cloudwatch-custom-metrics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/aws-cloudwatch-custom-metrics.ps1 -------------------------------------------------------------------------------- /azure-upload-vhd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/azure-upload-vhd.ps1 -------------------------------------------------------------------------------- /clean-system-local.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/clean-system-local.ps1 -------------------------------------------------------------------------------- /copy-everything.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/copy-everything.ps1 -------------------------------------------------------------------------------- /create-cmdlets-js.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/create-cmdlets-js.ps1 -------------------------------------------------------------------------------- /create-csv-from-mysql-table.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/create-csv-from-mysql-table.ps1 -------------------------------------------------------------------------------- /create-csv-from-sqlserver-table.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/create-csv-from-sqlserver-table.ps1 -------------------------------------------------------------------------------- /create-startup-executable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/create-startup-executable.ps1 -------------------------------------------------------------------------------- /create-startup-powershell-script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/create-startup-powershell-script.ps1 -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/docs/index.html -------------------------------------------------------------------------------- /download-web-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/download-web-files.ps1 -------------------------------------------------------------------------------- /file-search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/file-search.ps1 -------------------------------------------------------------------------------- /file-watcher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/file-watcher.ps1 -------------------------------------------------------------------------------- /flancy-sys-info-ws.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/flancy-sys-info-ws.ps1 -------------------------------------------------------------------------------- /get-cmdlets-list.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/get-cmdlets-list.ps1 -------------------------------------------------------------------------------- /get-module-commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/get-module-commands.ps1 -------------------------------------------------------------------------------- /git-clone-continuous.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/git-clone-continuous.ps1 -------------------------------------------------------------------------------- /git-clone-list.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/git-clone-list.ps1 -------------------------------------------------------------------------------- /git-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/git-init.ps1 -------------------------------------------------------------------------------- /git-pull.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/git-pull.ps1 -------------------------------------------------------------------------------- /hyperv-backup-vm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/hyperv-backup-vm.ps1 -------------------------------------------------------------------------------- /iis-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/iis-tools.ps1 -------------------------------------------------------------------------------- /list-gce.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/list-gce.ps1 -------------------------------------------------------------------------------- /list-tables-mysql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/list-tables-mysql.ps1 -------------------------------------------------------------------------------- /list-tables-sqlserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/list-tables-sqlserver.ps1 -------------------------------------------------------------------------------- /list-top-ten-processes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/list-top-ten-processes.ps1 -------------------------------------------------------------------------------- /monitor-webpage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/monitor-webpage.ps1 -------------------------------------------------------------------------------- /network-tools-install-modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/network-tools-install-modules.ps1 -------------------------------------------------------------------------------- /network-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/network-tools.ps1 -------------------------------------------------------------------------------- /nodejs-forever-start-apps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/nodejs-forever-start-apps.ps1 -------------------------------------------------------------------------------- /ping-server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/ping-server.ps1 -------------------------------------------------------------------------------- /plex-manufacturing-cloud.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/plex-manufacturing-cloud.ps1 -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/readme.md -------------------------------------------------------------------------------- /remove-all-print-jobs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/remove-all-print-jobs.ps1 -------------------------------------------------------------------------------- /screenshots/cmdlet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/screenshots/cmdlet1.png -------------------------------------------------------------------------------- /send-email.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/send-email.ps1 -------------------------------------------------------------------------------- /server-system-info-website.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/server-system-info-website.ps1 -------------------------------------------------------------------------------- /setup-domain-controller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/setup-domain-controller.ps1 -------------------------------------------------------------------------------- /setup-file-server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/setup-file-server.ps1 -------------------------------------------------------------------------------- /setup-print-server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/setup-print-server.ps1 -------------------------------------------------------------------------------- /silent-chrome-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/silent-chrome-install.ps1 -------------------------------------------------------------------------------- /ssh-apt-upgrade-ubuntu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/ssh-apt-upgrade-ubuntu.ps1 -------------------------------------------------------------------------------- /ssh-new-db-mongodb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/ssh-new-db-mongodb.ps1 -------------------------------------------------------------------------------- /ssh-new-db-mysql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/ssh-new-db-mysql.ps1 -------------------------------------------------------------------------------- /ssh-restart-web.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/ssh-restart-web.ps1 -------------------------------------------------------------------------------- /ssh-start-web.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/ssh-start-web.ps1 -------------------------------------------------------------------------------- /ssh-stop-web.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/ssh-stop-web.ps1 -------------------------------------------------------------------------------- /system-info-html-report-local.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/system-info-html-report-local.ps1 -------------------------------------------------------------------------------- /system-info-local-json.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/system-info-local-json.ps1 -------------------------------------------------------------------------------- /test-server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/test-server.ps1 -------------------------------------------------------------------------------- /transfer-365-user.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/transfer-365-user.ps1 -------------------------------------------------------------------------------- /wsus-critical-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrussellfreelance/powershell-scripts/HEAD/wsus-critical-report.ps1 --------------------------------------------------------------------------------