mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-05 22:28:31 +00:00
* cleaned up typo, fixes, grammatical and other related fixes (#2) * typo in Lightshot app name * remove trailing comma in applications.json * consistent capitalization of Windows, WinGet - only user-facing text - includes update to devdocs-generator.ps1, so docs for tweaks modifying registry will have `Windows settings` rather than `windows settings` * various fixes for typos, style, punctuation and capitalization * capitalize 'AM' * Update README.md change formatting for GitHub UI interaction form code format (` `) to bold md Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * typos and wording in docs --------- Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com>
45 lines
1.5 KiB
PowerShell
45 lines
1.5 KiB
PowerShell
function Invoke-WinUtilScript {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Invokes the provided scriptblock. Intended for things that can't be handled with the other functions.
|
|
|
|
.PARAMETER Name
|
|
The name of the scriptblock being invoked
|
|
|
|
.PARAMETER scriptblock
|
|
The scriptblock to be invoked
|
|
|
|
.EXAMPLE
|
|
$Scriptblock = [scriptblock]::Create({"Write-output 'Hello World'"})
|
|
Invoke-WinUtilScript -ScriptBlock $scriptblock -Name "Hello World"
|
|
|
|
#>
|
|
param (
|
|
$Name,
|
|
[scriptblock]$scriptblock
|
|
)
|
|
|
|
try {
|
|
Write-Host "Running Script for $Name"
|
|
Invoke-Command $scriptblock -ErrorAction Stop
|
|
} catch [System.Management.Automation.CommandNotFoundException] {
|
|
Write-Warning "The specified command was not found."
|
|
Write-Warning $PSItem.Exception.message
|
|
} catch [System.Management.Automation.RuntimeException] {
|
|
Write-Warning "A runtime exception occurred."
|
|
Write-Warning $PSItem.Exception.message
|
|
} catch [System.Security.SecurityException] {
|
|
Write-Warning "A security exception occurred."
|
|
Write-Warning $PSItem.Exception.message
|
|
} catch [System.UnauthorizedAccessException] {
|
|
Write-Warning "Access denied. You do not have permission to perform this operation."
|
|
Write-Warning $PSItem.Exception.message
|
|
} catch {
|
|
# Generic catch block to handle any other type of exception
|
|
Write-Warning "Unable to run script for $Name due to unhandled exception."
|
|
Write-Warning $psitem.Exception.StackTrace
|
|
}
|
|
|
|
}
|