You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »


NOTE

Windows Servers added to VSM, prior to January 2021 will need to first update the Machine Proxy Agent running on them.   

Machine Proxy Agent Installation


It is possible to run Customized PowerShell commandlets or scripts on the servers managed by VSM. 

The output from these scripts can be seen on the View Details page or Dashlet. 

Configuring a Custom Script

To configure a custom script, navigate to Equipment Locations > Manage Equipment Page

Edit a Windows Server.

Under the Custom Scripts Tab, enter the PowerShell command details.

For example:

  • Retrieve the last 10 lines of an application log file every 5 minutes:
     Get-Content c:/User/AppData\Local\Microsoft\Teams/logs.txt | tail -10
  • Retrieve random Internet Cat Facts every 24 hours
     Invoke-WebRequest -Uri 'https://catfact.ninja/fact' -UseBasicParsing | Select-Object -ExpandProperty 'Content' | ConvertFrom-Json

A maximum of five PowerShell commandlets may be added with minimum repeat Interval of 3 minutes.


Viewing Custom Script Output

To view command output, click on View Details > Custom Scripts, for that Server.


Or, open a Windows Server Dashlet. or Linux Server Dashlet with Show Custom Scripts selected in the settings






  • No labels