Skip to main content
Cisco Meraki Documentation

Windows Imaging and Systems Manager

Systems Manager uses a Universally Unique Identifier (UUID) to identify different Windows computers in Dashboard.

Duplicated UUID Clients

When a computer has the Systems Manager client installed on it and is then used as the base image and pushed out to multiple computers, this will result in all of them sharing the same UUID. When the computers report in to the Dashboard they will not appear as unique clients because of the matching UUID. Due to this fact, imaging with Systems Manager is not recommended. If a client is imaged with Systems Manager installed the following steps will allow you to remove the old UUID and generate a new one.

 

  1. Run the MerakiPCCAgent.msi and select Remove. This will uninstall the Systems Manger agent from the computer.
  2. In the Registry find and delete the entry under...
    For 32-bit: HKEY_LOCAL_MACHINE\SOFTWARE\Meraki\MerakiPCCAgent\UUID
    For 64-bit: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Meraki\MerakiPCCAgent\WindowsCachedUUID
  3. Reinstall the agent on the computer.

To image and install Systems Manager unattended follow the steps below.

Using Imaging Software to install SM

To deploy a Systems Manager agent as part of a software image follow these steps.

  1. Add the Windows installer to the PC that will be the base image (do not run it). This can be found under Systems Manager > Manage > Add devices > Windows in a Systems Manager network.
  2. To minimize the times a Client needs to be touched, consider making a .bat file script that will run the image on the client upon startup.This .BAT example will silently run the installer, delete the installer executable, and delete itself. Exclude all '<' '>' characters.
    MSIEXEC /i C:\<filepath>\<MerakiPCCAgent.msi> /qn
    del C:\<filepath>\<MerakiPCCAgent.msi>
    del C:\<filepath>\<scriptname.bat>
  3. Assign this script as a startup script on the base image and it will run the first time the client is booted and the client will be added to Systems Manager.

 

  • Was this article helpful?