Search Results for

    Show / Hide Table of Contents

    How to View All Patches

    Last updated on August 3, 2021.

    Last Reviewed and Approved on PENDING REVIEW

    From the Graphical User Interface

    Using the RPS Graphical User Interface (GUI), users can view patches on the patches page of the RPS GUI

    1. Launch the RPS Website and navigate to the Patches Page (Distribution > Patches)

      Figure 1: Patch Dropdown

      Figure 1: View all patches

    2. From this page you can view all patches in the CMDB

      Figure 2: View all patches

      Figure 2: View all patches

    Disable or Enable Patches

    Enable a Patch

    To enable a patch, click on the button labeled Enable next to the patch you want to enable.

    Figure 3: Enable patch

    Figure 3: Enable patch

    [!Important]
    Enabling a patch will also enable any dependencies that may be required for the patch.
    

    Disable a Patch

    To disable a patch, click on the button labeled Disable next to the patch you want to disable.

    Figure 4: Disable patch

    Figure 4: Disable patch

    [!Important]
    Disabling a patch will also disable any dependencies that may be required for the patch.
    

    From PowerShell

    In PowerShell, users can view all patches or specific patches using the RPS cmdlet Get-RpsPatch.

    Important

    Start by establishing your working session in PowerShell ISE Administrator Mode.

    1. Click on the Search Icon from the Start Menu. Click on Search Icon

    Figure 1: Click on Search Icon.

    1. Search for PowerShell ISE by typing PowerShell ISE in the Search bar. Search for PowerShell ISE

    Figure 2: Search for PowerShell ISE.

    1. Click on Run As Administrator. Open PowerShell ISE as Administrator

    Figure 3: Open PowerShell ISE as Administrator.

    1. Retrieve a specific patch by specifying the patch's name in the -Name parameter of the Get-RpsPatch cmdlet:

      $myPackage = Get-RpsPatch -Name 'MyPackage1'
      
    2. Retrieve all Patches in the CMDB by not specifying any parameters for the Get-RpsPatch cmdlet:

      $myPackages = Get-RpsPatch
      
    In This Article
    Back to top Generated by DocFX