Jump to content

Paul

Administrators
  • Posts

    1740
  • Joined

  • Last visited

Reputation Activity

  1. Upvote
    Paul reacted to Michel van Son in Custom graphs   
    Hi!
    As far as I know, all major monitoring systems have the ability to customize graphs...
    Because a picture is worth a thousand words, a screenshot of my installation of Zabbix. It's by far not as pretty as pulseway but the ability to customize the timeframe of the graph is sometime I frequently use.
    Would it be possible to create an extra menu item called "Graphs"
    When we click on that, I'd like to se a list of devices I'm monitoring in the middle pane. Clicking on a computer would then give me all the sensors that have (historical) data  in the right pane.
    Ofcourse, clicking on a sensor opens a graph with a customizable timeframe so that I can see for example the hard disk usage over a period of  6 months so that I can predict when the disk will be full.
    Would this be at all possible?
    Thank you very much!

  2. Upvote
    Paul reacted to nowens in Possibility to change agent settings even if the computer is offline   
    This would be a massive step forwards in centralising this into a server style product. Keep us posted. Not being able to even set offline PC's into maintenance mode is quite annoying.
     
    Also if you could collect daily temperature roundups like the other server based stats that would be good for checking why an offline system went down.
    Nick
  3. Upvote
    Paul reacted to cjs1976 in Monitor a DELL server.   
    Hi Paul,
    so this is my solution for a simple single Dell R330. Thanks to the Dell-Support and a Tool called EventLogSourcesView (http://www.nirsoft.net/utils/event_log_sources_view.html).
    1. Make sure the server runs with the newest drivers and software.
    2. Make sure the iDRAC 8 Express is correctly configured and working. I also configured a fallback e-mail notification over the iDRAC 8 Express.
    3. Install the Dell OpenMange Server Administrator and configure it for your needs.
    4. In the Pulseway Agent:
    4.1. Under System -> Services activate everything with DSM* (e.g. DSM SA Connect Service, DSM SA Data Manager, DSM SA Event Manager, DSM SA Shared Services) ... this should be Dell Services which needs to run!
    4.2. Under Notifications -> Services activate everything with DSM* ... like before, so we get a notification if the services are not running.
    4.3. Under Notifications -> Event Log -> I created two filters. One for Errors (Critical) and one for Warnings and Audit Failures (Elevated). I look only in the Event Log System, and as Source I take the services from before, but with name (e.g. Server Administrator, dcstor64, dcevt64, omsad).
    Today I did some tests, and it looks like it would work without any troubles...
    Greetings,
    Christian.
  4. Upvote
    Paul reacted to Calin in Automations / Tasks do not run at scheduled time.   
    Hi Steve, 
    I've sent you a private message.
  5. Upvote
    Paul reacted to Spicy Support in Dashboard Views   
    Hi
    Would it be posssible for you to add some more views in the dashboard application.
    it's great to see it on a big TV in the office but would be usefully if we can change:
    - to a list view (like windows explorer allows to change the views of files in a folder) - then would enable us see more customers on one screen rather than waiting for them to come around after the rotation
    - change font size
    - make the green / red circles smaller ( a column list view would be good)
    - remove items from view like - hiding os version.
    - adding items on the view like - logged in user
    - option to remove the scrolling banner at the bottom.
     
    Thanks
     
    phil
  6. Upvote
    Paul reacted to ComputerConsulting in Move Scripts from one folder to another.   
    I'll take either.  While you are at it, folders in Tasks would be nice, and the ability to move tasks between them.  
  7. Upvote
    Paul reacted to bshukrallah in PCs Showing Offline   
    Ah, found a conflicting web filter rule, I think I'm back in business now.
  8. Upvote
    Paul reacted to cjs1976 in Internationalization at least for the Support request   
    Hi,
    in the moment everything is in english. We use the Pulseway MSP edition, and out customers are not all very familiar with the english language. For this it would be great to have at least this part of your software translated into different languages.
    Thanks,
    Christian.


  9. Upvote
    Paul got a reaction from kavaa in Install Adobe Reader DC with PowerShell   
    You could test the exit code of the installer. If it's msi based then these are some known exit codes: http://www.msierrors.com/tag/msiexec-return-codes/
    -Paul
  10. Upvote
    Paul got a reaction from kavaa in Install MalwareBytes with PowerShell   
    And here is a script to uninstall malwarebytes:
    -Paul
  11. Upvote
    Paul got a reaction from kavaa in Tags by rules / dynamic tags   
    This and commands for tags would be amazing. Added to our wishlist.
    -Paul
  12. Upvote
    Paul reacted to Martin Stevnhoved in Tags by rules / dynamic tags   
    It would be nice if we could set up dynamic tags.
    Devices could have tags added/removed based by rules, like:
    does one or more files (from a list) exist on the device does one or more registy entries (from a list) exist on the device does one or more applications (from a list) exist as installed applications on the device. Of course it should be possible to use wildcards :-)
  13. Upvote
    Paul got a reaction from kavaa in Change Settings of Pulseway in WebApp / Mobile App   
    Which reminds me that we still don't have support for inputs on the webapp. I'll see if we can prioritize this.
    -Paul
  14. Upvote
    Paul got a reaction from Tyson in Backup status in SQL Server module   
    Hi Martin,
    Thanks. I've pushed this into our todo list. It will be picked by the development team and we'll notify you when this is implemented.
    -Paul
  15. Upvote
    Paul got a reaction from Martin Stevnhoved in Agent job staus in SQL server module   
    Hi Martin,
    Thanks. I've pushed this into our todo list. It will be picked by the development team and we'll notify you when this is implemented.
    -Paul
  16. Upvote
    Paul got a reaction from kavaa in Change Settings of Pulseway in WebApp / Mobile App   
    Check out this plugin by @digbyp:
    We're considering on moving the agent configuration on the webapp for easier configuration management.
    -Paul
  17. Upvote
    Paul reacted to kavaa in Install Winrar with PowerShell   
    I made a install script for Winrar to do a Silent install.
    UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
    Improvements are welcome!
    When a new version of Winrar comes out, just change the winrar-x64-540.exe to the new value.
    # Silent Install Winrar # http://www.winrar.com # Path for the workdir $workdir = "c:\installer\" # Check if work directory exists if not create it If (Test-Path -Path $workdir -PathType Container) { Write-Host "$workdir already exists" -ForegroundColor Red} ELSE { New-Item -Path $workdir  -ItemType directory } # Download the installer $source = "http://rarlab.com/rar/winrar-x64-540.exe" $destination = "$workdir\winrar.exe" Invoke-WebRequest $source -OutFile $destination # Start the installation Start-Process -FilePath "$workdir\winrar.exe" -ArgumentList "/S" # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\w* For Windows 7 please change 
    $source = "http://rarlab.com/rar/winrar-x64-540.exe" $destination = "$workdir\winrar.exe" Invoke-WebRequest $source -OutFile $destination To
    $WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("http://rarlab.com/rar/winrar-x64-540.exe","$workdir\winrar.exe") Since Powershell in Windows 7 does not support the Invoke-WebRequest
  18. Upvote
    Paul reacted to kavaa in Install Calibre Ebook Manager with PowerShell   
    I made a install script for Calibre to do a Silent install.
    UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
    Improvements are welcome!
    # Silent Install Calibre # https://calibre-ebook.com/download # Path for the workdir $workdir = "c:\installer\" # Check if work directory exists if not create it If (Test-Path -Path $workdir -PathType Container) { Write-Host "$workdir already exists" -ForegroundColor Red} ELSE { New-Item -Path $workdir -ItemType directory } # Download the installer $source = "https://calibre-ebook.com/dist/win32" $destination = "$workdir\calibre.msi" Invoke-WebRequest $source -OutFile $destination # Start the installation msiexec.exe /i "$workdir\calibre.msi" /q # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\c*  
    For Windows 7 please change 
    $source = "https://calibre-ebook.com/dist/win32" $destination = "$workdir\calibre.msi" Invoke-WebRequest $source -OutFile $destination To
    $WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("https://calibre-ebook.com/dist/win32","$workdir\calibre.msi") Since Powershell in Windows 7 does not support the Invoke-WebRequest
     
  19. Upvote
    Paul reacted to kavaa in Install Skype with PowerShell   
    I made a install script for Skype to do a Silent install.
    UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
    Improvements are welcome!
    # Silent Install Skype # https://www.skype.com/en/download-skype/skype-for-windows/ # Path for the workdir $workdir = "c:\installer\" # Check if work directory exists if not create it If (Test-Path -Path $workdir -PathType Container) { Write-Host "$workdir already exists" -ForegroundColor Red} ELSE { New-Item -Path $workdir  -ItemType directory } # Download the installer $source = "http://www.skype.com/go/getskype-full" $destination = "$workdir\skype.exe" Invoke-WebRequest $source -OutFile $destination # Start the installation Start-Process -FilePath "$workdir\skype.exe" -ArgumentList "/VERYSILENT /SP- /NOCANCEL /NORESTART /SUPPRESSMSGBOXES /NOLAUNCH" # Wait XX Seconds for the installation to finish Start-Sleep -s 60 # Remove the installer rm -Force $workdir\skype* For Windows 7 please change 
    $source = "http://www.skype.com/go/getskype-full" $destination = "$workdir\skype.exe" Invoke-WebRequest $source -OutFile $destination To
    $WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("http://www.skype.com/go/getskype-full","$workdir\skype.exe") Since Powershell in Windows 7 does not support the Invoke-WebRequest
  20. Upvote
    Paul reacted to kavaa in Install Adobe Reader DC with PowerShell   
    I made a install script for Adobe Reader DC to do a Silent install.
    UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
    Improvements are welcome!
    Change the version if needed in the Source URL: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe
    # Silent install Adobe Reader DC # https://get.adobe.com/nl/reader/enterprise/ # Path for the workdir $workdir = "c:\installer\" # Check if work directory exists if not create it If (Test-Path -Path $workdir -PathType Container) { Write-Host "$workdir already exists" -ForegroundColor Red} ELSE { New-Item -Path $workdir -ItemType directory } # Download the installer $source = "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe" $destination = "$workdir\adobeDC.exe" Invoke-WebRequest $source -OutFile $destination # Start the installation Start-Process -FilePath "$workdir\adobeDC.exe" -ArgumentList "/sPB /rs" # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\adobe* For Windows 7 please change 
    $source = "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe" $destination = "$workdir\adobeDC.exe" Invoke-WebRequest $source -OutFile $destination To
    $WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe","$workdir\adobeDC.exe") Since Powershell in Windows 7 does not support the Invoke-WebRequest
  21. Upvote
    Paul reacted to kavaa in Install Google Chrome with PowerShell   
    I made a install script for Google Chrome to do a Silent install.
    UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
    Improvements are welcome!
    When a new version of Google Chrome comes out follow this url: https://enterprise.google.com/chrome/chrome-browser/ 
    Next find the download button -> Right click on the download button and choose Copy Download Location paste it in the script and it will download the latest version.
    # Silent Install Chrome # https://enterprise.google.com/chrome/chrome-browser/ # Path for the workdir $workdir = "c:\installer\" # Check if work directory exists if not create it If (Test-Path -Path $workdir -PathType Container) { Write-Host "$workdir already exists" -ForegroundColor Red} ELSE { New-Item -Path $workdir -ItemType directory } # Download the installer $source = "https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B03FE9563-80F9-119F-DA3D-72FBBB94BC26%7D%26lang%3Den%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable/dl/chrome/install/googlechromestandaloneenterprise64.msi" $destination = "$workdir\chrome.msi" Invoke-WebRequest $source -OutFile $destination # Start the installation msiexec.exe /i "$workdir\chrome.msi" /q /norestart # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\chrome*  
    For Windows 7 please change 
    $source = "https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B03FE9563-80F9-119F-DA3D-72FBBB94BC26%7D%26lang%3Den%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable/dl/chrome/install/googlechromestandaloneenterprise64.msi" $destination = "$workdir\chrome.msi" Invoke-WebRequest $source -OutFile $destination To
    $WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B03FE9563-80F9-119F-DA3D-72FBBB94BC26%7D%26lang%3Den%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable/dl/chrome/install/googlechromestandaloneenterprise64.msi","$workdir\chrome.msi") Since Powershell in Windows 7 does not support the Invoke-WebRequest
  22. Like
    Paul got a reaction from Fred_BD in Select Multiple Systems > Run Script   
    Thanks. This is a great idea, we'll consider it for a future release. It's annoying that you have to create tags, a scope and a task only when you need something real quick. We'll see how we can improve this.
    -Paul
  23. Upvote
    Paul got a reaction from kavaa in Remote Desktop shadowing from Mobile   
    Hi,
    Pulseway Remote Desktop feature is not available on the mobile apps or the web app at this moment however this is something we have on the Roadmap over here:
    -Paul
  24. Upvote
    Paul reacted to Martin Stevnhoved in Backup status in SQL Server module   
    Have you looked in to this?
    It looks like a very easy quickfix for you, and would help us a lot.
    Put two new options in SQL Server config. One for how old a full/differential backup is allowed to be, and one for how old the log backup is allowed to be.
    Then loop through the databases (except tempdb)  and check for last backup time for all databases and last log backup for databases not in "simple" recovery mode.
    Last full or differential backup (for model db as an example)
    SELECT TOP (1) database_name, backup_finish_date FROM msdb.dbo.backupset WHERE (type IN ('D', 'I')) AND (database_name = N'model') ORDER BY backup_finish_date DESC Last log backup (for model db as an example)
    SELECT TOP (1) database_name, backup_finish_date FROM msdb.dbo.backupset WHERE (type = 'L') AND (database_name = N'model') ORDER BY backup_finish_date DESC You could also look at the databases create time, so we don't get notified because the first backup hasn't run yet.
  25. Upvote
    Paul reacted to kavaa in Install CCleaner with PowerShell   
    I made a install script for CCleaner to do a Silent install and clean if needed.
    UPDATED VERSION 3 With auto detect if Invoke-WebRequest exists
    Improvements are welcome!
    When a new version of CCleaner comes out, just change the ccsetup526 to the new value.
    # CCleaner Download / Update Location # http://www.piriform.com/ccleaner/download mkdir C:\CCleanerInstall Invoke-WebRequest http://download.piriform.com/ccsetup526.exe -OutFile C:\CCleanerInstall\ccsetup526.exe Start-Process -FilePath "c:\CCleanerInstall\ccsetup526.exe" -ArgumentList "/S" Start-Sleep -s 20 rm-R -Force C:\CCleanerInstall If you want you can also add: 
    Start-Process -FilePath "C:\Program Files\CCleaner\CCleaner.exe" -ArgumentList "/CLEANER /AUTO" Start-Sleep -s 20 This will do a Auto Clean with CCleaner
    You can add this to Scripts as a PowerShell Script.
×
×
  • Create New...