Jump to content
View in the app

A better way to browse. Learn more.

Pulseway

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Paul

Administrators
  • Joined

  • Last visited

Everything posted by Paul

  1. Right so you pretty much have two solutions over here: Reduce the time to kill amount to something acceptable (20 seconds maybe?). This value controls the amount of milliseconds it allows a service to shutdown before the system will actually kill it in order to proceed with shutdown. You will find that value here: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WaitToKillServiceTimeout Manually stop Exchange services before shutting down the machine. Create a batch script called shutdown_properly.bat and put it into a directory that's inside your PATH variable. In that batch script put something like this: @echo off echo 'Stopping Microsoft Exchange Services' net stop MSExchangeAB net stop MSExchangeADTopology net stop MSExchangeAntispamUpdate net stop MSExchangeEdgeSync net stop MSExchangeFBA net stop MSExchangeFDS net stop MSExchangeIS net stop MSExchangeMailboxAssistants net stop MSExchangeMailboxReplication net stop MSExchangeMailSubmission net stop MSExchangeProtectedServiceHost net stop MSExchangeRepl net stop MSExchangeRPC net stop MSExchangeSA net stop MSExchangeSearch net stop MSExchangeServiceHost net stop MSExchangeThrottling net stop MSExchangeTransport net stop MSExchangeTransportLogSearch shutdown -s -t 00 The last line on the batch script will call the system shutdown without forcing applications to close. In other words it will be a nice and clean shutdown just the way your server likes it. If you would like a reboot instead you can modify the last line to something like this: shutdown -r -t 00 Please note that the batch script will differ from Microsoft Exchange Server versions. The one I wrote to you works only with Microsoft Exchange Server 2010. If you are using a different version I recommend you to add the correct exchange services and remove the ones that are not installed on your system. Then if you would like to shutdown or restart you machine from your PC Monitor client open up terminal and write the batch file's name (Now you see why I made you place it into a directory inside the PATH variable, otherwise you would have to write the full path to the file too).
  2. Plugins are extensions to the agent you install on your systems. All my plugins are windows based but some can be easily adapted to work on linux too. You can consult the user manual or cheat by reading below. To install a plugin: Open up PC Monitor Manager on a monitored system Go to the Plugins tab Click Add Browse to the location of a downloaded plugin (Note: all Windows based PC Monitor plugins have an extension of .dll and it it's filename is not PCMonitorClient.dll as that is a dependency) On the following screen where you have to select which class you would like to activate make sure that everything is selected (usually there is only one entry) and then click on OK Optionally if the plugin requires additional configuration you can click on the plugin entry in PC Monitor and click on the Configure button on the right side of the application Click Apply or Ok button on PC Monitor Manager to save your settings Once the plugin is installed you are good to go, just use your mobile device / web app / windows 8 app to browse to your monitored system and beneath the system commands you will see plugin controls. Also it's worth adding that most of the plugins (well at least my plugins) are opensource and without any licenses which means you can freely get their source code and modify them then release them as your own. Good luck, Paul.
  3. Yes, You can manage multiple hypervisors by using: Multiple PC Monitor Agents For VMware vSphere you can install vCenter and have PC Monitor manage it For Citrix Xen you can add multiple hosts to the pool
  4. What is the ping threshold you configured in PCM Manager?
  5. Usually Exchange servers shutdown like that because they are installed on the same machine with the Active Directory Controller. The symptom is that the ADDS services shutdown before exchange does and Exchange waits for a reply from a query he makes to AD. As far as I know the timeout is set to five minutes. I've reduced that timeout on my exchange server to 30 seconds and the machine shutsdown faster now.
  6. Paul replied to soetie's topic in General
    It could work as long as you only see detailed information for one system at a time (just like the mobile clients do).
  7. Any shortcuts to the system / module would do great as everyone seems to be doing the same thing when they read the notifications: Read message, Investigate current status and Apply fix. I particularly like this idea. +1
  8. Hi, So you're asking that instead of a new notification that the ping endpoint can be reached again you would like that the agent would modify the previously sent ping failure notification to change it's priority and content. I like the idea but I don't see a practical use of it. When I receive a notification that some device cannot be reached I would like to know why that happened and queue an investigation of the network to evaluate potential downtimes and future risks. At the moment notifications can be ordered by date so I can quickly identify when something happened and when it got fixed (if applicable). However this doesn't mean that the notification cannot change a notification if the problem got fixed as long as the two notifications get merged nicely (Fix date to be properly appended to the original message and notification priority to be dropped to low or normal).
  9. Paul replied to a post in a topic in General
    As far as I know you can purchase a subscription for any number of systems where the minimum subscription is the amount of systems that are currently registered on your account. On the purchase subscription wizard on the website you can move slider that controls the amount of systems you wish to buy back and forward.
  10. Ups, I totally forgot about this. I will create the plugin and post it here today or tomorrow. Thanks for the heads-up.
  11. Paul replied to soetie's topic in General
    Well that would mean that if you have 100 monitored computers you would have 100 computers constantly sending a lot of data. I like to use dashboard to see the overall status of the monitored systems, when there is something bad happening a notification will fireup on the dashboard and I can quickly identify the system and it's severity. It would be an overkill to add all that information for all computers, imagine the traffic you would generate...
  12. Can you wake up your computer with another application that supports WoL? Have you enabled WoL in your BIOS settings? Are you connected to internet via an ethernet connection (wired, not wireless)?
  13. You can also delete a service using the sc command: sc delete "PC Monitor" Good Luck, Paul.
  14. Why not use a scheduled task to do it?
  15. Sure, whitelist: Note: List may not be acurate so test it and see if it works.
  16. Any event logs, diagnostic outputs, operating system details, anything at all other than "it doesn't start after windows update restart"? I can't reproduce this on my servers: 2003 R2. Standard and 2008 R2 Standard. All update, restart and PC Monitor starts up as expected.
  17. Download the msi file again then execute msiexec /x msifile or msiexec /uninstall msifile .
  18. Hello, This is normal behaviour when the configuration has been protected with a password. On the lower left side of the application you have a padlock that should say: "Click here to unlock the configuration" or something similar. You will be prompted to input a passcode. Good luck.
  19. Hello, I've looked at the script and it's a fairly easy task however you need to do a similar approach to make it work with MPM: Have a plugin installed into PC Monitor that opens a WCF Service listening for connections on a local port Have an application that is installed on your machine that takes a string as a parameter and passes that parameter to the WCF Service when invoked. WCF Service will treat that action as a notification and will forward it to PC Monitor. Ofcourse the implementation is going to be a lot easier than the explanation looks like but I will make the plugin and service for you. Just give me 24 hours. Thank You, Paul.
  20. Hello, You do realize that without actually posting the full script i can't help you at all. On that link you provided I can only see how to configure the script to send emails. I need to know how it reads data from OMSA log in order to give you an answer on how you can get that kind of monitoring inside PC Monitor. If you can, PM me with the full script and I will do my best to help you. Paul.
  21. Hello, I've published an opensource plugin that can easily be modded to show this information. Under five minutes you can have a plugin up and running. Take a look and ask if you have any questions. Plugin Link: http://forum.pulseway.com/topic/782-create-plugin-in-visual-studio-vb/#entry3239 Paul.
  22. This could be useful indeed. Any chance we will get an uptime report? I guess it would be nice if you would be able to see when the computer issued a shutting down, offline, started events.
  23. Judging from this post, they want to implement their own remote desktop support. Asking for remote desktop is not as helpful as providing what kind of remote desktop features you would be interested on. I'd like to see the following remote desktop features: Keyboard layout switching (host or client's layout) Clipboard sync when clipboard is just plain text Binding CTRL + ALT + DEL to a button or a similar hotkey Hooking WIN and WIN + KEY hotkeys so that they only get forwarded to the machine without executing locally Integration with the windows dashboard app, I don't need it on my phone. I hate doing remote desktop with a phone or tablet. Support for MAC maybe? What are you expecting to see in PC Monitor's Remote Desktop?
  24. Have you forwarded UDP 9 to your computer ip address?
  25. Just leaving a note for Marla45 here. Plugin development has stopped since this particular feature is now implemented by PC Monitor itself and it's way better than mine. Please use PC Monitor's security center feature: http://forum.pulseway.com/topic/914-pc-monitor-40-for-ios-is-now-available/ . Thank you.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.