Jump to content

Paulo

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Paulo

  1. On 5/16/2020 at 8:29 PM, eDecisions said:

    Question, new here but if you removed the entry as you suggest does that not also remove it from services from the tech side, meaning that if I remove the service from pc monitor\services sure it won't send the notice but lets say I wanted to view services from the manager and restart one, will that service still be listed? I just checked, when clicking the SERVICES tab in the web app you only see auto start services listed, so you'd not be able to manage it without logging in, take a look at this option:

     

     

    # Note, This script removes all current excluded services from Notifications and replaces with your selection.

    #
    Remove-Item -Path "HKLM:\Software\MMSOFT Design\PC Monitor\ServicesExcludedFromNotifications\"  -Recurse
    New-Item -Path "HKLM:\Software\MMSOFT Design\PC Monitor\ServicesExcludedFromNotifications\"

    $exclude = @()
    $exclude += 'gpsvc'
    $exclude += 'ITmanager.net'
    $exclude += 'clr_optimization_v4.0.30319_64'
    $exclude += 'clr_optimization_v4.0.30319_32'
    $exclude += 'ClickToRunSvc'
    $exclude += 'sppsvc'
    $exclude += 'SSUService'
    $exclude += 'wuauserv'
    $exclude += 'BITS'
    $exclude += 'gupdate'
    $exclude += 'TrustedInstaller'
    $exclude += 'VSS'  # Volume Shadow Copy
    $exclude += 'WUDO' # Service Host: Delivery Optimization

    #
    # $exclude += Just keep adding rows with new service name.
    #


    $i=0
    foreach ($service in $exclude){
    Set-Itemproperty -path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\ServicesExcludedFromNotifications\' -Name Service$i -value $service
    $i++ 
    }
    Set-Itemproperty -path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\ServicesExcludedFromNotifications\'  -Name 'Count' -value "$i"

     

     

     

    This script is exactly what I was searching for, It keeps monitoring the services but disables the notifications.

    Thanks a lot for sharing it ;)

  2. I forgot my password and I am trying to reset it but I keep getting the message "invalid password reset code".

    I'm sure that I'm using the correct code (I get the code via email after clicking "forgot my credentials" and entering my email).

    Don't know what else to do to recover my account.

×
×
  • Create New...