Jump to content

Paul

Administrators
  • Posts

    1740
  • Joined

  • Last visited

Posts posted by Paul

  1. Hi there,

    I'd like to look into your case. Can you please create a read-only account for me on your Pulseway instance using the email address paul.csiki [at] pulseway [dot] com? There's no need to tell me the password, I will just reset it when you've created the account. I'll investigate the problem right away.

    -Paul

  2. Hello Maruco,

    Thank you for raising this issue with us. We will definitely review your support case to improve the quality of our support responses, let me apologize for the poor experience you've had with us. While it is true that most of our development team is booked with an upcoming release we definitely can handle escalations.

    For the systems that you no longer have access to, you should be able to remove the RMM agent registration from the Account -> Manage Systems section of the WebApp, this will also free any allocated addon licenses too. Do remove the systems that you no longer have access to in order to release your AV licenses and then send me a PM. I'll arrange a refund for the antivirus licenses you were charged for and did not use.

    -Paul

  3. Hi Jason,

    The network monitoring feature is only available for the Team plan. If you are on the Team plan it should show up on the left menu as "Networks" underneath "Systems".

    -Paul

  4. On 11/15/2020 at 2:35 PM, vic95kid said:

    @Paul I am curious, I want to use my home PC, with this remote feature, I have a dj mixing and live streaming site, the phone app, to remotely control the music and other apps on my PC is top notch, what I am curious though... Is that I can't use remote access, I mean I only want it for 1 pc and I can't find anywhere to pay or stuff like that? Is there any way to bypass the greyed out button? 

    Pulseway remote control is a premium feature that is only available once your account has an active subscription.

    -Paul

  5. I've recently built this script which also identifies the serial number of the disk to fill in the ID field:

    $query = 'SELECT VolumeSerialNumber FROM Win32_LogicalDisk where DriveType=3 AND Name=''' + $env:SystemDrive + ''''
    $serialNumber = (gwmi -Query $query).VolumeSerialNumber
    
    $count = 0
    
    # rule 1: < 5000MB - Elevated
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Id' + $count) -Value $serialNumber
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Percentage' + $count) -Value '15' # not used
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Priority' + $count) -Value '2' # elevated
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('SizeMB' + $count) -Value '5000'
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('UsePercentage' + $count) -Value '0'
    $count = $count + 1
    
    # rule 2: < 2000MB - Critical
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Id' + $count) -Value $serialNumber
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Percentage' + $count) -Value '15' # not used
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Priority' + $count) -Value '3' # critical
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('SizeMB' + $count) -Value '2000'
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('UsePercentage' + $count) -Value '0'
    $count = $count + 1
    
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name 'Count' -Value $count
    Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor' -Name 'SendNotificationOnLowHDDSpace' -Value '1'

    -Paul

  6. On 9/12/2020 at 4:56 PM, Bowlesy94 said:

    hi i am trying to set up to view the temperatures of my external hard drives. Is there a way to do this?

    Hi there,

    We don't support external hard drive sensor monitoring at this time however we will definitely consider it for the future.

    -Paul

×
×
  • Create New...