major update to override Write-Output func

This commit is contained in:
2023-10-05 13:11:38 -04:00
parent 31a06a9206
commit bbb4884818
52 changed files with 377 additions and 378 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ Install-Program -Path $(Download-File -URL $URL) -Arguments "/S" -Delete
## Start the app after installation
If ( Test-Path $InstallPath )
{
LogMsg "Starting Nextcloud"
Write-Output "Starting Nextcloud"
Try { Start-Process $InstallPath }
Catch { LogErr $_.Exception.Message }
}