-
Posts
1758 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Paul
-
Hi there, No, Pulseway's oldest supported Windows operating system is Windows XP and the server equivalent Windows Server 2003. -Paul
-
When you run scripts through Pulseway they run as the local SYSTEM user which is the computer name with a dollar sign at the end. You could use a WMI query to get the username instead like this: But make sure that you account for the case when there's no user logged into the system. -Paul
-
Hi there, Yes, if you must use an executable installer then the automation scripts are there for you. Just upload the file on one of your web servers so your systems can reach it (dropbox works too but make sure you copy the direct link to the file) and then write a script that does the following: a) Check to see if the software is installed b) If the software is not installed, download and silently install it (make sure there's no user interaction required) c) Reboot if necessary -Paul
-
Hi @spinto, We use load balancers for high availability. Make sure you add all IP addresses that are resolved by the DNS lookup to your whitelist. -Paul
-
Hi, There shouldn't be a problem if you select Caribbean from the list. -Paul
-
Glad I could help. Enjoy using Pulseway ! -Paul
-
For sure! I've activated the trial subscription . -Paul
-
Thanks for the report. We'll look into it. -Paul
-
Before you do that, drop me a message so I can revert the "free" status on your account so you won't end up paying for the 2 systems. -Paul
-
For sure. I've activated a two week trials subscription. Let me know what you think of our remote control feature . -Paul
-
Hi there, The first two systems remain free, you only need to pay for the additional ones you wish to monitor. At this moment we only have volume discounts (through tiers and this is reflected on the pricing page on our website). -Paul
-
I'd recommend disabling the IP change notification because you don't care to be notified whenever the IP address changes, you only want to know what was the last known IP address which is displayed in the Pulseway app when the system is offline. -Paul
-
There's a minimum of 20 licenses for the Team plan (which supports the on-premise installation) and the cost is per license purchased (one workstation or server license per monitoring agent installation). -Paul
-
That would be exactly the same as the SaaS offering. You can check our prices at this link: www.pulseway.com/pricing. -Paul
-
Hey Voriana, I'd be glad to answer your questions. As documented in the security white-paper we use industry standard security mechanism to prevent unauthorized access to your systems and to prevent others from listening to the communication between our applications. That being said, we also offer an on-premise offering where you can host your Pulseway server on your own infrastructure so you have a fully closed network monitoring solution. -Paul
-
That would be: s1.pulseway.com s2.pulseway.com s3.pulseway.com -Paul
-
Hi Dan, This is not yet available as a native feature on Pulseway however I personally remembered the following powershell line whenever I needed to tell two processes apart using Pulseway: gwmi win32_process -Filter "name='svchost.exe'" | select processid, name, commandline | fl -Paul
-
Well $env:USERNAME relies on the current user and Pulseway runs in the context of the SYSTEM account. Try using this instead: $user= get-wmiobject -class win32_computersystem | select-object username wmic UserAccount where name=$user set Passwordexpires=true $username = $user.username if ($username -like '*\*') { $idx = $username.LastIndexOf('\') $username = $username.Substring($idx + 1) } net user $username /logonpasswordchg:yes It just removes the domain name or computer name from the username you get from WMI. -Paul
-
Hi Stephen, At a quick glance I do notice a space missing before the -class in the first line. Maybe this is the error you're seeing? -Paul
-
Roll-back or choose 'classic' web interface?
Paul replied to JCrawford-BT's topic in Web Application
We are considering on implementing a different color for destructive actions. Would this work for you? -Paul -
Hello, You can put in "Personal" as the company name and it will let you go through. It's a valid point though, we'll discuss this internally. -Paul
-
It's coming out early next week. -Paul
-
Hi Cory, It appears that there's a defect on this, we'll definitely be fixing this. Thanks for the report! -Paul
-
Way to stop constant 2FA prompts when using Remote Control?
Paul replied to Parallax Abstraction's topic in General
Hi, You can enable a setting that will only trigger 2FA prompts when you login into the Remote Control app rather than on login and on each session. You can find the setting in Server Admin (only available on the Team plan) -> Settings -> Security -> "Reduce 2FA Prompts on the Remote Control app". -Paul -
Hi everyone, We're rolling out the update with the custom titles support for third party patch management. It's awesome!! -Paul