> ## Documentation Index
> Fetch the complete documentation index at: https://support.xraysim.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MDM deployment instructions (VR and Desktop)

> Best practice for deploying the X-ray simulator using Intune or other MDM systems

## Important Information for IT Departments

The Desktop and VR X-Ray Simulator is distributed as a standalone `.exe` installer.\
To deploy either application silently through your MDM system, please use the command provided below.

## Official Silent Install Command

<Note>
  Change the file name and path to suite the version that your are installing.
</Note>

```bash theme={null}
"SIGNED_Setup Desktop X-Ray Simulator v1.0.0-rc.2.exe" /verysilent /norestart /suppressmsgboxes /log="C:\Windows\Temp\XRaySimulatorInstall.log"
```

This ensures:

* **Fully silent installation** (no windows, no user interaction)
* **No system reboot** after installation
* **Suppressed message boxes** (avoiding any pop-up warnings)
* **Logging enabled** for troubleshooting (`C:\Windows\Temp\XRaySimulatorInstall.log`)

### Installer Behavior

* Application installs by default to:

  ```bash theme={null}
  C:\Program Files\VitaSim\<platform> X-Ray Simulator\
  ```

  Platform varies with VR or Desktop version.

* No license entry or additional configuration is required at install time.

* Installation must be run with **administrative privileges**.

### Silent Uninstallation (Optional)

If a silent uninstall command is required, use:

<Note>
  Change the file name depending on what version you are uninstalling, and change the path if you changed the default install location.
</Note>

```bash theme={null}
"C:\Program Files\VitaSim\Desktop X-Ray Simulator\unins000.exe" /verysilent /norestart /suppressmsgboxes /log="C:\Windows\Temp\XRaySimulatorUninstall.log"
```

### Detection Rule Suggestion

If your MDM solution requires a detection rule to verify successful installation, we recommend checking for the existence of:

```bash theme={null}
C:\Program Files\VitaSim\Desktop X-Ray Simulator\Desktop X-Ray Simulator.exe
```

Detection can also optionally be based on the presence of the application's uninstall registry entry if preferred.

## Notes

* Administrative rights are necessary for both installation and uninstallation.
* If needed, the install log at `C:\Windows\Temp\XRaySimulatorInstall.log` can be reviewed to verify installation success or troubleshoot any issues.
