Jump to content

StefanMcl_Pulseway

Administrators
  • Posts

    207
  • Joined

  • Last visited

Posts posted by StefanMcl_Pulseway

  1. Hi All, 


    Following on from the email you were sent on Thursday 30th November, I am writing to
    confirm the date of your migration to the new European data centre.

    Your Account Manager will reach out to you with more information regarding your migration date and time and for more information on the move and what it will mean for you check out the following
    article https://intercom.help/pulseway/en/articles/8656795-migration-of-eu-data-center


    This migration will deliver improved performance as we continue to grow, as well as giving
    you access to the Reporting advanced templates that deliver a whole new level of insight
    into your environment.


    Thank you for your cooperation

  2. Hi All, 

    I have an update for you all and I want to thank you all for your patience. The Windows and Mac devices that were affected should have been solved earlier this week and you now should be able to set up as desired. 

    For Linux users there was a bit more work to be done but I'm happy to announce that the fix has been passed through QA and is being released sometime to day so, expect the issue to be rectified in the 24 hours approximately. 

    Again I want to thank you all for you cooperation and patience and if anyone needs assistance with anything else please let me know. 

    Have a nice weekend everyone, 
    Stefan

  3. Hey @techNOW

    Thanks fro reaching out, you can of course execute this it would just be via a script:

    <#
    ============================================================================================================================================
    Script Name:        Audit: Computers: Uptime In Days
    Description:        Part of the Extended Audit Content Pack for Servers and Computers delivered by Pulseway.
    Usage:              Scheduled to execute in the Task "Extended Audit For Computers - Weekly" tied to the Scope "All Windows 10/11 Computers".
    Additional notes:   This script is write protected and is meant to be used "as is" for Extended Auditing purposes.
    Vendor:             Pulseway
    Lastest version:    2023-01-27
    ============================================================================================================================================
    
     
    
    Required variable inputs:
    None
    
     
    
    Required variable outputs:
    Name: "OutputUptimeIndays"
    Default Type: "Number"
    Default Value: "0"
    Associated Custom Field: "Audit: System: Uptime In Days"
    #>
    
     
    
    # Please note, this script is write protected and is meant to be used "as is" for Extended Auditing purposes.
    
     
    
    Function Get-Uptime {
       $OS = Get-WmiObject win32_operatingsystem
       $Uptime = (Get-Date) - ($OS.ConvertToDateTime($OS.LastBootUptime))
       $Display = + $Uptime.Days
       Write-Output $Display
    }
    
     
    
    $OutputUptimeIndays = Get-Uptime
    Write-Output "Extended Audit: System: Uptime In Days: $OutputUptimeIndays"
    
     
    
    # This step writes back the Powershell result to the associated Custom Field.
    Start-Process -FilePath "$env:RMM_HOME\CLI.exe" -ArgumentList ("setVariable OutputUptimeIndays ""$OutputUptimeIndays""") -Wait

     

    You can use just the the Output variable, no Custom Field is required for this to work. Then make a condition based on the output variable being higher than X days in a Workflow. You will need to run it as a script for it to become a Number type variable as currently the Workflow Action "Execute PowerShell Command" only produce Text type variables. So that won't work for the condition.

     

    I hope this helps and if you need any more assistance lease let me know

    Thanks, 
    Stefan 

  4. Hey @Nick530

    That's great I'm glad you were able to get it sorted. On another note, are you apart of our Discord community? We have a Automation/Scripting channel where a bunch of Pulseway users can share scripting knowledge and Automation best practices. You should definitley check it out! 

    If you need any more assistance please let me know!. Thanks, 
    Stefan 

  5. Hi @Tevita

    Thanks for reaching out first of all, I'm really sorry that you are facing this. In regards to the notifications you are receiving, we are aware of this and sometimes due to Microsoft being a bit flaky it can cause this to happen but we are working on it and in the meantime we recommend that you turn the notification off via a policy as the systems are being updated and maintained. In regard to the systems reboot, s Pulseway forcing this to happen? If so please send me your Pulseway email and I will raise this with support immediately. 

    If you need any help with anything else please let me know! 

    Thanks, 
    Stefan  

  6. @ed247 @JohnnyJoker @JonasB

    Hi All, 

    I believe the issues is still being reviewed by dev However there is the following hotfix that should work. If you run the following script as an administrator it should fix the issue: 
     

    REG DELETE HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v SetDisableUXWUAccess
    REG DELETE HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v SetDisablePauseUXAccess
    USOCLIENT startscan

    Let me know if it works or not, 
    Thanks a mill, 
    Stefan

  7. Hey @Nick530

    You can perform an MSI based installation using the pre-configured installer link. This link is found in Pulseway Webapp -> Configuration -> Organizations -> Select the ORG/site/group -> Select the group -> go to downloads -> Windows x64 -> Copy link. Then append this link in the below msiexec command. The below command when executed as command prompt with admin mode, it will install and register the pulseway agent to that specific group. You can use the below command in your tool to mass deploy. NOTE: If the group is deleted or modified in pulseway, then the link will not work.

×
×
  • Create New...