Everything posted by Paul
-
Pro to Teams help
Hi there, You'd keep the double quotes in the script. -Paul
-
Trouble configuring endpoint policy Autotask integration
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
-
Clearing archived notifications - How?
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
-
Trying to install Pulseway, getting invalid MSI?
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
- Your Account is Over Quota Error
-
issue running cmdlet
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
-
Time stamps on reports
Hi @nateb, We collect sample every minute but report only min, max and avg values for the day. -Paul
-
Migrating to new DNS name
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
-
Enable monitoring of active network adapter
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
-
Unable to setup VMware module
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
-
Default Notification Priority
Hi there, At this moment it's not possible to override the default notification priority from the user support request. -Paul
-
Rename-Computer
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
-
Edit config file and import problem
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
-
Edit config file and import problem
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
-
Edit config file and import problem
-
Edit config file and import problem
Hi there, Can you PM me the original XML and then the changed one? It should work. -Paul
-
pulseway - how users can create a help ticket
The form should be resizable. Do you use a screen DPI other than 100%? -Paul
-
pulseway - how users can create a help ticket
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.
-
pulseway - how users can create a help ticket
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
-
Agent 8.8.11 -Support Flag Change
Thanks for the continued support Nick! You rock ! -Paul
-
Agent 8.8.11 -Support Flag Change
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
-
PSA API add Tickets ?
I'll have to look into it tomorrow. I'll reply back when I have more information. -Paul
-
PSA API add Tickets ?
You should be able to get the IDs of tickets from another API call used to list tickets: /v2/servicedesk/tickets/search -Paul
-
PSA API add Tickets ?
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
-
PSA API Help- What is server_name
Hi @BShevchuck, In that case the server name is: psa.pulseway.com . Let me know how it goes ! -Paul