Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 2.4 KB

Command line.md

File metadata and controls

14 lines (11 loc) · 2.4 KB

UI

Example Description
Windows:
butil-ui.Desktop.exe LaunchTask "Task=My task name"
Ubuntu Store Snap:
systemd-inhibit butil.ui LaunchTask "Task=My task name" &
Linux binaries package:
systemd-inhibit dotnet ./butil-ui.Desktop.dll LaunchTask "Task=My task name" &
Launches specified task.

Console

Example Description
Windows:
butilc.exe "Task=My task name"
Ubuntu Store Snap:
systemd-inhibit butil.cli "Task=My task name"
Linux binaries package:
systemd-inhibit dotnet ./butilc.dll "Task=My task name"
Executes the task.
Windows:
butilc.exe "Task=My task name" Shutdown
Ubuntu Store Snap:
systemd-inhibit butil.cli "Task=My task name" Shutdown
Linux binaries package:
systemd-inhibit dotnet ./butilc.dll "Task=My task name" Shutdown
Executes the task and shutdowns the PC.
Windows:
butilc.exe "Task=My task name" LogOff
Ubuntu Store Snap:
systemd-inhibit butil.cli "Task=My task name" LogOff
Linux binaries package:
systemd-inhibit dotnet ./butilc.dll "Task=My task name" LogOff
Executes the task and ends the user session.
Windows:
butilc.exe "Task=My task name" Reboot
Ubuntu Store Snap:
systemd-inhibit butil.cli "Task=My task name" Reboot
Linux binaries package:
systemd-inhibit dotnet ./butilc.dll "Task=My task name" Reboot
Executes the task and reboots the PC.