An open API service indexing awesome lists of open source software.

https://github.com/loosedwhale/windows-shut-down-script

Windows bat file for turning of your pc. For more information read README.md
https://github.com/loosedwhale/windows-shut-down-script

batch batchfile shutdown windows

Last synced: about 2 months ago
JSON representation

Windows bat file for turning of your pc. For more information read README.md

Awesome Lists containing this project

README

        

# Windows Shut Down Script

## Description
Windows bat file for turning of your pc. \
Alternatly for pranking your friends :wink:

Made with batch: \
batch

## Code explaind
```
shutdown.exe -s -t 10 -c "Removing all your files in T-10 seconds"
```
> Calls shutdown.exe using -s "self" \
> Sets the -t "time" in this case 10 seconds \
> Sets the -c "caption" to in this case "Removing all your files in T-10 seconds"

```
shutdown.exe -s will shut the pc down instantly.
```
```
-t and -c are optinal.
-t requiers a interger: x
-c requiers a string: "y"
```

### Note
###### You can change the code to your liking.
###### Change x and "y" to what ever you like :smile: