mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-05 22:28:31 +00:00
* updated theme to latest version * updated tabs to the new way * added missing frontmatter to pages * updated hugo version * edited the file structure * revert back to old way * Update _index.md * fix typo and made sure it was upto date * updated docs * clean up navbar * Update en.yaml
14 lines
432 B
Markdown
14 lines
432 B
Markdown
---
|
|
title: Automation
|
|
weight: 7
|
|
---
|
|
|
|
The Automation option in Winutil allows you to run Winutil from an exported config file.
|
|
|
|
You can create your own config in the app by clicking the gear icon in the top-right corner, then choosing Export and saving the file.
|
|
|
|
You can automate Winutil launch with this command:
|
|
```powershell
|
|
& ([ScriptBlock]::Create((irm "https://christitus.com/win"))) -Config "C:\Path\To\Config.json" -Run
|
|
```
|