Search the Community
Showing results for tags 'windows'.
Found 318 results
-
Folder Monitor
Hi, I would like to have a folder monitor, basically I have a folder (or several folders) that I need to monitor that the files in the folder and receive alerts for the following. - files are older than X days - over X number of files in the folder Please advise if this is possible currently of if this will require development, if this can be accomplished with a script then some pointers would be useful, ideally this would run at the same rate as other aspects of the system, but it could also be a daily/hourly check as I understand it could consume time processing!
-
Null Value needed
I want to setup a SNMP notification for my canon printer. The "printer status" OID will show nothing when the printer is working and show a number if there is an error. I have no idea what each and every error might show up as. Is it possible to set the notification to alert me if that SNMP option changed from null to some number? Right now if I leave "value" blank I cannot click ok to finish.
- Push Custom MSI Package to Endpoints
-
Checking for keywords in log files with Pulseway
I hope I am in the right Subforum to ask this question. I recently started to use Pulseway and am impressed what I am able to do with it but I noticed one feature missing that I need. Is it possible with Pulseway to check Servers/Clients with log files for backups if they have been successful or failed? For example if there is a NAS connected to a network and someone is doing a USB Backup on it I want to check if it has failed so I will get a notification when it fails. I want to use it on Windows and Linux machines so my best guess is to use a script of somekind right?
- Exclude Disk
-
Monitoring log files for date change
I have created a Windows cmd file to copy files nightly on one of my servers. If there is an error, the cmd file outputs the error to an error.txt file, thus updated the "Last Write" date on the file. My command file is working great, and outputs the errors to the error.txt, and the date stamp on the error.txt file is updated each time this happens. I configured the Pulseway Computer Settings via Notifications -> Storage -> Files. I added the error.txt and checked for notifications to be sent when the file last write date has changed. (see image) This works the first time, but the second, no notification is sent. Am I doing something wrong? Any pointers on how I can make this work consistently? Thanks!
- Not receiving any notifications from windows pc
-
Server Patching
Hi, I am looking to use Pulseway to patch our clients servers. However there are some clients that need them patched in a specific order. For example I want to patch the VMs on the Hyper-v then when they have completed run the patches on the Hyper-V host. I may be missing something obvious but can't seem to find how to do that. thanks
-
pulsewaycredentialprovider.dll
I am having issues with pulsewaycredentialprovider.dll stopping the Windows login screen from loading on Windows 10 1809. I have submitted a ticket to support at support@pulseway.com as well. The issue is that with Pulseway software installed and the credential provider loading the system boots to the displayed screen but will go no further. I am able to run terminal and PowerShell commands from the web interface (prior to software uninstall) but can never log in. Pulseway remote does not work either. This is happening on two Windows 10 1809 DELL Optiplex computers with fresh Windows 10 PRO installations. RIght now our only solution is to leave Pulseway uninstalled. Any information or solution helpful. Thanks. John
- Monitor Temperature
-
Wrong uptime display in Windows Dashboard
Hi, On the Windows Dashboard 6.1 (build 1113) the up-time display is quite strange - I love precision but
-
Agent job staus in SQL server module
It would be nice with a build in option to trigger notifications based on failed Agent Jobs. We are currently using this custom SQL Query in 'msdb': SELECT STUFF((SELECT N', ' + name FROM (SELECT name FROM dbo.sysjobs WHERE (SELECT TOP 1 run_status FROM dbo.sysjobhistory WHERE (step_id = 0) AND (job_id = sysjobs.job_id) ORDER BY run_date DESC, run_time DESC) = 0 AND (enabled = 1)) AS [n1] FOR XML PATH(''),TYPE).value('text()[1]','nvarchar(max)'),1,2,N'') AS [Failed] // Martin.
-
Improve shutdown notification
Hi. When receiving the notification "The computer 'XXX' in group 'XXX' is shutting down" I am always wondering who is shutting down the server. Could it be possible to add information about which user initiated the shutdown? I know that Windows write it to the eventlog, so the information should be available. If it could possible to match the users with RDP connections, so we also can see what client the user was connected from, it would something near perfect. The computer 'XXX' in group 'XXX' is shutting down by user 'XXX' logged on interactively. The computer 'XXX' in group 'XXX' is shutting down by user 'XXX' logged on remotely from client 'XXX'.
-
More that one notification per plugin?
Hi MMSOFT. Is it somehow possible to generate more individual notifications from the same plugin, without using allowMultipleNotifications. It is not hard to imagine that a plugin would have to monitor two or more individual values. If it is not possible, consider this a feature request :-) Best Regards, Martin.
- Date/time formatting and timezones
- Graph in Plugin?
-
Backup status in SQL Server module
It would be nice with a build in option to trigger notifications based on the date since last backup of any databse. We are currently using this custom SQL Query i 'msdb': SELECT STUFF((SELECT N', ' + name FROM (SELECT TOP (100) PERCENT db.name FROM (SELECT name FROM master.sys.databases WHERE (state = 0) AND (NOT (name IN ('tempdb')))) AS db LEFT OUTER JOIN (SELECT database_name AS name, backup_finish_date AS timestamp FROM dbo.backupset UNION SELECT name, create_date FROM master.sys.databases) AS b ON b.name = db.name GROUP BY db.name HAVING (NOT (1 * ISNULL(STR(ABS(DATEDIFF(hh, GETDATE(), MAX(b.timestamp)))), - 1) BETWEEN 0 AND 48)) ORDER BY db.name) AS [n1] FOR XML PATH(''),TYPE).value('text()[1]','nvarchar(max)'),1,2,N'') AS [Missing] // Martin.
-
MSI with parameters
I am trying to upgrade some software using PowerShell and I am not sure if my parameters are correctly formatted . See highlighted text # Silent Install Secure Secure Authentication # http://repository.eset.com/v1/com/eset/apps/business/esa/windows/v2/2.7.32.0/esa_nt64_enu.msi # Path for the workdir $workdir = "c:\scripts\" # 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://repository.eset.com/v1/com/eset/apps/business/esa/windows/v2/2.7.32.0/esa_nt64_enu.msi" $destination = "$workdir\esa_nt64_enu_v2.msi" # Check if Invoke-Webrequest exists otherwise execute WebClient if (Get-Command 'Invoke-Webrequest') { Invoke-WebRequest $source -OutFile $destination } else { $WebClient = New-Object System.Net.WebClient $webclient.DownloadFile($source, $destination) } Invoke-WebRequest $source -OutFile $destination # Start the installation msiexec.exe /i "$workdir\esa_nt64_enu_v2.msi" ADDLOCAL="Credential_Provider" /qb /L*v "c:\esa_install_log.txt" # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\esa_nt64*
-
Using variables in scripts
Hello! Recently I've been experimenting a bit using scripts that contain variables that the user should enter. For example, a very simple one to shutdown a computer after X-amount of time: (example use-case: I download large files during the night, so it doesn't count towards my ISP data-usage) @echo off set /p time=Enter time in seconds: shutdown /s /t %time% timeout /t 3 /NOBREAK exit however, upon executing said script, the app doesn't request for the variable to be filled out. (I guess it's not made for such uses) Obviously, i can manually enter the command using CMD, but i don't want to be typing the command every time i need it. (you can call me lazy :p) Any ideas how to do this correctly?
- Upload/Install Software
-
RMM integration with PSA
Hi there, We are using both PSA and RMM from Pulseway. In the last few weeks we are experiencing some weird behavior between PSA and RMM. We don't use the and never set up the integration, but after we delete the settings both in PSA and RMM, it still comes back. It is irritating us enormously and the support isn't helpful after creating several tickets. I hope someone can help us with this issue. King regards, Tim Roewen
- Program restart on ending script
- PSA Time Update Bulk Actions
-
Add time button
Sometimes i am creating a ticket after i have already started work on the problem. Not ideal I know, but it happens. It happens enough that i would really like to be able to put in the time i started working on the problem and then hit the now choice and then hit a "Add time" or start tracking time button that continues to update the "now" or "end" field. that way i dont have to remember to hit that now button when i am done and hit the save button.
-
One server seems to be offline but is up and running
Hello We have a dedicated controller at Pulseway. We have a couple of Windows Servers but one has showed itself as offline since yesterday. The Windows Server itself is up and running fine and the Pulseway service is running. I have tried this: Restart Pulseway Service (No problems) Unregister and Reregister System (Working Fine) Rebooted the server Communicationtest "telnet xxxx.pulseway.com 443" answering like it should Uninstalled Pulseway and removed the registry key "ComputerIdentifier" then reinstalled Uninstalled Pulseway again and removed the whole Hive "MMSOFT Design" from registry and reinstalled Pulseway. Seems like no matter what I do the server is Offline in Pulseway controller at web and IOS. Do you have any suggestions to point me in the right direction? Kindly Mikael