Update README.md

This commit is contained in:
simeononsecurity
2020-12-18 11:15:37 -06:00
committed by GitHub
parent 06e42858d9
commit b5ddb4ad17

View File

@ -1,18 +1,21 @@
# setup-scripts # setup-scripts
Set up scripts for various OS'es Set up scripts for various OS'es.
## Notes:
-These are not meant to be run directly by anyone other than SimeonOnSecurity. Rather, these are public so that you may learn from them to further automate your deployments.
## Windows 10 Install and Configure: ## Direct Install Scripts:
### Windows 10 Install and Configure:
```ps ```ps
iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/windows10.ps1')) iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/windows10.ps1'))
``` ```
## Ubuntu Install and Configure: ### Ubuntu Install and Configure:
```bash ```bash
sudo su -c "bash <(wget -qO- https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/ubuntu.sh)" root sudo su -c "bash <(wget -qO- https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/ubuntu.sh)" root
``` ```
## ParrotOS Install and Configure: ### ParrotOS Install and Configure:
```bash ```bash
sudo su -c "bash <(wget -qO- https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/parrot.sh)" root sudo su -c "bash <(wget -qO- https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/parrot.sh)" root
``` ```