Enable-CiscoSecure.ps1


Description

Purpose

This function enables Cisco Secure on the specified computers.

Detailed Description

The Enable-CiscoSecure function uses the Invoke-Command cmdlet to run a script block on each computer specified in the ComputerName parameter. The script block checks for the presence of the sfc.exe file in the ā€œC:\Program Files\Cisco\AMP" directory. If the file is found, it starts the process with the ā€œ-sā€ argument to enable Cisco Secure.

Back to Top

Usage

Example 1

Enable-CiscoSecure -ComputerName "Computer1", "Computer2", "Computer3"

This command enables Cisco Secure on the computers named Computer1, Computer2, and Computer3.

Back to Top

Notes

No additional notes.

Back to Top


Script

<#
.SYNOPSIS
   This function enables Cisco Secure on the specified computers.

.DESCRIPTION
   The Enable-CiscoSecure function uses the Invoke-Command cmdlet to run a script block on each computer specified in the ComputerName parameter.
   The script block checks for the presence of the sfc.exe file in the "C:\Program Files\Cisco\AMP\" directory. If the file is found, it starts the process with the "-s" argument to enable Cisco Secure.

.PARAMETER ComputerName
   Specifies the names of the computers on which to enable Cisco Secure. This parameter accepts an array of computer names.

.EXAMPLE
   Enable-CiscoSecure -ComputerName "Computer1", "Computer2", "Computer3"
   This command enables Cisco Secure on the computers named Computer1, Computer2, and Computer3.
#>
function Enable-CiscoSecure {
    [CmdletBinding()]
    param (
        [Parameter(Mandatory = $true)]
        [string[]]$ComputerName  # Array of computer names
    )
    $ScriptBlock = {
        # Get the full path of the sfc.exe file
        $Path = Get-ChildItem -Path "C:\Program Files\Cisco\AMP\" -Filter "sfc.exe" -Recurse -ErrorAction SilentlyContinue
        if ($Path) {
            $Path = $Path.FullName
            # Start the sfc.exe process with the "-s" argument
            Start-Process -FilePath $Path -ArgumentList "-s" -Wait
            # Output the results as a PSCustomObject
            [PSCustomObject]@{
                ComputerName = $env:COMPUTERNAME
                SfcExePath   = $Path
                Action       = "Enabled"
            }
        }
        else {
            # Output the results as a PSCustomObject
            [PSCustomObject]@{
                ComputerName = $env:COMPUTERNAME
                SfcExePath   = $null
                Action       = "sfc.exe not found"
            }
        }
    }
    # Run the script block on each computer
    foreach ($Computer in $ComputerName) {
        Invoke-Command -ComputerName $Computer -ScriptBlock $ScriptBlock
    }
}

Back to Top

Download

Please feel free to copy parts of the script or if you would like to download the entire script, simply click the download button. You can download the complete repository in a zip file by clicking the Download link in the menu bar on the left hand side of the page.


Report Issues

You can report an issue or contribute to this site on GitHub. Simply click the button below and add any relevant notes. I will attempt to respond to all issues as soon as possible.

Issue


Back to Top