Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simeononsecurity/setup-scripts
Set up scripts for various OS'es
https://github.com/simeononsecurity/setup-scripts
bash powershell script scripts
Last synced: about 2 months ago
JSON representation
Set up scripts for various OS'es
- Host: GitHub
- URL: https://github.com/simeononsecurity/setup-scripts
- Owner: simeononsecurity
- License: cc0-1.0
- Created: 2020-11-23T00:27:17.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-26T23:03:44.000Z (5 months ago)
- Last Synced: 2024-07-27T00:22:30.796Z (5 months ago)
- Topics: bash, powershell, script, scripts
- Language: PowerShell
- Homepage: https://simeononsecurity.com
- Size: 281 KB
- Stars: 22
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-scripts
[![Sponsor](https://img.shields.io/badge/Sponsor-Click%20Here-ff69b4)](https://github.com/sponsors/simeononsecurity)
Set up scripts for various OS'es.
## Notes:
- These are public so that you may learn from them to further automate your deployments.
- **DO NOT** run these commands or scripts directly without knowledge of what these scripts do.## Direct Install Scripts:
### Windows 11 - Install and Configure:
```powershell
iwr -useb "https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/windows11.ps1" | iex
```### Windows 10 - Install and Configure:
```powershell
iwr -useb "https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/windows10.ps1" | iex
```### Windows 10 - Basic Install and Configure:
```powershell
iwr -useb "https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/windows10-basic.ps1" | iex
```### Windows 10 - Mining Rig:
```powershell
iwr -useb "https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/windows10-miningrig.ps1" | iex
```### Ubuntu - Install and Configure:
```bash
sudo su -c "bash <(wget -qO- https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/ubuntu.sh)" root
```### ParrotOS - Install and Configure:
```bash
sudo su -c "bash <(wget -qO- https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/parrot.sh)" root
```### MacOS - Install and Configure:
```bash
sh -c "$(curl -sL https://raw.githubusercontent.com/simeononsecurity/setup-scripts/main/macos.sh)"
```