Jump to content

MichaelS

Heroes
  • Posts

    40
  • Joined

  • Last visited

Posts posted by MichaelS

  1. 23 hours ago, Will M said:

    Also, whenever a workstation is on a VPN (some of our devices at our office) it appears as offline and therefore isn't being monitored. Is there any fix for this?

    Hello Will,

    Most probably the VPN is killing your local connection. See the following article from Microsoft's support forum.

  2. Hello EndzoneHero,

    Most probably it is due to the fact that there was no communication between the agent and PSA, hence the agent was never registered on it.

    Can you navigate to your group policy and temporarily create a notification that you know will be triggered ie 'Send a notification when the system partition has less than 95%' with priority Critical or Elevated as only those two are by default picked up by PSA.

    This should force registration of all your RMM agents with PSA instance.

  3. Hello Felipe,

    Yes, you can, would be the short answer, however in order to get a notification when a script runs you will need to assign your script to a task. As you know scripts can be executed independently or with a conjunction with a task. The task bit is responsible for scheduling, sending notifications, executing the script on the desired scope of machines etc.

    For more info and examples on how to use tasks, navigate to Automation section of the Pulseway WebApp and click on 'Learn How to Use' in the right top corner of the webpage.

     

  4. Hello Morten,

    Can you please navigate to WebApp -> Account -> Monitored Systems and check if the decommissioned machine has been removed from the list?

    In case, the server is still on the list select the red bin icon to delete it - this should clear any offline alerts on your account.

    Let me know how it went.

  5. Hello,

    Can you please navigate to your current Group Policy and check the hardware sensor setting in Systems followed by General?

    There is an option to toggle between the Celsius and Fahrenheit.

  6. Hello Pete,

    on Windows 10 password protected sharing can be disabled by editing the below registry keys

    HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\everyoneincludesanonymous
    HKLM:\SYSTEM\CurrentControlSet\Services\LanManServer\Parameters\restrictnullsessaccess

    would you prefer to use PowerShell to update those setting for you please use the below:

    Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa" -Name "everyoneincludesanonymous" -Value "1"
    Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanManServer\Parameters" -Name "restrictnullsessaccess" -Value "0"
    exit 0

    Hope that helps!

     

  7. Hi McHenry,

    In order to disable the desktop icon please run the following powershell line:

    Remove-Item 'C:\Users\*\Desktop\Pulseway Manager.lnk'

     

    Regarding your other query - lock one system and take a note of the following registry values:

    HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\PreventChanges
    HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\PreventChangesPassword
    HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\PreventChangesPasswordCtrl

    Then put the values into this powershell script:
    Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name PreventChanges -Value "Enter the saved PreventChanges from the machine you've just configured"
    Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name PreventChangesPassword -Value "Enter the saved PreventChangesPassword from the machine you've just configured"
    Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name PreventChangesPasswordCtrl -Value "Enter the saved PreventChangesPasswordCtrl from the machine you've just configured"

    Add the three powershell lines into an automation script, link it to a task and run it to set the configuration lock on your systems.

×
×
  • Create New...