12 lines
274 B
Markdown
Executable File
12 lines
274 B
Markdown
Executable File
# misc_windows_commands
|
|
|
|
kill specific process from path
|
|
```bash
|
|
wmic process where ExecutablePath='C:\\Path\\to\\process\\name.exe' delete
|
|
```
|
|
|
|
user shell folders
|
|
```bash
|
|
Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
|
|
```
|