PowerShell script to force an update configuration on SEP Clients
search cancel

PowerShell script to force an update configuration on SEP Clients

book

Article ID: 389126

calendar_today

Updated On:

Products

Endpoint Security Complete

Issue/Introduction

PowerShell script to force an update configuration on SEP Clients.

Reasons for this script may include:

  • Clients have not automatically updated their configuration.
  • Clients are in a hung state and need an update to get things working again.

Resolution

This script is provided "As is", and assumes no warrantees or guarantees.

This script will have the client update it's configuration.

Set objShell = CreateObject("WScript.Shell")
strCommand = "smc -updateconfig"
objShell.Run strCommand, 0, True