Search the Community
Showing results for tags 'windows'.
Found 318 results
-
Starting to write a new plugin
Hi all, I'm trying to follow the guide to starting to program a plug in but I'm falling at the first hurdle. I'm following the guide to "create your first plugin" https://www.pulseway.com/api/clientnet but when I get to where it says "From solution explorer rename "Class1.cs" to "SimplePlugin.cs" and open it. Now we need to add a project reference to our PulsewayClient.dll file which is located in the directory of Pulseway. See Figure B." I cannot for the life of me find a dll called PulseWayClient.dll. I presume it's taking about the installation directory of the pulseway agent, but this file does not seem to exist in any machine that I've checked and for what it's worth figureB does not appear to be of any help at all either. I feel I must be missing something perhaps completely obvious and I hope someone out there and point me in the right direction. Thanks in advance
-
See a list of programs across all devices
I have Pulseway configured on 60 servers all at different locations. I'm waiting to deploy to the workstations until I get it configured just right. My question is: is there a way to get a list of installed programs across all devices? Say I need to know what version of chrome is installed on all the devices, to gauge which ones need updated etc -how would I go about doing that if it's possible?
-
Can't uninstall PC Monitor
Hello, I was having an issue install the Kaspersky Anti-Virus on a machine, and decided to try uninstalling Pulseway from the system. I uninstalled the program, and deleted the service using the sc delete "PC Monitor" command under an administrator account. The issue I am having, is the re-installation fails, and hangs on the "scheduled tasks" portion of the initialization wizard (the part before the pc monitor panel comes up). After the installer crashes, it still shows the application as "installed" for the user, and most things work on the machine. (remote desktop does not from the pulseway dashboard). The installation also does not show up in programs and features. OS is Windows 7 64 bit, and user is on a domain, and has local administrator. Is there anything I can do other than reformatting the user PC to get a genuine clean install so I can use the product we are paying for? Thanks.
- Sort Notifications by Type
- Pulseway Manager without agent
- Screen view
-
Brute Force attempts
Hello. We have a server with a lot of brute force attacks RDP: 3389 SQL: 1433 We can see in event viewer two repeated events (failed loing attempts) eventID: 4625 Microsoft Windows Security Auditing eventID: 18456 MSSQLSERVER We want to receive a notification when we receive "5 o more" failed login attempts in RDP and SQL. Can we use "Pulseway Counters" or "Pulseway evenlog"? How?
-
Powershell Scripts Not working
Can someone tell me why this script works locally from the server but not from Pulseway. I've tested running the script both with impersonation enabled and disabled. Both tests were done on server 2012 R2. One with default Powershell version and one with 5.1. This script runs perfectly fine from the server itself just not through pulseway. I have several scripts that give the same type of error. I'd appreciate any help so I can figure this out. It seems like Pulseway doesn't like certain characters? ForEach ($COMPUTER in (Get-ADComputer -Filter '*' | Select -ExpandProperty Name)) { $key = “SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\Results\Install” $keytype = [Microsoft.Win32.RegistryHive]::LocalMachine $RemoteBase = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($keytype,$Server) $regKey = $RemoteBase.OpenSubKey($key) $KeyValue = $regkey.GetValue(”LastSuccessTime”) $System = (Get-Date -Format "yyyy-MM-dd hh:mm:ss") if ($KeyValue -lt $System) { Write-Host " " Write-Host $computer "Last time updates were installed was: " $KeyValue } } This is what it looks like when ran from the server without involving pulseway
-
Set hyper V to auto start and update Hyper V integration services
This script will set the virtual machine to auto start whenever the host reboots, it will also update Hyper V integration services. Be sure and change your server names to match. Server0 is host and server1 is the Hyper V. Run on Host. Get-VM –VMname * | Set-VM –AutomaticStartAction Start Get-VM -Name SERVER1 –ComputerName server0 Set-VMDvdDrive -ComputerName server0 -VMName SERVER1 -Path 'C:\Windows\System32\vmguest.iso' $DVDriveLetter = (Get-VMDvdDrive -ComputerName server0 -VMName SERVER1).Id | Split-Path –Leaf Invoke-Command –ComputerName SERVER1 -ScriptBlock { if ($ENV:PROCESSOR_ARCHITECTURE -eq 'AMD64') { $folder = 'amd64' } else { $folder = 'x86' } Start-Process -FilePath "$($using:DVDriveLetter):\support\$folder\setup.exe" -Args '/quiet /norestart' -Wait } Restart-Computer –ComputerName SERVER1 -Wait -For WinRM -Force Set-VMDvdDrive -ComputerName server0 -VMName SERVER1 -ControllerNumber 1 -ControllerLocation 0 -Path $null
-
Update Hyper V integration services
This script will update Hyper V integration services. Be sure and change your server names to match. Server0 is host and server1 is the Hyper V. Run on Host. Get-VM -Name SERVER1 –ComputerName server0 Set-VMDvdDrive -ComputerName server0 -VMName SERVER1 -Path 'C:\Windows\System32\vmguest.iso' $DVDriveLetter = (Get-VMDvdDrive -ComputerName server0 -VMName SERVER1).Id | Split-Path –Leaf Invoke-Command –ComputerName SERVER1 -ScriptBlock { if ($ENV:PROCESSOR_ARCHITECTURE -eq 'AMD64') { $folder = 'amd64' } else { $folder = 'x86' } Start-Process -FilePath "$($using:DVDriveLetter):\support\$folder\setup.exe" -Args '/quiet /norestart' -Wait } Restart-Computer –ComputerName SERVER1 -Wait -For WinRM -Force Set-VMDvdDrive -ComputerName server0 -VMName SERVER1 -ControllerNumber 1 -ControllerLocation 0 -Path $null
-
Reports on results of scripts ran
Is there anyway to get a report of the results of a script that was ran. For instance the check if computer has 2 hdd script, If I run this against 90 computers I don't want to click on each computer, click on the script, click again to see the results. It would be awesome if I was able to just see a list of failed and a list of passed, Is this possible?
-
Configure Powershell Impersonation remotely
Is there anyway to configure powershell impersonation remotely? I am trying to run a few different powershell scripts and I'm getting access denied. I assume BC it's running as system. Is there a way around this ? Or a way to configure this option remotely? This is the script I'm trying to run. It runs fine under my account. Import-Module ActiveDirectory Get-ADComputer -Filter {OperatingSystem -Like "Windows 7*"} | foreach {restart-computer $_.name -force} Thanks in advance
-
Check Server uptime and reboot if Greater than 35 days
Wrote this script with the help of Support. Thanks Ermins! $days = 35 $system = Get-WmiObject win32_operatingsystem if($system.ConvertToDateTime($system.LastBootUpTime) -lt (Get-Date).AddDays(-$days)){ Restart-Computer -Force }else{ Write-Host "Machine was rebooted less than $days days ago" }
-
Install PDQ Deploy..used the script template from the other scripts here
## Downloads latest PDQ from Company Dropbox and silently installs or updates if already installed # Path for the workdir $workdir = "c:\installer\" # Check if work directory exists if not create it If (Test-Path -Path $workdir -PathType Container) { Write-Host "$workdir already exists" -ForegroundColor Red} ELSE { New-Item -Path $workdir -ItemType directory } # Download the installer $url = "https://www.dropbox.com/PDQ13.exe?dl=1" # Put your Url with the file here..I use dropbox, you can use whatever file hosting service. $destination = "$workdir\pdq13.exe" # Check if Invoke-Webrequest exists otherwise execute WebClient if (Get-Command 'Invoke-Webrequest') { Invoke-WebRequest $url -OutFile $destination } else { $WebClient = New-Object System.Net.WebClient $webclient.DownloadFile($url, $destination) } # Start the installation Start-Process -FilePath "$workdir\PDQ13.exe" -ArgumentList "/S" # name this whatever your EXE is called # Wait XX Seconds for the installation to finish Start-Sleep -s 15 # Remove the installer rm -Force $workdir\PDQ13*
- Unable to monitor azure
-
Update on custom reporting
Hi All, New to the software and love its ease of use. I am looking for an update from the roadmap on when the custom reporting may be available? Things like asset reporting on all PCs with x of software (Eg. office 2010) or License numbers of x software.Have a microsoft audit for example and need to gather all the FPP license numbers! All the information you appear to have already from the summary and detail asset reports its just the selection of those items into one report. or if any one knows a script that performs that task?
- Kaspersky A/V install issues
-
LDAP Integration & Web Portal Ticket for End User
My company has been testing out PSA/RMM systems for about a year now. Hands down Pulseway has been the BEST, however it's looking likely we are NOT going to be using PW because you don't have 2 simple features MOST others have. LDAP Integration is CRITICAL for our end users & security. We want to seriously "DUMB IT DOWN" for them. Emails DO NOT ACCOMPLISH THIS. On a constant basis no matter how much training they (end Users) get, they more often than not send emails like "It doesn't work." or "I got an error." Asking for further details beyond that kinda makes me wish I had become a dentist cause pulling teeth would probably be easier. For the same reason as stated above a web based ticket portal where we can control the "REQUIRED" fields would be amazing. This would give us the information we need to triage the incident and respond appropriately. We are looking for a system that makes us pro-active not re-active. Furthermore with the above LDAP integration some fields can be automatically populated like workstation and User (cause yes some people don't know how to spell their own name at times). With this Web Portal Ticket System we can make an easy button or desktop icon they can get right to without having to hunt for it. In summery: LDAP Integration and Web Based Ticket Portal. This could have made us customers for a very long time.
-
Event log hp and dell hdd logging
I tried to find a way to monitor hp and dell servers. Ive been using other more complex system that is doing a great job by finding all hardware sensors automatically via snmp. Pulseway is much more simple to use and configure though but it really lacks in hardware monitoring for server administrators. What i did was i created two files for event log that you can try out and import into your servers. I wish Pulseway would either add support for hp and dell server into their hardware module or rework the snmp module so we can add snmp templates for autodiscovery of hardware devices, like check_mk, nagios... Update my files didnt work that well i just tried them out on a hp server. I made a new one that i will try out some more and post here next week.
-
Computer Identifier
Bottom line... can i change the computer identifier to something new? I am using a copy of a VM.vhdx to create a new secondary VM. However, the computer identifier is the same on both after setting them up. What do I need to do to create a new computer identifier? Deleting and reinstalling Pulseway is not enough, it still shows up with the same one. I assume somewhere deep in the registry I need to delete some things to stop this from happening. Thanks
-
VM HDD copy
So I copied a VM hard drive from one server to the next (lets say it was HDDx1), I just need to make a redundant VM (lets say it is HDDx2). I have done this successfully many times but never on VMs that are monitored by Pulseway. After I set up HDDx2, I did a system prep and reinstalled windows on it, gave it a new IP and name (I also renamed the copied VM HDD as well). Everything seems fine, except for Pulseway. It continues to send notifications that HDDx1 public IP has switched to HDDx2's IP and vice versa... What information can you provide to help me with this? I have tried uninstalling and reinstall Pulseway but it continues. I am not sure if I am fully uninstalling Pulseway though... any help would be appreciated.
-
PSA Setup Guidance
Hi All, I am trying to get some of the CRM features up and running and we seem to be falling at the first hurdle. When trying to update an opportunity and provide a quote we are not being shown any products? I am assuming that this is because the system is stating that we have nothing in stock, however I don't see why this wouldn't allow us to quote? I have tried resolving this temporarily with ad-hoc quotes, however this then brings up the issue of the VAT not showing, although I believe that we have this input correctly. I know that this is a little vague, however more looking for pointers to look in the right places at present. Any help appreciated Thanks Craig
-
Spikes in cpu temp - avoid?
Hi, I have pulseway on a Windows server 2016. The cpu is a Cpu is Xeon E3-1285L V4 3,4 GHz and the cpu temp alert is activated with a threshold of 92°C. Sometimes (couple of times per day) I receive pulseway alert that the temp is higher. If I check the graph it is only a spike (attached). Is there a way to set pulseway to send an alert only if the cpu temp is higher than xxxx for xxxx secs? I would like to filter the spikes.
- Script to Remove Trend Micro
- Enabling Bit locker on all Windows Pro