Jump to content
Pulseway 9.14 🔥

Paul

Administrators
  • Joined

  • Last visited

Everything posted by Paul

  1. Paul replied to topcatfcd's post in a topic in Windows
    Hi there, You'd keep the double quotes in the script. -Paul
  2. Hi there, If you have configured the Autotask integration from the Integrations page in the WebApp, you do not need to configure it again within endpoint policies. You get to pick which RMM Organizations, Sites and Agent Groups will forward notifications into tickets from the integration page. -Paul
  3. Hey @TimStark, Please PM me the details and I'll work with you on getting it done. We do not provide any way of removing archived notifications within the product but we can organize an once-off exception for you to permanently delete the data but we'll need to go through a couple of steps, including identity verification. -Paul
  4. Can you try to run it within a command prompt running as an administrator using this command? This will also generate an installation log file, please send us the log file in the event that the installation still errors out. Replace the Pulseway_x64.msi with the file name of the MSI. msiexec /i Pulseway_x64.msi /l*v install.log -Paul
  5. Paul replied to TS-P's post in a topic in General
    Hi there, Can you look under the Account -> Manage Systems (there you should see all 3 systems and also have the ability of removing one of them). -Paul
  6. Paul replied to Evan Newton's post in a topic in PowerShell
    Hi Evan, winget is an msix (Windows Store Component, source) that must run in a per-user sandbox which is not available when running from the machine account (SYSTEM). You could force it to run against the logged in user (if any) through psexec but you'd need to distribute it somehow. -Paul
  7. Paul replied to nateb's post in a topic in General
    Hi @nateb, We collect sample every minute but report only min, max and avg values for the day. -Paul
  8. The recommended way is to get a new Pulseway server installation with the new domain and move endpoints using a script as documented here: -Paul
  9. I have recently built a similar script but mine doesn't ignore NPCAP, feel free to issue a pull request to change it: https://github.com/paulcsiki/pulseway-scripts/blob/main/enroll-network-interfaces/enroll-network-interfaces.ps1 -Paul
  10. Paul replied to Mickey Nygaard's post in a topic in VMware
    Hi Mickey, To eliminate everything try with an administrator vSphere account and make sure that the port 443 is accessible. You should be able to connect the VMware server module to an ESXi server or a vCenter server. -Paul
  11. Paul replied to AMC's post in a topic in General
    Hi there, At this moment it's not possible to override the default notification priority from the user support request. -Paul
  12. Paul replied to AMC's post in a topic in PowerShell
    Hi @AMC, Based on the documentation, the DomainCredential parameter says: We run PowerShell in a non-interactive mode, this prevents inputs from being triggered. You can provide a PSCredential object instead of the username and that should do the trick. $password = "ThisIsAPlaintextPassword" | ConvertTo-SecureString -asPlainText -Force $username = "contoso\Administrator" [PSCredential] $credential = New-Object System.Management.Automation.PSCredential($username, $password) Rename-Computer -NewName "NewComputerName" -DomainCredential $credential -Restart -Paul
  13. Paul replied to Hejxml's post in a topic in SNMP
    Well yes, you can just export the configuration settings of an agent, just look for the "Export Settings" textual link at the bottom of the Pulseway Manager app. -Paul
  14. Paul replied to Hejxml's post in a topic in SNMP
    Oh, I see what is the problem now. It is skipped because it contains the same identifier as the previous host. Try changing the identifier field slightly and see that it will import now. Use only hexadecimal characters (0-9a-f). Let me know how it goes. -Paul
  15. Paul replied to Hejxml's post in a topic in SNMP
    I was able to successfully import the Host 11 configuration on my PC: -Paul
  16. Paul replied to Hejxml's post in a topic in SNMP
    Hi there, Can you PM me the original XML and then the changed one? It should work. -Paul
  17. The form should be resizable. Do you use a screen DPI other than 100%? -Paul
  18. From the WebApp under Server Admin -> Endpoint Policies, create or edit a policy and make sure that the User Support Request feature is enabled under the System category. Then under Server Admin -> Configuration assign the endpoint policy to the organization, site or agent group. From that point a tray icon will show up on the agents and they will be able to request support from there.
  19. This is possible through the User Support Request feature which will trigger a notification in Pulseway and if you have the Pulseway PSA, Zendesk, Autotask or ConnectWise integration then a ticket gets created as well. -Paul
  20. Paul replied to NickV's post in a topic in Windows
    Thanks for the continued support Nick! You rock ! -Paul
  21. Paul replied to NickV's post in a topic in Windows
    Hi there, We have released an agent update (v8.9.1) which addresses this issue. The update will reach all systems within 48 hours. -Paul
  22. Paul replied to darkavenger's post in a topic in REST API
    I'll have to look into it tomorrow. I'll reply back when I have more information. -Paul
  23. Paul replied to darkavenger's post in a topic in REST API
    You should be able to get the IDs of tickets from another API call used to list tickets: /v2/servicedesk/tickets/search -Paul
  24. Paul replied to darkavenger's post in a topic in REST API
    Hi there, Check out the PSA REST API's here: https://api.psa.pulseway.com/. The link you have provided is for the RMM. -Paul
  25. Paul replied to BShevchuck's post in a topic in REST API
    Hi @BShevchuck, In that case the server name is: psa.pulseway.com . Let me know how it goes ! -Paul