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
- Host: GitHub
- URL: https://github.com/loosedwhale/windows-shut-down-script
- Owner: LoosedWhale
- Created: 2023-02-07T16:49:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-07T17:43:51.000Z (over 2 years ago)
- Last Synced: 2025-02-13T23:45:04.201Z (4 months ago)
- Topics: batch, batchfile, shutdown, windows
- Language: Batchfile
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: 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:## 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: