Jump to content

Chris

Staff
  • Posts

    1347
  • Joined

  • Last visited

Posts posted by Chris

  1. Hi,

    To stop monitoring a system (and remotely deconfigure it), login to your account here: www.pulseway.com/account and from the Monitored Systems sub-menu entry you have the option to remove systems. If the system is online it will receive a command to erase it's configuration and stop.

    Chris

  2. Hi,

    We're sorry to hear that you can't download Pulseway from Play Store. Unfortunately this is out of our control and there is little we can do, it may be some incompatibility with the custom ROM.

    Chris

  3. Hi,

    There is a known issue on Microsoft Exchange Server 2010 if it's installed on systems that run .NET Framework 4.5 (or higher). The powershell cmdlets stop working and the only workaround is to uninstall all .NET Framework versions (4.5 or higher) and repair the .NET Framework 4.0 installation. Do not do this on Windows Server 2012 (or higher) as this will break your operating system.

    This bug was acknowledged by Microsoft however the official bug report got deleted so here is a cached copy: https://web.archive.org/web/20121129073751/http://connect.microsoft.com/VisualStudio/feedback/details/770748/powershell-exception-after-4-5-upgrade

    Exchange 2007, 2013 and 2016 are not affected by this bug.

    Chris

  4. Hi,

    At this moment Pulseway Remote Desktop connections can be made using the Pulseway Dashboard or Pulseway Remote Desktop Client applications (available in the Desktop Apps section of the Downloads page). Support for the mobile apps, Windows modern app and HTML web application will be introduced in the future.

    Chris

  5. Hi Toby,

    Thank you for your report. Please run the following commands as root:

    launchctl remove com.pulseway.PulsewayHelper
    rm -rf /Library/LaunchDaemons/com.pulseway.PulsewayHelper.plist
    rm -rf /Library/PrivilegedHelperTools/com.pulseway.PulsewayHelper
    rm -rf /var/root/Library/Application\ Support/Pulseway/

    and then download and install Pulseway agent for Mac one more time.

    Chris

  6. Hi,

    Welcome to the Pulseway community. At this moment there is no support for notifying you if a file hasn't changed for a while however one could write a very simple plugin that does just that. You can check if the file didn't change and send a notification.

    The logic would involve you calling this method: System.IO.File.GetLastWriteTime which returns the DateTime of the last modification date. You would create an if statement that compares the current DateTime (DateTime.Now) with the last write time and if it's been a while then send a notification.

    if ((DateTime.Now - File.GetLastWriteTime(fileName)).TotalMinutes >= notificationThreshold)
        SendNotificationToAllDevices(fileName + " didn't change in " + notificationThreshold + " minute(s).");

    I would put this check in the ClientPlugin.DataCheck method. Check out the plugin tutorial here: http://www.pulseway.com/api/client.

    The reason why you see blank screenshots is that the server has a blank screensaver :lol:.

    Chris

×
×
  • Create New...