All Activity
- Today
-
3PP Support for Latest Versions of Pyhthon
Donald Jackson replied to Donald Jackson's topic in General
Mariale, Good morning, looking at the policies that I have for configured for 3PP, the following versions are what I see. Version 3.12.9 would address a few things for me. Python 2 2.7.18150 Python 3.10 (32-bit) (discontinued) 3.10.11150.0 Python 3.10 (64-bit) (discontinued) 3.10.11150.0 Python 3.11 (32-bit) (discontinued) 3.11.9150.0 Python 3.11 (64-bit) (discontinued) 3.11.9150.0 Python 3.8 (32-bit) (discontinued) 3.8.8150.0 Python 3.8 (64-bit) (discontinued) 3.8.8150.0 Python 3.9 (32-bit) (discontinued) 3.9.13150.0 Python 3.9 (64-bit) (discontinued) 3.9.13150.0 Donald -
The Pulseway Referral Program is finally here, and we couldn’t be more hyped to share it with you! 🎉 Becoming a Pulseway Ambassador is super easy. Here’s how you can get started: Click the link that fits your region and fill in your details (name and email) Get your exclusive ambassador link Share it with your friends, family, neighbors, acquaintances – basically anyone! 💰 The best part? As soon as someone buys a Pulseway subscription through your link, your reward will be on the way! Check if you’re eligible to join the program here: US Program Europe Program ANZ Program Be among the first to score that gift card ($250, €400 or AU$400)! You can use it whenever you want, so don’t sleep on this! Oh, and here’s the kicker: there’s no limit to how many people you can refer, so get sharing and keep stacking those rewards! 🤑🤑🤑🤑
-
SSO login for End User Accounts (Client portal accounts)
Mariale_Pulseway replied to T.J's topic in Feature Requests
Hey @T.J - Thanks for the feedback! I'll pass this on to our product team☺️ - Last week
-
davidvqz joined the community
-
T.J started following SSO login for End User Accounts (Client portal accounts)
-
Greetings, Please consider adding SSO for End User Accounts via SAML 2.0. SSO would need to be set at the "Customer" level to allow for multiple customers' SSO(s) to be set up. Thanks.
-
T.J joined the community
-
Pending file operation which requires a reboot to complete
Mariale_Pulseway replied to Jason Canobie's topic in General
Hey @Uwe Deeg - Just raised a ticket for you and our team will contact you shortly☺️ -
Hey @pnwguy - Apologies for any inconvenience this has caused for you. I've checked our systems and it seems that your account migration has completed successfully, however some information was not intended to come over, such as billing history. If you need a copy of past invoices, please let us know and we'll be happy to assist. As for the notifications, you’ll need to set up new policies to get them working as you’d like. If you’d like help with that, our support team is here to assist. Is there anything else I can help you with?
-
Tim David joined the community
-
AndrewH joined the community
-
Pending file operation which requires a reboot to complete
Uwe Deeg replied to Jason Canobie's topic in General
i have the exact same Issue. -
I have the Same Issue with the Notifications. Always there comes the Message again that because of an Package Update a restart is required. Wir startet the Servers 4-5 times, there are no Updates or something else. We checked ThirdParty Software, too but the Message appears again after a few Seconds
-
Uwe Deeg joined the community
-
3PP Support for Latest Versions of Pyhthon
Mariale_Pulseway replied to Donald Jackson's topic in General
Hey @Donald Jackson - Are you looking for a specific version? We have 3.12.9 as of right now available for 3PP. -
When will 3PP incorporate support to patch and maintain newer versions Python?
-
bidahey771 joined the community
-
brucework8 joined the community
-
Paul reacted to a post in a topic: PowerShell Script to Eject USB Storage Devices via Pulseway Automation
-
mx1m3 started following PowerShell Script to Eject USB Storage Devices via Pulseway Automation
-
Hi everyone, I wanted to share a simple PowerShell script that you can use within Pulseway Automation to remotely eject any USB storage devices connected to a system. This can be helpful for security-conscious environments or in scenarios where USB usage needs to be tightly controlled. Works well in combination with the Disable USB Storage Access script in the built in category. The script uses Shell.Application to trigger the native "Eject" action for removable drives (DriveType = 2). Here's the version that loops through all mounted USB volumes: ✅ Works great in Pulseway automation tasks 💡 You can modify it to eject a specific drive letter if needed powershell # Eject all USB volumes using Shell.Application COM object $Eject = New-Object -ComObject Shell.Application # Get all removable (DriveType = 2) volumes with drive letters $volumes = Get-WmiObject -Class Win32_Volume | Where-Object { $_.DriveType -eq 2 -and $_.DriveLetter } foreach ($vol in $volumes) { Write-Host "Ejecting drive $($vol.DriveLetter)..." $Eject.NameSpace(17).ParseName($vol.DriveLetter).InvokeVerb("Eject") } Notes: During my testing, I've seen that USB devices will not be removed if a process is running from the disks in question. In other words, if there is a write/read process running, the disk is not ejected. Let me know if you have questions or enhancements!
-
Lothar Luebcke joined the community
-
Hey @Labsy - I think we've talked on Reddit as well, but I'll answer here too so anybody who might need the answer as well has it. So, as mentioned before, with the new update, you can setup the Vmware/Hyper-V monitoring in Pulseway Webapp -> Integrations -> Connectors. Select the VMware esxi server, test the connectivity -> add. You would see this connector active in All systems -> Active connectors -> You would be able to view your virtual systems here. This is just the visibility towards the systems. As you were telling me that the modules don't appear, you'll need to activate the Hyper-V monitor registry. Once enabled, it will be visible both in the Pulseway Manager and on the Mobile App (refer to images). HYPER-V and VMWARE : On the server, go to the registry editor. HKEY_LOCAL_MACHINE\SOFTWARE\MMSOFT Design\PC Monitor and check and make sure these four are enabled with 1 data. DisplayHyperV, MonitorVMware, DisplayVMware, and MonitorVMware. That will enable Hyper-V and VMware on the Pulseway manager. It is possible to enable this functionality using the script. Please configure the Hyper-V module on one of your monitored systems. Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name DisplayHyperV -Value 1 Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name MonitorHyperV -Value 1 Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name PrioritySendNotificationOnHyperVReplicationCritical -Value 3 Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name PrioritySendNotificationOnHyperVReplicationWarning -Value 2 Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name SendNotificationOnHyperVReplicationCritical -Value 1 Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name SendNotificationOnHyperVReplicationWarning -Value 1 Let me know if this works for you
-
Santi joined the community
- Earlier
-
Sadly it didn't transfer my full agent count, any antivirus licenses, or my billing information or history. It took a week of back and forth with your reps to sort out the issues I mentioned, and I'm now I'm stuck getting alerts about Windows Time issues and pending updates - neither of which I have enabled on the agent manager on any endpoints machines. I figured out the Windows Time glitch on my on own, but I still have constant nag alerts about pending updates and god knows what else will rear its head next. Guys, I've routing for you since day one but this really isn't okay. You guys were so darn good when you started out but as soon as your business picked up you opted to do shady things like forcing a $150 onboarding fees for new accounts (I have 6 instances with for you for different clients and you made me pay it each time despite me telling you it wasn't needed and wouldn't be used), then you started a marketing team to hound existing clients with phone calls about new products - I've lost track of how many times I've asked you to stop yet you keep calling.
-
Hey @pnwguy - Thanks for reaching out! Sorry to hear you're having trouble. If you're referring to migrating your organizations, sites, or similar, please note that the migration process only transfers your devices to the new instance. You'll then need to organize the devices into the appropriate organizations, sites, etc., manually. If you need assistance with anything else, let me know☺️
-
Labsy started following Missing modules like Hyper-V, AD, VMWare...
-
Hi, I do not know for how long, but I guess it might be related to my recent mandatory migration of my account, I am missing at least those modules: Hyper-V VMWare Active Directory Is it that with migration my account degraded, or is this some bug?
-
ukbusinessplan changed their profile photo
-
Hey @laberet - Thanks for reaching out. This is what you can do: Go to Configuration -> Profiles -> Search for monitored services profile -> Edit -> Search that specific service listed down, select "Do Nothing" as shown in the below snip and Save. Note -> Do this for all the service monitored profiles so it applies to all the systems. Let me know if you need more assistance☺️
-
Recently migrated my Pro account to RMM. It didnt migrate any of the organizations, sites, groups.... That sucks. I'm getting lots of nuisance notifications now. The most common one is the "Windows Time service has stopped on the computer 'x' ". 1-5 notifications per day per PC. As far as I can tell time service is working on the PCs but must occasionally must fail. could be occasional issues with time.windows.com or during startup/shutdown? Not sure. its super annoying. cant figure out how to exclude the time service from monitoring. any help would be appreciated.
-
Mariale_Pulseway reacted to a post in a topic: System uptime in Pulseway RMM inaccurate
-
Sometimes, we encounter users not wanting to install an agent on certain devices, like a C-suite executive’s laptop, or you need to assist a customer on an unmanaged device. With Pulseway Remote Control On Demand, it's quick and simple: Create a session and name it. An invite is sent automatically to the user’s email, or you can copy the session link manually. The user downloads a small file from the link and runs it. In the WebApp, the session status updates from "session requested" to "session ready". Click "Connect" to launch the Pulseway Remote Control app and gain access to the guest machine. Once connected, you get all the usual Pulseway remote functionalities: ✔️ File transfers ✔️ Live chat with the end user ✔️ Multi-monitor support & screen switching ✔️ Screen blackout for privacy ✔️ And more! No pre-installed agent, just instant, hassle-free remote access when you need it.
-
Hi Mariale, this has been resolved. A shutdown of a device does not reset the system uptime, but a restart does. Thanks!