Skip the Boot Menu in Provisioning Services 1


In Provisioning Services, you can configure the stream service to skip the vDisk boot menu to select the default option for target devices.  This feature can be useful when configuring a dedicated maintenance or test target device, bypassing the need to select the boot option when using vDisk versioning.  If you’re still not on the versioning train, it is time to climb aboard!

To disable the boot menu, you must edit the registry, as explained in CTX135299.

  1. Set the boot option as the first option in the start menu.
    • On all Provisioning Services servers till 6.x, open the Registry Editor and browse to HKLM\Software\Citrix\ProvisioningServices.
    • On Provisioning Services servers 7.x, open the Registry Editor and browse to HKLM\Software\Citrix\ProvisioningServices\StreamProcess.
  2. Right-click Provisioning Services > click New DWORD Value “SkipBootMenu”.
  3. Double-click the new DWORD and type Value data of 1 ( a value of 0 will enable normal boot menu behavior ).
  4. Close the Registry Editor.
  5. Restart the Citrix Provisioning Services Stream Service on the Provisioning Services server(s).

Leave a comment

Your email address will not be published.

One thought on “Skip the Boot Menu in Provisioning Services

  • Alain

    For PVS 7.x, the path should be HKLM\Software\Citrix\ProvisioningServices\StreamProcess.

    Here’s short PowerShell script to add this to PVS 7.x:

    $regPath = “HKLM:\Software\Citrix\ProvisioningServices\StreamProcess”
    $name = “SkipBootMenu”
    $value = “1”
    New-ItemProperty -path $regPath -name $name -value $value -PropertyType DWORD -Force | Out-null

    The Out-null removes any console output, leave that part off if you want to see feedback.

    Thanks,
    Alain