Posts posted by Chris
-
-
-
-
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.
-
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
-
-
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.
-
-
Account Error
in iOS
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
-
-
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
-
-
-
-
-
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
-
-
-
-
-
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
-
-
-
-
Folder Monitor
in Feature Requests
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}