<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[DriverPacks.net Forum - [REQ] MS Virtual PC 2007 Driver Pack]]></title>
	<link rel="self" href="http://forum.driverpacks.net/extern.php?action=feed&amp;tid=1514&amp;type=atom"/>
	<updated>2007-05-13T20:02:25Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.driverpacks.net/viewtopic.php?id=1514</id>
		<entry>
			<title type="html"><![CDATA[Re: [REQ] MS Virtual PC 2007 Driver Pack]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=10723#p10723"/>
			<content type="html"><![CDATA[<p>That&#039;s exactly what I do with VMware drivers : the vbscript detects bios, then you can install any software which has silent install.<br />I presume the same thing can be done with VPC.</p>]]></content>
			<author>
				<name><![CDATA[maxximum]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=54</uri>
			</author>
			<updated>2007-05-13T20:02:25Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=10723#p10723</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [REQ] MS Virtual PC 2007 Driver Pack]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=10635#p10635"/>
			<content type="html"><![CDATA[<p>The problem is probabaly that it&#039;s not just ordinary drivers (you know, INFs, SYSs, INIs etc) but a real installation routine.<br />Take for example my DVD-RAM &quot;drivers&quot; that cannot be bound in using the BASE, either (ok, I could run them as an exception).</p><p>Also, if you only install the drivers, what do you gain by this?<br />It would lack the &quot;free mouse&quot; (movinjg directly from the host GUI to the guest one) as well as drag&amp;drop of files.<br />Personally, that is what counts, not whether I have sound or more than 16 colours <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /></p>]]></content>
			<author>
				<name><![CDATA[Helmi]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=25</uri>
			</author>
			<updated>2007-05-09T14:50:48Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=10635#p10635</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [REQ] MS Virtual PC 2007 Driver Pack]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=10507#p10507"/>
			<content type="html"><![CDATA[<p>vbscript example I use to detect vmware bios and set display size (&quot;reschange.exe ...&quot;).<br /></p><div class="codebox"><pre><code>Option Explicit
Dim objWMIService, colBIOS, objBIOS, i, ws
Set objWMIService = GetObject(&quot;winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2&quot;)
Set colBIOS = objWMIService.ExecQuery(&quot;Select * from Win32_BIOS&quot;)
Set ws = WScript.CreateObject(&quot;WScript.Shell&quot;)

For Each objBIOS In colBIOS
	If Not IsNull(objBIOS.SerialNumber) Then 
		If Left(objBIOS.SerialNumber(i),6) = &quot;VMware&quot; Then
       Wscript.echo &quot;BIOS VMware found&quot;
		   &#039; http://www.12noon.com/reschange.htm
       ws.Run(&quot;reschange.exe -width=1024 -height=768&quot;),0,True
     Else
       Wscript.echo &quot;BIOS VMware not found&quot;
		End If
	End If
Next</code></pre></div>]]></content>
			<author>
				<name><![CDATA[maxximum]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=54</uri>
			</author>
			<updated>2007-05-03T06:03:04Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=10507#p10507</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [REQ] MS Virtual PC 2007 Driver Pack]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=10503#p10503"/>
			<content type="html"><![CDATA[<p>I&#039;ve tried options #1 and #3.&nbsp; Neither worked for me.&nbsp; <img src="http://forum.driverpacks.net/img/smilies/sad.png" width="15" height="15" alt="sad" /> I have tried both #1 and #3 with other drivers and had success, so I am pretty confident I&#039;m not making any obvious mistakes.&nbsp; <img src="http://forum.driverpacks.net/img/smilies/hmm.png" width="15" height="15" alt="hmm" /></p><p>(NOTE: #3 is not that straightforward in this case since the drivers are &quot;Microsoft&quot; drivers, meaning that by default they are ignored, and when Microsoft is not ignored you get a LOT of drivers to sort through).</p><p>I guess I&#039;ll look into option #2.&nbsp; Hopefully the VMware example will provide some assistance.</p><p>Is anyone aware of anything special about these drivers that would make options #1 and #3 more complex than usual?</p>]]></content>
			<author>
				<name><![CDATA[proximous]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=678</uri>
			</author>
			<updated>2007-05-03T03:51:44Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=10503#p10503</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [REQ] MS Virtual PC 2007 Driver Pack]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=10411#p10411"/>
			<content type="html"><![CDATA[<p>These drivers get installed when you install VMadditions and they are inside a MSI file which is language dependant.<br />They is differents ways to get these drivers :<br />1/ extract files from MSI, but some files seems to be duplicated.<br />2/ use a vbscript to detect BIOS from VM and launch VMadditions setup [I use this for VMware tools, using RogueSpear Scriptpack].<br />3/ extract drivers from your PC with tools like DriverGrabber (see <a href="http://forum.driverpacks.net/viewtopic.php?id=279">Tutorial</a>)</p>]]></content>
			<author>
				<name><![CDATA[maxximum]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=54</uri>
			</author>
			<updated>2007-04-30T17:48:51Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=10411#p10411</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[[REQ] MS Virtual PC 2007 Driver Pack]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=10408#p10408"/>
			<content type="html"><![CDATA[<p>I&#039;d like to request one of the experts to create a 3rd party driver pack for MS Virtual PC 2007 (<a href="http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx">http://www.microsoft.com/windows/produc … fault.mspx</a>).&nbsp; </p><p>I do extensive testing of installs with MS Virtual PC 2007 and it has become annoying to always have to manually install the drivers.&nbsp; I have successfully made other 3rd party driver packs for unique hardware I have, but my numerous attempts to make this have failed. <img src="http://forum.driverpacks.net/img/smilies/sad.png" width="15" height="15" alt="sad" /></p><p>Thanks.</p>]]></content>
			<author>
				<name><![CDATA[proximous]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=678</uri>
			</author>
			<updated>2007-04-30T15:29:13Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=10408#p10408</id>
		</entry>
</feed>
