# Scripts
## Command Window
"Save as" -> ".bat"
### Basic Prompts
#### Ctrl+C to abort cmd
#### Echo
```
@Echo Off
```
Does not repeat command, can turn on to show commands
#### Start
```
start "" "command here"
```
#### View Computer's Important Network info
```
ipconfig /all
```
### Help Prompts
Can type "help" for a list of commands
Any command can be suffixed with "/?" to display detailed info about the syntax
- start/?
## Examples
Script for [[AutoHotKey]]
[[Projects#Set the currently active window to always be on top|Sets the currently active window to always be on top]] when you press Ctrl + Spacebar.
```
^Space:: Winset, Alwaysontop, A
```
The "^" represents the Ctrl key
Additional info... superuser.com/questions/992445/make-any-windowed-application-always-on-top-without-keyboard-shortcut
See also... [[Other Hot Key Modifiers]]