Everything posted by Chris
-
Folder Monitor
Hi, try to run these scripts: Check if folder contines files older than 10 days. $fullPath = "path to the folder" $days = 10 # files older than 10 days $files = @(get-childitem $fullpath -include *.* -recurse | where {($_.LastWriteTime -lt (Get-Date).AddDays(-$days)) -and ($_.psIsContainer -eq $false)}) if($files.length -gt 0){exit 1} else{exit 0} Check if folder contains more than 5 files $fullPath = "path to the folder" $count = 5 # check if folder containes more than 5 files $files = @(get-childitem $fullpath) if($files.Count -gt $count){exit 1} else{exit 0}
- Monitor Services via Group Policy
-
Shutdown or Restart Scheduler v1.0
Have you tried to use the automation from the Pulseway webapp. There is the option to create the scheduled task by the day and time.
-
Automatic Scripts
Hi, Tony. In order to create scripts you have to go to the Pulseway webapp -> Automation -> Scripts. 1. Create the category (new folder for the scripts). 2. Select the category and then click on Create Script. 3. Give the script a name and a description. 4. Click on the tab Windows or Linux and enable the script for that OS. If you selected the Windows tab then you can choose one of the three script types (PowerShell, VBScript or Batch) and finally create the script by clicking on Save. 5. Once the script is created we can create a Task which will run this script. Tasks can be scheduled or executed on demand. Hope this helps.
-
New Installation of Pulseway Remote Desktop
Enable the diagnostics mode in the Pulseway Manager on the remote machine. Then try again to connect to the remote machine. After you have done this disable the diagnostic mode. In the Pulseway directory, where the Pulseway agent is installed, you will find two files (trace.log and rd_agent.log). Please send these files to Pulseway support including a link to this thread. Thanks
- New machines not appearing in app
-
Offline Computer - Monitoring
You can install the Pulseway Manager on the machine which is connected to the internet. Then the Pulseway Manager can monitor other machines through SNMP if machines support this option. Another option is simply ping the other machines from the Pulseway Manager to check if machines is up and responding.
-
A problem about the report
Unfortunately you can not create custom reports in the Pulseway. Pulseway web-app has prebuilt templates for reports.
-
Account Error
Hi gpc_mike, iOS 10 has introduced a policy which requires all SSL connections to be done through the TLS 1.2 protocol. Use the following tool to check if your server has TLS 1.2 enabled: https://www.ssllabs.com/ssltest/ and if it doesn't have it enabled the use IIS Crypto to enable it (and disable any deprecated ciphers or protocols): https://www.nartac.com/Products/IISCrypto . Chris
-
Server Down / Critical Notifications
Hi, Unfortunately, that's not possible at the moment. We will look into this in the future. Thanks Chris
-
remove registered system
Hi, Login to "My Account" and under "Monitored Systems" delete the system you want to remove. If the system is online it will also receive a deconfigure command which will strip the account credentials from the system preventing it from registering with your account when the system restarts. https://www.pulseway.com/account If you have an Enterprise server then you can remove it from the WebApp under the Account -> Monitored Systems menu entry. Thanks Chris
-
Run .bat file from android app
Hi, Send this command from the Android WebApp terminal: c:\Users\(username)\Desktop\filename Thanks Chris
- Remote Command Multiple Systems
- no endpoint listening at...
- no endpoint listening at...
-
Ability to export config from all systems from a central location
Hi JHP, Thank you for your suggestion. We'll consider adding that feature in the future. In the mean time you can use Group Policies. Please see page 19 of the user-manual on how to create and use Group Policies. Thanks Chris
-
Change username and account lockout
Hi, Please send an email to support [at] pulseway [dot] com and we have a look. Thanks Chris
-
System CPU & Memory Threshold Alerts
Hi Alex, Unfortunately we don't have an ETA at the moment. Thanks Chris
-
MacOSX System Logs
Hi Alex, It's in our to do list and we will consider it for a future release. Thanks Chris
- Wake on WAN
-
Interrupted installer
Hi Jaapyse, On the systems where you cannot run the installer, try to right click on the msi, select properties and then check on the bottom of the first tab for an Unlock button. If there is no unlock button confirm in the Digital Signatures button that the Object Code signing SSL Certificate is trusted by the local system. Thanks Chris
- Search function in Remote Desktop Manager
-
Faster way to add tag a device
Hi Grunta, Thank you for your feedback and suggestion. We will consider to have this feature in the future. Thanks Chris
- Wake on WAN
- Best Practice for multiple users