Reputation Activity
-
alliedvoa reacted to Chris in Migrating from another RMMHi,
If you have access to the remote machine, then this could be done much simpler:
msiexec /i https://www.pulseway.com/download/Pulseway_x64.msi /qn /ALLUSERS=1 username=UUU password=PPP group=GGG server=SSS /L*v PulsewayInstall.log
This is for debugging purposes: /L*v PulsewayInstall.log
Also, you can use psexec to install the Pulseway agent remotely:
psexec \\ip-address /accepteula -u "username" -p "password" -s msiexec /i https:\\www.pulseway.com\download\Pulseway_x64.msi /qn ALLUSERS=1 username="pulseway username" password="pulseway password" group="GGG GGG" server="SSSS"
Or you can try to import the config file which was exported from another Pulseway agent (I havent tried to use the HTTPS links to accomplish this):
msiexec /I "Pulseway_x64.msi" /qb config=PulsewayDef.pcmcfg configpassword="PASSWORD"
Please let me know how it goes.
-
alliedvoa reacted to andy0609 in Create a local admin accountI use this when I am onboarding a new client. Computers have been there and most people don't know/have their own admin password
-
alliedvoa got a reaction from simple in Script to create a desktop icon to open Pulseway support requestThe attached PowerShell file will accomplish what you are looking for. This creates the shortcut in the Public\Desktop folder so it appears on the desktop of all users/profiles.
Pulseway_Desktop_Icon.ps1
-
alliedvoa reacted to Paul in Support for TLS 1.2 on Agent for PCI 3.2 ComplianceHi there,
Pulseway runs on .NET Framework 4.0 which only supports SSL 3.0 and TLS 1.0. We've disabled SSL 3.0 as it's insecure so there is only TLS 1.0 available now. There is a registry hack that enables Pulseway to use TLS 1.1 and TLS 1.2 on systems where there's .NET Framework 4.5 (or higher) installed and can be enabled by running the "Enable TLS 1.2 in .NET Framework 4.0" built-in automation script and restarting the Pulseway service.
We are planning on setting up a .NET Framework 4.5 release channel and automatically switch agents to that update channel if we can detect .NET Framework 4.5 (or higher) thus adding support for TLS 1.1 and TLS 1.2 out of the box. This change is scheduled to happen by the end of this year.
-Paul
-
alliedvoa reacted to Paul in Add performance counters when using the DashboardHi Clive,
We estimate that this will go out on Q1 2018.
-Paul
-
Hi Guys,
Not sure if this has been requested before so apologies in advance if it has. I had a customer with a slow PC and wanted to add the Disk Queue Length performance counter to see if that was causing the slowness however didn't want to have to log into her machine. Normally I would go via the Dashboard -> Edit Computer Settings and make whatever changes were necessary. However Performance Counters can't seem to be added this way as there is no Add button:
Is this a bug or missing feature? If it's missing, it would be handy to have as you can pretty much do everything else from here and it's not always convenient having to log into the users machine
Cheers
-
alliedvoa reacted to njcltd in Remote Control from MobileHi,
A USP of Pulseway is the RMM built for Mobiles but yet we can’t remote control from a Mobile device!
We still have to use our ScreenConnect or TeamViewer for remote control!
Paul
-
alliedvoa reacted to acoven in Support for Netflow / sflowIt would massively expand Pulseway's capabilities if Netflow/sflow analysis was added to its feature set.
-
alliedvoa reacted to Michel van Son in Custom graphsHi!
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!
-
alliedvoa reacted to Gary Haberl in Pulseway - 'Send Event Details by Email'Issue using the 'Send Event Details by Email' option. When using this option to send the log info by Email, the following info is stripped from the email text and you have to type it yourself.
Eventid:
Systemname:
Which event log:
It is a nice feature to send info to one of our techs so they can review the issue or automate a notification, but why is some important info stripped from the email.
Gary
-
alliedvoa reacted to JZarzosa in White Labeled Agent SettingsIs there any plan or discussion to allow MSP's the ability to white label the agent settings such as the name, desktop shortcuts, icon, installation path name, etc? We used to have this with a former RMM tool we used and it was helpful to maintain brand consistency with our clients.
Thank you, and keep up the great work!
-
alliedvoa reacted to DigitalDentist in Active directory moduleIn the active directory module we can see users that are locked out, is it possible to add users with expired passwords as well.
Instead if searching for a user sometimes I just want to see a list of users, would it be possible to show all users Instead of searching for them?
Reason being it's a quick way to help clients with expired passwords and a quick way to see any abnormal accounts in AD.
-
BUMP: To clarify a bit further. When tracking of installing and uninstalling application is set it creates a load of alerts for what are, for the most part, expected upgrades of applications such as Browsers, PDF Readers, Flashplayer, Java for example. I do not need an alert for those but I do need history in case there is an issue and I need to see what changed recently. However, what I do need an alert for are not so common changes. So this request is the ability to exclude certain applications from the alert but log only.
-
alliedvoa reacted to AC_Martin_J in Edit group name of multiple clientsHey..
I've been moving clients between groups with the script below, and it might be useful to some of you.. If you need to do it in a bigger batch, then maybe you can create a scope and attach the script to a task that has the scope connected to it. Also, tags could be used to further narrow down the targeted clients.
#Replace 'NewGroupNameHere' with whatever group name you would like to use. #Example, $NewGroup = 'Servers' $PreviousGroup = Get-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name GroupName $NewGroup = 'NewGroupNameHere' Write-Host 'The Pulseway group is currently set to:' $PreviousGroup.GroupName Write-Host 'The Pulseway group will be set to:' $NewGroup Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name GroupName -Value $NewGroup Write-Host 'Verifying...' $Verification = Get-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name GroupName Write-Host 'The Pulseway group was successfully changed to' $Verification.GroupName