Reputation Activity
-
Paul got a reaction from andy0609 in Script IdeasHi Andy,
Try this PowerShell script that @Chris wrote a while ago:
try { $app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -match "Pulseway" } $app.Uninstall() Write-Host "Uninstallation completed successfully" } Catch { $ErrorMessage = $_.Exception.Message $FailedItem = $_.Exception.ItemName Write-Host "There was an error on $computername.`r`n$FailedItem`r`nMessage: $ErrorMessage" Break } -Paul
-
Paul reacted to andy0609 in Create a local admin accountI use this when I am onboarding a new client. Computers have been there and most people don't know/have their own admin password
-
Paul reacted to cshort in PSA SubforumIs there a subforum for the PSA product? I'd be great to have a central place to connect with other users that utilize the offering.
Thanks,
-Chris
-
Paul reacted to ComputerConsulting in Tasks - Overview should show schedules & next scheduled executionI would prefer to have more information than what we have now. Seeing the schedule in a column and also seeing the scope would be very helpful.
-
Paul reacted to Michel van Son in Custom graphsHi!
As far as I know, all major monitoring systems have the ability to customize graphs...
Because a picture is worth a thousand words, a screenshot of my installation of Zabbix. It's by far not as pretty as pulseway but the ability to customize the timeframe of the graph is sometime I frequently use.
Would it be possible to create an extra menu item called "Graphs"
When we click on that, I'd like to se a list of devices I'm monitoring in the middle pane. Clicking on a computer would then give me all the sensors that have (historical) data in the right pane.
Ofcourse, clicking on a sensor opens a graph with a customizable timeframe so that I can see for example the hard disk usage over a period of 6 months so that I can predict when the disk will be full.
Would this be at all possible?
Thank you very much!
-
This would be a massive step forwards in centralising this into a server style product. Keep us posted. Not being able to even set offline PC's into maintenance mode is quite annoying.
Also if you could collect daily temperature roundups like the other server based stats that would be good for checking why an offline system went down.
Nick
-
Paul reacted to cjs1976 in Monitor a DELL server.Hi Paul,
so this is my solution for a simple single Dell R330. Thanks to the Dell-Support and a Tool called EventLogSourcesView (http://www.nirsoft.net/utils/event_log_sources_view.html).
1. Make sure the server runs with the newest drivers and software.
2. Make sure the iDRAC 8 Express is correctly configured and working. I also configured a fallback e-mail notification over the iDRAC 8 Express.
3. Install the Dell OpenMange Server Administrator and configure it for your needs.
4. In the Pulseway Agent:
4.1. Under System -> Services activate everything with DSM* (e.g. DSM SA Connect Service, DSM SA Data Manager, DSM SA Event Manager, DSM SA Shared Services) ... this should be Dell Services which needs to run!
4.2. Under Notifications -> Services activate everything with DSM* ... like before, so we get a notification if the services are not running.
4.3. Under Notifications -> Event Log -> I created two filters. One for Errors (Critical) and one for Warnings and Audit Failures (Elevated). I look only in the Event Log System, and as Source I take the services from before, but with name (e.g. Server Administrator, dcstor64, dcevt64, omsad).
Today I did some tests, and it looks like it would work without any troubles...
Greetings,
Christian.
-
Paul reacted to Calin in Automations / Tasks do not run at scheduled time.Hi Steve,
I've sent you a private message.
-
Paul reacted to Spicy Support in Dashboard ViewsHi
Would it be posssible for you to add some more views in the dashboard application.
it's great to see it on a big TV in the office but would be usefully if we can change:
- to a list view (like windows explorer allows to change the views of files in a folder) - then would enable us see more customers on one screen rather than waiting for them to come around after the rotation
- change font size
- make the green / red circles smaller ( a column list view would be good)
- remove items from view like - hiding os version.
- adding items on the view like - logged in user
- option to remove the scrolling banner at the bottom.
Thanks
phil
-
Paul reacted to ComputerConsulting in Move Scripts from one folder to another.I'll take either. While you are at it, folders in Tasks would be nice, and the ability to move tasks between them.
-
Paul reacted to bshukrallah in PCs Showing OfflineAh, found a conflicting web filter rule, I think I'm back in business now.
-
Paul reacted to cjs1976 in Internationalization at least for the Support requestHi,
in the moment everything is in english. We use the Pulseway MSP edition, and out customers are not all very familiar with the english language. For this it would be great to have at least this part of your software translated into different languages.
Thanks,
Christian.
-
Paul got a reaction from kavaa in Install Adobe Reader DC with PowerShellYou could test the exit code of the installer. If it's msi based then these are some known exit codes: http://www.msierrors.com/tag/msiexec-return-codes/
-Paul
-
Paul got a reaction from kavaa in Install MalwareBytes with PowerShellAnd here is a script to uninstall malwarebytes:
-Paul
-
Paul got a reaction from kavaa in Tags by rules / dynamic tagsThis and commands for tags would be amazing. Added to our wishlist.
-Paul
-
Paul reacted to Martin Stevnhoved in Tags by rules / dynamic tagsIt would be nice if we could set up dynamic tags.
Devices could have tags added/removed based by rules, like:
does one or more files (from a list) exist on the device does one or more registy entries (from a list) exist on the device does one or more applications (from a list) exist as installed applications on the device. Of course it should be possible to use wildcards :-)
-
Paul got a reaction from kavaa in Change Settings of Pulseway in WebApp / Mobile AppWhich reminds me that we still don't have support for inputs on the webapp. I'll see if we can prioritize this.
-Paul
-
Paul got a reaction from Tyson in Backup status in SQL Server moduleHi Martin,
Thanks. I've pushed this into our todo list. It will be picked by the development team and we'll notify you when this is implemented.
-Paul
-
Paul got a reaction from Martin Stevnhoved in Agent job staus in SQL server moduleHi Martin,
Thanks. I've pushed this into our todo list. It will be picked by the development team and we'll notify you when this is implemented.
-Paul
-
Paul got a reaction from kavaa in Change Settings of Pulseway in WebApp / Mobile AppCheck out this plugin by @digbyp:
We're considering on moving the agent configuration on the webapp for easier configuration management.
-Paul
-
Paul reacted to kavaa in Install Winrar with PowerShellI made a install script for Winrar to do a Silent install.
UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
Improvements are welcome!
When a new version of Winrar comes out, just change the winrar-x64-540.exe to the new value.
# Silent Install Winrar # http://www.winrar.com # 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 $source = "http://rarlab.com/rar/winrar-x64-540.exe" $destination = "$workdir\winrar.exe" Invoke-WebRequest $source -OutFile $destination # Start the installation Start-Process -FilePath "$workdir\winrar.exe" -ArgumentList "/S" # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\w* For Windows 7 please change
$source = "http://rarlab.com/rar/winrar-x64-540.exe" $destination = "$workdir\winrar.exe" Invoke-WebRequest $source -OutFile $destination To
$WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("http://rarlab.com/rar/winrar-x64-540.exe","$workdir\winrar.exe") Since Powershell in Windows 7 does not support the Invoke-WebRequest
-
Paul reacted to kavaa in Install Calibre Ebook Manager with PowerShellI made a install script for Calibre to do a Silent install.
UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
Improvements are welcome!
# Silent Install Calibre # https://calibre-ebook.com/download # 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 $source = "https://calibre-ebook.com/dist/win32" $destination = "$workdir\calibre.msi" Invoke-WebRequest $source -OutFile $destination # Start the installation msiexec.exe /i "$workdir\calibre.msi" /q # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\c*
For Windows 7 please change
$source = "https://calibre-ebook.com/dist/win32" $destination = "$workdir\calibre.msi" Invoke-WebRequest $source -OutFile $destination To
$WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("https://calibre-ebook.com/dist/win32","$workdir\calibre.msi") Since Powershell in Windows 7 does not support the Invoke-WebRequest
-
Paul reacted to kavaa in Install Skype with PowerShellI made a install script for Skype to do a Silent install.
UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
Improvements are welcome!
# Silent Install Skype # https://www.skype.com/en/download-skype/skype-for-windows/ # 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 $source = "http://www.skype.com/go/getskype-full" $destination = "$workdir\skype.exe" Invoke-WebRequest $source -OutFile $destination # Start the installation Start-Process -FilePath "$workdir\skype.exe" -ArgumentList "/VERYSILENT /SP- /NOCANCEL /NORESTART /SUPPRESSMSGBOXES /NOLAUNCH" # Wait XX Seconds for the installation to finish Start-Sleep -s 60 # Remove the installer rm -Force $workdir\skype* For Windows 7 please change
$source = "http://www.skype.com/go/getskype-full" $destination = "$workdir\skype.exe" Invoke-WebRequest $source -OutFile $destination To
$WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("http://www.skype.com/go/getskype-full","$workdir\skype.exe") Since Powershell in Windows 7 does not support the Invoke-WebRequest
-
Paul reacted to kavaa in Install Adobe Reader DC with PowerShellI made a install script for Adobe Reader DC to do a Silent install.
UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
Improvements are welcome!
Change the version if needed in the Source URL: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe
# Silent install Adobe Reader DC # https://get.adobe.com/nl/reader/enterprise/ # 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 $source = "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe" $destination = "$workdir\adobeDC.exe" Invoke-WebRequest $source -OutFile $destination # Start the installation Start-Process -FilePath "$workdir\adobeDC.exe" -ArgumentList "/sPB /rs" # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\adobe* For Windows 7 please change
$source = "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe" $destination = "$workdir\adobeDC.exe" Invoke-WebRequest $source -OutFile $destination To
$WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe","$workdir\adobeDC.exe") Since Powershell in Windows 7 does not support the Invoke-WebRequest
-
Paul reacted to kavaa in Install Google Chrome with PowerShellI made a install script for Google Chrome to do a Silent install.
UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
Improvements are welcome!
When a new version of Google Chrome comes out follow this url: https://enterprise.google.com/chrome/chrome-browser/
Next find the download button -> Right click on the download button and choose Copy Download Location paste it in the script and it will download the latest version.
# Silent Install Chrome # https://enterprise.google.com/chrome/chrome-browser/ # 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 $source = "https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B03FE9563-80F9-119F-DA3D-72FBBB94BC26%7D%26lang%3Den%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable/dl/chrome/install/googlechromestandaloneenterprise64.msi" $destination = "$workdir\chrome.msi" Invoke-WebRequest $source -OutFile $destination # Start the installation msiexec.exe /i "$workdir\chrome.msi" /q /norestart # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\chrome*
For Windows 7 please change
$source = "https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B03FE9563-80F9-119F-DA3D-72FBBB94BC26%7D%26lang%3Den%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable/dl/chrome/install/googlechromestandaloneenterprise64.msi" $destination = "$workdir\chrome.msi" Invoke-WebRequest $source -OutFile $destination To
$WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B03FE9563-80F9-119F-DA3D-72FBBB94BC26%7D%26lang%3Den%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable/dl/chrome/install/googlechromestandaloneenterprise64.msi","$workdir\chrome.msi") Since Powershell in Windows 7 does not support the Invoke-WebRequest