https://github.com/jonathanporta/windows-bootstrap
Some Powershell crap to bootstrap a Windows game server
https://github.com/jonathanporta/windows-bootstrap
Last synced: 10 months ago
JSON representation
Some Powershell crap to bootstrap a Windows game server
- Host: GitHub
- URL: https://github.com/jonathanporta/windows-bootstrap
- Owner: JonathanPorta
- License: mit
- Created: 2015-09-05T23:49:01.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-06T22:50:43.000Z (almost 11 years ago)
- Last Synced: 2025-01-24T19:36:54.579Z (over 1 year ago)
- Language: PowerShell
- Size: 281 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# windows-bootstrap
Some Powershell crap to bootstrap a Windows game server
# Install
Open Powershell and set your current Powershell session to allow scripts to run:
`PowerShell.exe -ExecutionPolicy Unrestricted`
Then you can download the bootstrap script by running:
```
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/JonathanPorta/windows-bootstrap/master/bootstrap.ps1'))
```
This will download a copy of this repository, unzip it, and then run `install.ps1`.
Or, better yet, one command:
```
PowerShell.exe -ExecutionPolicy Unrestricted "iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/JonathanPorta/windows-bootstrap/master/bootstrap.ps1'))"
```