Skip to content

Updating the CodeLogic Windows .NET Agent

Important

Before you update your CodeLogic Agent, please verify that your systems meet the CodeLogic Installation Requirements.

Internet access is required for updates.

  • Stop the .NET Agent through the Windows Services Manager.

CodeLogic Windows .NET Agent in Windows Services Manager

  • Download the Windows .NET Agent from your CodeLogic server package repository:

    wget http://your_server/codelogic/server/packages/netcape-installer.msi
    

    Replace your_server with your CodeLogic server hostname.

  • Run the Installer

    • Double-click the downloaded netcape-installer.msi icon to begin installation.

    Note

    CodeLogic preserves the settings in your configuration file. You do not need to configure the agent unless the default configuration file has been modified. To see if the default configuration has been modified, please check the release notes.

  • Execute or Start the Agent

The CodeLogic Agent for Windows .NET is executed through a Command-Line Interface (CLI).

/// tab | CLI

* Change directory to the `C:\Program Files (x86)\CodeLogic\NetCape` directory and run the agent from the command line.

    //// note | Note
    Replace “path\_to\_scan” with the path to the .NET application to be analyzed.
    ////

* Commands:

    ```batch
    cd “C:\Program Files (x86)\CodeLogic\NetCape”
    NetCapeAgent “path_to_scan”
    ```

    //// note | Note
    A lot of output will be printed. The window can be minimized. When decomposing, all available CPUs will be used.
    ////
///