Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • auto-deploy
  • bug-cpuload
  • feature/cmdline-storage-status
  • feature/tray/logwindow
  • master
  • server2012
  • update-docs
  • 1.0
  • 1.1
  • 1.2
  • 1.3
  • 1.4
  • 2.0
  • 2.1
  • 3.0
  • autotransfer-v1
16 results

Target

Select target project
  • vamp/auto-tx
1 result
Select Git revision
  • auto-deploy
  • bug-cpuload
  • feature/cmdline-storage-status
  • feature/tray/logwindow
  • master
  • server2012
  • update-docs
  • 1.0
  • 1.1
  • 1.2
  • 1.3
  • 1.4
  • 2.0
  • 2.1
  • 3.0
  • autotransfer-v1
16 results
Show changes
Commits on Source (2)
......@@ -10,7 +10,7 @@
[CmdletBinding()]
Param(
[Parameter(Mandatory=$False)][switch] $StartService
[Parameter(Mandatory = $False)][switch] $StartService
)
function Start-MyService {
......@@ -18,8 +18,7 @@ function Start-MyService {
try {
Start-Service $ServiceName
Write-Host "[OK]" -Fore Green
}
catch {
} catch {
$ex = $_.Exception
Write-Host "[FAILED]" -Fore Red
Write-Host $ex.Message
......@@ -43,10 +42,9 @@ function Copy-ServiceFiles {
Copy-Item -Recurse -Force -Path "$ServiceName\*" -Destination $ServiceDir
Copy-Item -Recurse -Force -Path "conf-example" -Destination $ServiceDir
# create a dummy log file, so admins can already start watching it:
Out-File -FilePath $ServiceLog -InputObject "$($ServiceName) installed"
Out-File -FilePath $ServiceLog -InputObject "$($ServiceName) installed" -Encoding utf8
Write-Host "[OK]" -Fore Green
}
catch {
} catch {
$ex = $_.Exception
Write-Host "[FAILED]" -Fore Red
Write-Host $ex.Message
......@@ -73,15 +71,13 @@ function Add-PerfMonGroupMember {
try {
Add-LocalGroupMember -Group $GroupName -Member $ServiceUser
Write-Host $("Successfully added user [$($ServiceUser)] to the local"
"group [$($GroupName)].")
}
catch [Microsoft.PowerShell.Commands.MemberExistsException] {
"group [$($GroupName)].")
} catch [Microsoft.PowerShell.Commands.MemberExistsException] {
Write-Host $("User [$($ServiceUser)] is already a member of the local"
"group [$($GroupName)], no action required.")
}
catch {
"group [$($GroupName)], no action required.")
} catch {
Write-Host $("Adding user [$($ServiceUser)] to the local group"
"[$($GroupName)] failed: $($_.Exception.Message)")
"[$($GroupName)] failed: $($_.Exception.Message)")
}
}
......