Jump to content

Chris

Staff
  • Posts

    1347
  • Joined

  • Last visited

Posts posted by Chris

  1. Hi @Greg Candido,

    Yes, if you will put the Pulseway agent on Golden Image and then delete the Computer identifier from it:

    HKEY_LOCAL_MACHINE\SOFTWARE\MMSOFT Design\PC Monitor\ComputerIdentifier

    Then every time when new system is installed using this image, new system will be registered with your Pulseway server.

    If you want to refurbish an old system, then you will need to retain the computer identifier. If the computer identifier will be changed, then that system will be registered as new monitored system.

  2. Hi @Forcys,

    If you will create the script which will return Windows version and run it as an automated task:

    PowerShell:

    $version = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name ReleaseId).ReleaseId
    
    Write-Host "Windows version - $version"

     

    And then generate the report 'Task Execution Output' fro that automated task which you have executed previously.

  3. Hi Quest,

    Yes, it is possible by creating shortcut for this executable

    C:\Program Files\Pulseway\pcmontask.exe

    and providing shortcut argument 'support'.

    In this post you will find the script which will place this shortcut on Desktops on remote systems.

    Quote

     

     

  4. Hi @martin,

    If you are on the Team subscription plan, then you have the option to check the audit log for the Pulseway users. In this Audit log you will see When the Pulseway RD session was initiated and to which system it was connected. You may export these logs as CSV file and then use Excel to build report.

    Note: In order to see this in audit logs, audit logging should be enabled for each user from the Pulseway WebApp -> Teams and users -> All users -> select required user -> Details section.

  5. Hi @Larnelhight,

    In order to see all currently available patches you may use the Legacy report -> Windows Updates. Note: this report is updated once every 24 hours.

    Regarding how to apply specific patch in bulk: If you have created specific patch policy and you want to apply on specific set of machines, then you have the option to configure search filter to show all the required systems and then use the Bulk commands (at the bottom of the screen) to apply this policy on all systems which are currently shown by the search filter.

  6. Hi @Larnelhight,

    Yes, it is possible to run the script via Pulseway which will create all required registry keys.

    try{
        if(!(Test-Path -Path "HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate")){
           New-Item -Path "HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate"
        }
        if(!(Test-Path -Path "HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate\AU")){
           New-Item -Path "HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate\AU"
        }
        Set-ItemProperty -Path "HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "NoAutoUpdate" -Value 1
        Set-ItemProperty -Path "HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "AUOptions" -Value 1
        Write-Host "Registry keys was created successfully"
        exit 0
    }catch{
      Write-Host "An unexpected error ocurred"
      exit 1
    }

    And you may use the Pulseway Automation to run it on multiple systems at once.

  7. Hi @ansred,

    Unfortunately it is not possible for us to support this option, because the WOL packets are sent based on the last known IP address for the system and it is not possible for us to know new IP address for the system until that system has been connected to Pulseway. However if there are more than one system in that network and at least one system is online, then WOL packet will be sent from another system into the same network, therefore your system should receive WOL command.

     

  8. Hi All,

    Thank you for your suggestion we will consider the possibility to introduce this option into the future.

    In a mean time you will need to generate reports to extract this information. Note: reports are not updated instantly, therefore if are you looking for recently installed applications, then these applications will show up only after 24 hours on the report.

×
×
  • Create New...