smitpi / PSSysTray

PSSysTray

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PSSysTray

Description

Creates a System Tray Menu from a csv file to launch any PowerShell Command or file (or any other executable)

Getting Started

Install-Module -Name PSSysTray -Verbose
  • or run this script to install from GitHub GitHub Repo
$CurrentLocation = Get-Item .
$ModuleDestination = (Join-Path (Get-Item (Join-Path (Get-Item $profile).Directory 'Modules')).FullName -ChildPath PSSysTray)
git clone --depth 1 https://github.com/smitpi/PSSysTray $ModuleDestination 2>&1 | Write-Host -ForegroundColor Yellow
Set-Location $ModuleDestination
git filter-branch --prune-empty --subdirectory-filter Output HEAD 2>&1 | Write-Host -ForegroundColor Yellow
Set-Location $CurrentLocation
  • Then import the module into your session
Import-Module PSSysTray -Verbose -Force
  • or run these commands for more help and details.
Get-Command -Module PSSysTray
Get-Help about_PSSysTray

Documentation can be found at: Github_Pages

Functions

About

PSSysTray

License:MIT License


Languages

Language:PowerShell 100.0%