Website updated to latest version (#4157)

* 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
This commit is contained in:
Sean (ANGRYxScotsman)
2026-03-06 14:28:34 +00:00
committed by GitHub
parent d2dbf03572
commit 2d2497408f
14 changed files with 97 additions and 64 deletions

View File

@@ -1,7 +1,13 @@
Automation option in winutil allows you to run winutil from a config file,
you can get your own config file inside winutil by clicking the gear icon on the top right and clicking export and saving it as a file
---
title: Automation
weight: 7
---
you can automate winutil launch with this command
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 -Run
& ([ScriptBlock]::Create((irm "https://christitus.com/win"))) -Config "C:\Path\To\Config.json" -Run
```