I have seen this question asked many times on this list and the spice-devel list. Now having figured out how to make it work I will provide the answer to the rest of the community.<br><br>*NOTE* this only applies to Windows/Internet Explorer users. There exists no other option other than the html5 spice console (still beta/in development) for windows users ATM. This will also only work with Internet Explorer.<br>
<br>Basic Steps:<br>- Install an oVirt server.<br>- Add at least one node<br>- Setup storage/iso/export domains<br><br>Advanced steps<br>- Start by downloading: <a href="http://elmarco.fedorapeople.org/spice.cab">http://elmarco.fedorapeople.org/spice.cab</a><br>
- Create a directory for it oVirt looks by default in /usr/share/spice<br>- Rename spice.cab to SpiceX.cab and copy it into /usr/share/spice<br>- Now edit /usr/share/ovirt-engine/engine.ear/root.war/WEB-INF and add the following:<br>
 <br> &lt;!-- SpiceX.cab --&gt;<br>  &lt;servlet&gt;<br>    &lt;servlet-name&gt;SpiceX.cab&lt;/servlet-name&gt;<br>    &lt;servlet-class&gt;org.ovirt.engine.core.FileServlet&lt;/servlet-class&gt;<br>    &lt;init-param&gt;<br>
      &lt;param-name&gt;type&lt;/param-name&gt;<br>      &lt;param-value&gt;application/octet-stream&lt;/param-value&gt;<br>    &lt;/init-param&gt;<br>    &lt;init-param&gt;<br>      &lt;param-name&gt;file&lt;/param-name&gt;<br>
      &lt;param-value&gt;/usr/share/spice/SpiceX.cab&lt;/param-value&gt;<br>    &lt;/init-param&gt;<br>  &lt;/servlet&gt;<br>  &lt;servlet-mapping&gt;<br>    &lt;servlet-name&gt;SpiceX.cab&lt;/servlet-name&gt;<br>    &lt;url-pattern&gt;/spice/SpiceX.cab&lt;/url-pattern&gt;<br>
  &lt;/servlet-mapping&gt;<br><br>- Next create an html file within /usr/share/ovirt-engine/engine.ear/root.war<br>- In the example below an html file called &quot;spice.html&quot;<br>- Copy/Paste the below into spice.html:<br>
<br>&lt;!DOCTYPE html&gt;<br>&lt;html&gt;<br>&lt;head&gt;<br>&lt;title&gt;SPICE Plugin Installer&lt;/title&gt;<br><br>&lt;script type=&quot;text/javascript&quot;&gt;<br>function installSpice()<br>{<br>try {<br>    document.getElementById(&#39;SpiceX&#39;).innerHTML = &#39;&lt;OBJECT id=&quot;SpiceX&quot; codebase=&quot;/spice/SpiceX.cab&quot; classid=&quot;clsid:ACD6D89C-938D-49B4-8E81-DDBD13F4B48A&quot; width=&quot;0&quot; height=&quot;0&quot;&gt;&lt;/OBJECT&gt;&#39;;<br>
    } catch (ex) {<br>        alert(&quot;Epic Fail!: &quot; + ex.Description);<br>    }<br>}      <br>&lt;/script&gt;<br><br>&lt;/head&gt;<br>&lt;body&gt;<br>    &lt;p&gt;<br>    &lt;p&gt;&lt;b id=&#39;SpiceX&#39;&gt;Spice ActiveX Plugin&lt;/b&gt; &lt;/p&gt; <br>
    &lt;button onclick=&#39;installSpice()&#39;&gt;Install Spice Plugin&lt;/button&gt;<br>    &lt;/p&gt;<br>&lt;/body&gt;<br>&lt;/html&gt;<br><br>- Save the file<br>- You will now need to restart the ovirt-engine service EG: systemctl restart ovirt-engine.service OR service ovirt-engine restart<br>
- The installer page will now be available at http://&lt;url to ovirt server&gt;/spice.html EX: <a href="http://ovirt.azeroth.net/spice.html">http://ovirt.azeroth.net/spice.html</a><br>- Navigate to that page and click the install button<br>
- IE will prompt you to deploy/install the SpiceX cabinet file<br>- It may gripe about an unsigned or untrusted source, acknowledge this an proceed anyways<br>- If the install succeeds the text &quot;Spice ActiveX Plugin&quot; on the page will change to blank (it&#39;s actually the plugin with null values)<br>
- The console button in the user and webadmin portals will now launch the new virt-viwer spice based console!<br><br>Happy Spice Consoling to your VM&#39;s from Windows!<br><br>*NOTE*<br>To uninstall the plugin:<br>- The below removes the add-on from IE (EG: removes knowledge of &quot;application/x-spice&quot;)<br>
- pop a command terminal and type:<br>On Windows XP: regsvr32 /u &quot;C:\Documents and Settings\Administrator\Local Settings\Application Data\virt-viewer\bin\SpiceX.dll&quot;<br>On Windows 7 regsvr32 /u C:\Documents and Settings\Administrator\Local Settings\AppData\virt-viewer\bin\SpiceX.dll&quot;<br>
- Next we need to remove the rest of virt-viewer<br>- Go to add/remove programs and uninstall virt-viewer, this removes the rest of virt-viewer from the system<br>