Jump to content

Paul

Administrators
  • Posts

    1740
  • Joined

  • Last visited

Posts posted by Paul

  1. Hi Darien,

    Yes. That would be the cause of the database server finally starting up. Apologies for the inconvenience. Databases are still starting, will post another update when all services are completely back up.

    Update: 7:10PM: All services are now fully operational.

    -Paul

  2. Yes Josh, apologies again. The root cause of the issue is impacted disk I/O where the SAN has experienced multiple disk failures at the same time greatly reducing I/O capacity. We'll announce tomorrow a maintenance window for the window where we will transition to a SSD-backed SAN which will greatly increase the performance of our cluster.

    Update: 5:14PM - We're down again. We've decided to switch to the new storage now.

    Update: 5:50PM - We're 20% done with the move to the new storage, we anticipate another 2 hours before we can restore service.

    Update: 6:24PM - 69% done with the move.

    Update: 6:58PM - Move completed successfully, databases are starting up.

    -Paul

  3. It looks like the Pulseway agent isn't even installed. That's odd. Your best bet would be to copy the Pulseway folder from another computer and then manually register the service.

    Alternatively try using a tool such as CCleaner to remove the Pulseway app registration from the registry.

    -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. 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

  6. 1 hour ago, Rasmus Tved said:

    I have created this small script to enable monitoring of the active network adapter on a given machine. Hope this can be of some help for others in the forum. 

    $activeadapter = Get-NetAdapter | Where-Object {$_.status -EQ "UP" -and $_.HardwareInterface -and $_.Name -notlike "*npcap*"} | select DeviceID
    $DeviceID = $activeadapter.DeviceID
    
    Set-ItemProperty "HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\NetworkInterfaces\" -Name count -Value 1
    Set-ItemProperty "HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\NetworkInterfaces\" -Name service0 -Value "$DeviceID"

     

    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

  7. 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

  8. Hi @AMC,

    Based on the documentation, the DomainCredential parameter says:

    Quote

    If you type a user name, this cmdlet prompts you for a password.

    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

  9. On 3/16/2022 at 12:21 PM, Hejxml said:

    It works now! Thank you! Just what I needed.

    Have a great day Paul!

    Quick followup question: Any way to copy the notification settings associated with a host in the same manner?

    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

  10. 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

×
×
  • Create New...