mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-06-28 00:54:47 -05:00
Test 06 2023 - The Fix for service issues (#764)
* Compile Winutil * fix wlansvc service (#749) * Compile Winutil * update_edge_removal (#750) * update_edge_removal * add more exception handling * update order of lines * change exception output * set winmgmt service to automatic (#760) * Compile Winutil --------- Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com> Co-authored-by: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com>
This commit is contained in:
@ -15,12 +15,30 @@ function Invoke-WinUtilScript {
|
||||
[scriptblock]$scriptblock
|
||||
)
|
||||
|
||||
Try{
|
||||
Invoke-Command $scriptblock -ErrorAction stop
|
||||
Try {
|
||||
Write-Host "Running Script for $name"
|
||||
Invoke-Command $scriptblock -ErrorAction Stop
|
||||
}
|
||||
Catch{
|
||||
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
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user