Jump to content
  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type

Forums

  • Pulseway
    • News & Announcements
    • Installation & Configuration
    • General
    • Automation
    • Applications
    • Current Features & Server Modules
    • API
    • Feature Requests
    • Bugs
  • Pulseway On-Premise Server
    • Installation & Configuration
  • Pulseway PSA
    • General

Calendars

There are no results to display.

Find results in

Find results that contain...

Date Created

  • Start

    End

Last Updated

  • Start

    End


Filter by number of...

Found 318 results

  1. njcltd posted a post in a topic in Feature Requests
    Hi, I would like to have a folder monitor, basically I have a folder (or several folders) that I need to monitor that the files in the folder and receive alerts for the following. - files are older than X days - over X number of files in the folder Please advise if this is possible currently of if this will require development, if this can be accomplished with a script then some pointers would be useful, ideally this would run at the same rate as other aspects of the system, but it could also be a daily/hourly check as I understand it could consume time processing!
  2. unfeomateo posted a post in a topic in SNMP
    I want to setup a SNMP notification for my canon printer. The "printer status" OID will show nothing when the printer is working and show a number if there is an error. I have no idea what each and every error might show up as. Is it possible to set the notification to alert me if that SNMP option changed from null to some number? Right now if I leave "value" blank I cannot click ok to finish.
  3. Hi there! I am looking for a way to install a custom MSI pakage that I built on my endpoints via a script. I have the MSI package on my website. I need the script to download the MSI from my website, then execute in silent mode. Thank you!!
  4. I hope I am in the right Subforum to ask this question. I recently started to use Pulseway and am impressed what I am able to do with it but I noticed one feature missing that I need. Is it possible with Pulseway to check Servers/Clients with log files for backups if they have been successful or failed? For example if there is a NAS connected to a network and someone is doing a USB Backup on it I want to check if it has failed so I will get a notification when it fails. I want to use it on Windows and Linux machines so my best guess is to use a script of somekind right?
  5. dpbklyn posted a post in a topic in General
    Is there a way to exclude a particular disk (e:\) from the storage notifications?
  6. I have created a Windows cmd file to copy files nightly on one of my servers. If there is an error, the cmd file outputs the error to an error.txt file, thus updated the "Last Write" date on the file. My command file is working great, and outputs the errors to the error.txt, and the date stamp on the error.txt file is updated each time this happens. I configured the Pulseway Computer Settings via Notifications -> Storage -> Files. I added the error.txt and checked for notifications to be sent when the file last write date has changed. (see image) This works the first time, but the second, no notification is sent. Am I doing something wrong? Any pointers on how I can make this work consistently? Thanks!
  7. I have enabled lost of notifications on my pc but none of the show up, the did once or twice but not anymore, has anyone a idea why?
  8. PatrickM posted a post in a topic in General
    Hi, I am looking to use Pulseway to patch our clients servers. However there are some clients that need them patched in a specific order. For example I want to patch the VMs on the Hyper-v then when they have completed run the patches on the Hyper-V host. I may be missing something obvious but can't seem to find how to do that. thanks
  9. John @ Maven posted a post in a topic in Bugs
    I am having issues with pulsewaycredentialprovider.dll stopping the Windows login screen from loading on Windows 10 1809. I have submitted a ticket to support at support@pulseway.com as well. The issue is that with Pulseway software installed and the credential provider loading the system boots to the displayed screen but will go no further. I am able to run terminal and PowerShell commands from the web interface (prior to software uninstall) but can never log in. Pulseway remote does not work either. This is happening on two Windows 10 1809 DELL Optiplex computers with fresh Windows 10 PRO installations. RIght now our only solution is to leave Pulseway uninstalled. Any information or solution helpful. Thanks. John
  10. dpbklyn posted a post in a topic in General
    Is there a way to monitor the temperature on a machine on an on-going (or logged) basis? I would like to set a notification to be sent when the Core Temp reached xx degrees. I see that it is monitored in the hardware section, but i can't find a place to trigger an event. Thakn you,
  11. Hi, On the Windows Dashboard 6.1 (build 1113) the up-time display is quite strange - I love precision but
  12. It would be nice with a build in option to trigger notifications based on failed Agent Jobs. We are currently using this custom SQL Query in 'msdb': SELECT STUFF((SELECT N', ' + name FROM (SELECT name FROM dbo.sysjobs WHERE (SELECT TOP 1 run_status FROM dbo.sysjobhistory WHERE (step_id = 0) AND (job_id = sysjobs.job_id) ORDER BY run_date DESC, run_time DESC) = 0 AND (enabled = 1)) AS [n1] FOR XML PATH(''),TYPE).value('text()[1]','nvarchar(max)'),1,2,N'') AS [Failed] // Martin.
  13. Hi. When receiving the notification "The computer 'XXX' in group 'XXX' is shutting down" I am always wondering who is shutting down the server. Could it be possible to add information about which user initiated the shutdown? I know that Windows write it to the eventlog, so the information should be available. If it could possible to match the users with RDP connections, so we also can see what client the user was connected from, it would something near perfect. The computer 'XXX' in group 'XXX' is shutting down by user 'XXX' logged on interactively. The computer 'XXX' in group 'XXX' is shutting down by user 'XXX' logged on remotely from client 'XXX'.
  14. Hi MMSOFT. Is it somehow possible to generate more individual notifications from the same plugin, without using allowMultipleNotifications. It is not hard to imagine that a plugin would have to monitor two or more individual values. If it is not possible, consider this a feature request :-) Best Regards, Martin.
  15. Hi, When a plugin returns a datetime (eg. in a simpleitem) it is formatted acording to the agent device language and timezone. Is it somehow possible to format/convert it so it match the mobile apps regional setting and timezone? Br, Martin.
  16. Hi, Is it posible to return a graph from a plugin? I am interested in returning value in a graph like the one used in CPU, Memory, etc. Br, Martin.
  17. It would be nice with a build in option to trigger notifications based on the date since last backup of any databse. We are currently using this custom SQL Query i 'msdb': SELECT STUFF((SELECT N', ' + name FROM (SELECT TOP (100) PERCENT db.name FROM (SELECT name FROM master.sys.databases WHERE (state = 0) AND (NOT (name IN ('tempdb')))) AS db LEFT OUTER JOIN (SELECT database_name AS name, backup_finish_date AS timestamp FROM dbo.backupset UNION SELECT name, create_date FROM master.sys.databases) AS b ON b.name = db.name GROUP BY db.name HAVING (NOT (1 * ISNULL(STR(ABS(DATEDIFF(hh, GETDATE(), MAX(b.timestamp)))), - 1) BETWEEN 0 AND 48)) ORDER BY db.name) AS [n1] FOR XML PATH(''),TYPE).value('text()[1]','nvarchar(max)'),1,2,N'') AS [Missing] // Martin.
  18. Finzsoft posted a post in a topic in Requests
    I am trying to upgrade some software using PowerShell and I am not sure if my parameters are correctly formatted . See highlighted text # Silent Install Secure Secure Authentication # http://repository.eset.com/v1/com/eset/apps/business/esa/windows/v2/2.7.32.0/esa_nt64_enu.msi # Path for the workdir $workdir = "c:\scripts\" # 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://repository.eset.com/v1/com/eset/apps/business/esa/windows/v2/2.7.32.0/esa_nt64_enu.msi" $destination = "$workdir\esa_nt64_enu_v2.msi" # Check if Invoke-Webrequest exists otherwise execute WebClient if (Get-Command 'Invoke-Webrequest') { Invoke-WebRequest $source -OutFile $destination } else { $WebClient = New-Object System.Net.WebClient $webclient.DownloadFile($source, $destination) } Invoke-WebRequest $source -OutFile $destination # Start the installation msiexec.exe /i "$workdir\esa_nt64_enu_v2.msi" ADDLOCAL="Credential_Provider" /qb /L*v "c:\esa_install_log.txt" # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\esa_nt64*
  19. Hello! Recently I've been experimenting a bit using scripts that contain variables that the user should enter. For example, a very simple one to shutdown a computer after X-amount of time: (example use-case: I download large files during the night, so it doesn't count towards my ISP data-usage) @echo off set /p time=Enter time in seconds: shutdown /s /t %time% timeout /t 3 /NOBREAK exit however, upon executing said script, the app doesn't request for the variable to be filled out. (I guess it's not made for such uses) Obviously, i can manually enter the command using CMD, but i don't want to be typing the command every time i need it. (you can call me lazy :p) Any ideas how to do this correctly?
  20. dpbklyn posted a post in a topic in General
    Hello, I am trying to automate our on-boarding process as much as possible. Is there a way to upload software to Pulseway (an A/V Application in this case) so we can trigger a script to install it on endpoints during on boarding? Thank you, dp
  21. Tim Roewen posted a post in a topic in General
    Hi there, We are using both PSA and RMM from Pulseway. In the last few weeks we are experiencing some weird behavior between PSA and RMM. We don't use the and never set up the integration, but after we delete the settings both in PSA and RMM, it still comes back. It is irritating us enormously and the support isn't helpful after creating several tickets. I hope someone can help us with this issue. King regards, Tim Roewen
  22. Basil62 posted a post in a topic in Requests
    I want a program to always run on my computer. Is there a script that forces a program to restart after its process has been stopped? Thanks in advance
  23. Will be able to see in the next release an option to update time on a bulk action for multiple tickets?
  24. AlanRTonn posted a post in a topic in Feature Requests
    Sometimes i am creating a ticket after i have already started work on the problem. Not ideal I know, but it happens. It happens enough that i would really like to be able to put in the time i started working on the problem and then hit the now choice and then hit a "Add time" or start tracking time button that continues to update the "now" or "end" field. that way i dont have to remember to hit that now button when i am done and hit the save button.
  25. Hello We have a dedicated controller at Pulseway. We have a couple of Windows Servers but one has showed itself as offline since yesterday. The Windows Server itself is up and running fine and the Pulseway service is running. I have tried this: Restart Pulseway Service (No problems) Unregister and Reregister System (Working Fine) Rebooted the server Communicationtest "telnet xxxx.pulseway.com 443" answering like it should Uninstalled Pulseway and removed the registry key "ComputerIdentifier" then reinstalled Uninstalled Pulseway again and removed the whole Hive "MMSOFT Design" from registry and reinstalled Pulseway. Seems like no matter what I do the server is Offline in Pulseway controller at web and IOS. Do you have any suggestions to point me in the right direction? Kindly Mikael