From e7884c494dedc61e4c756447163c0cac1ad8cdbe Mon Sep 17 00:00:00 2001 From: mrsh Date: Wed, 7 Jan 2026 21:51:03 +0100 Subject: [PATCH] Finish Automation --- ...werShell Automation in Less than 1 Hour.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/2.Automation/ Learn PowerShell Automation in Less than 1 Hour.md b/2.Automation/ Learn PowerShell Automation in Less than 1 Hour.md index fe62af6..cf332ce 100644 --- a/2.Automation/ Learn PowerShell Automation in Less than 1 Hour.md +++ b/2.Automation/ Learn PowerShell Automation in Less than 1 Hour.md @@ -95,3 +95,22 @@ Unregister-ScheduledJob -Name "TestSpaceX Job" A graphical user interface application developed using PowerShell to automate tasks, manage systems, and provide user-friendly access to scripts and tools. [Disk cleaner example](https://github.com/jimrtyler/diskcleaner/blob/main/DiskCleaner.ps1) + +here's a tool to make form an gui powershell application + +[Gui powershell tool](https://app.poshgui.com) + +## Converting Powershell script to exe + +First we need to install ps2exe + +```powershell +Install-Module -Name ps2exe +``` + +than we evoke it + +```powershell +Invoke-PS2EXE .\Diskcleaner.ps1 .\DiskCleaner.exe +``` +