Jump to content

Paul

Administrators
  • Posts

    1758
  • Joined

  • Last visited

Everything posted by Paul

  1. Hi @Martti Nuudi, Welcome to the Pulseway community. It's possible that the agent in discussion already has a storage notification configured locally to alert when the available disk space is bellow 15%. If you would like to disable any locally configured storage notification checks you can do so from the Policy by checking the checkbox that says "Disable locally configured storage notifications". -Paul
  2. Hi @Nuno Inacio, I'll check it out and get back to you. Edit: Can you send me the output of these powershell commands? (gwmi -query 'SELECT ProductType FROM Win32_OperatingSystem').ProductType [environment]::OSVersion.Version.Major Thanks! -Paul
  3. Hey @CloudlySimon, The Key value should be your username. -Paul
  4. Best course of action would be to put the file in a dropbox or google drive folder, get the direct link to the file and script a simple download / copy to all user profiles, so to download a file use: $url = "http://mirror.internode.on.net/pub/test/10meg.test" $output = "c:\10meg.test" Invoke-WebRequest -Uri $url -OutFile $output Then to copy it to the user's desktop use: move-item "c:\10meg.test" "c:\users\public\desktop" Finally you'll want to only do this once for all desktops so simply check if the file already exists before running all the logic by placing this on top of the script: if (Test-Path 'c:\users\public\desktop\10meg.test') { exit 0 } -Paul
  5. Hi @Nickolas, Do you want the RDP file to also contain a username / password? It will have to be in clear-text if so? All you need to do is write the rdp file contents using powershell to a disk using Add-Content. Open the RDP file using Notepad to see it's contents. -Paul
  6. Hi @BlueFyre, No, Pulseway will use the default resolve on the machine. I've had a similar situation with a VOIP server and I've ended up on reducing the verbosity on the logs as it was killing out GrayLog box. -Paul
  7. Hey @Ahmet Eroglu and @Martin Stevnhoved, We have this on our public Roadmap available here: It's labeled as Automation Triggers. -Paul
  8. Glad I could help . -Paul
  9. Hi @DeepIT, Sorry about that, we're still in process of updating the macOS agent to support new 2FA modes. To register the iOS app you need to either configure a trusted mobile device (Push-based authorization), we'll detect that it's coming from an older agent and we'll issue a legacy authorization code that you can enter on the macOS agent or simply disable 2FA and enable it back when you're done. -Paul
  10. No problem, we'll drop you an email when this issue is fixed . -Paul
  11. Hi @Zao, Unfortunately yes, this is a known issue. Pulseway cannot send CAD for Core editions at this time, our team has it in the backlog so you can bet that this will be fixed in a future release. -Paul
  12. Hello @ComputerConsulting, Sorry for the late reply. This was a casing problem at the WebApp which prevented usernames that were not written in lowercase to login. We've corrected the issue today and everything should be back to normal. -Paul
  13. Thanks everyone. PS: Check out our Roadmap over here for what's coming next: -Paul
  14. Thanks for letting me know. Glad to hear it works now . -Paul
  15. We've identified the issue and released an update. Can you check again now? -Paul
  16. We are still working on the issue. We're sorry for the delay. -Paul
  17. Thanks everyone for posting, we're looking into the issue as we speak. -Paul
  18. No worries Kenny, I'll reach out to them to get it fast-tracked. -Paul
  19. Thanks for checking. I'll do some digging to see what's going on. -Paul
  20. Hi Kenny, We don't tie system registrations with the org, site or agent group names so renaming them is perfectly fine. I can't tell what caused the disconnect however looking at your instance it seems that you are at your license limit meaning that any systems you add above the license limit they will no longer be visible. Can you send me a PM on the total number of systems you're monitoring so we can confirm that the license is in order? -Paul
  21. Hi Geddie, Try this: $securePass = ConvertTo-SecureString "MySecretPassword" -AsPlainText -Force $cred = New-Object System.Management.Automation.PSCredential ("ExampleDomain\ExampleName", $securePass) Remove-Computer -Credential $cred -Force -Passthrough -Verbose -Restart -Paul
  22. Hi Kevin, No ETA just yet, we're evaluating our options. The reason why we've taken it out was because of the localization of the notifications. If we were to introduce search back as is now it would cause a serious performance impact. We're discussing this internally. -Paul
  23. Hi there, We did resolve the issue on Friday, can you try to close the app and open it again so it re-registers? See if that resolves the issue. -Paul
  24. Hi James, Please run the GSI report (link) and send it to me at paul.csiki [at] pulseway [dot] com and if possible include an export of Process Monitor showing the process trying to touch the AppData folder and getting access denied. If you need help with that I can run both myself through a remote session. I will then forward both to Kaspersky Labs for investigation. -Paul
  25. Hi Ethan, Welcome to the Pulseway community. The free plan we're currently offering allows you to monitor up to 2 systems. If you would like to monitor and control 4 systems you will need to head to the Billing -> Place Order section and purchase a subscription for 4 systems. We will keep the 2 free systems free of charge meaning you will only end up paying for the 2 additional systems. Once the order was placed the activation is instant, you will be able to see the other 2 systems right away. -Paul
×
×
  • Create New...