├── .vscode └── settings.json ├── LICENSE ├── README.md ├── command-editor.html ├── commands.json ├── psreference.ps1 ├── scripts ├── basic-prep.ps1 ├── remote-disk-cleanup ├── start-cleanup └── status.ps1 └── tools └── pscmder ├── commands.txt └── pscmder.ps1 /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/README.md -------------------------------------------------------------------------------- /command-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/command-editor.html -------------------------------------------------------------------------------- /commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/commands.json -------------------------------------------------------------------------------- /psreference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/psreference.ps1 -------------------------------------------------------------------------------- /scripts/basic-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/scripts/basic-prep.ps1 -------------------------------------------------------------------------------- /scripts/remote-disk-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/scripts/remote-disk-cleanup -------------------------------------------------------------------------------- /scripts/start-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/scripts/start-cleanup -------------------------------------------------------------------------------- /scripts/status.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/scripts/status.ps1 -------------------------------------------------------------------------------- /tools/pscmder/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/tools/pscmder/commands.txt -------------------------------------------------------------------------------- /tools/pscmder/pscmder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superswan/Powershell-SysAdmin/HEAD/tools/pscmder/pscmder.ps1 --------------------------------------------------------------------------------