Jump to content

Tripredacus

Supervisor
  • Posts

    13,309
  • Joined

  • Last visited

  • Days Won

    24
  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Tripredacus

  1. Welcome to the MSFN!
  2. You probably have to start a new game instead of using a save?
  3. Does MDT have support for Starter? Also OP didn't specify Home Premium or Home Basic, I am going to presume Home Basic for now Lastly, the Imagex /capture syntax determines the WIM file name.
  4. I also see that you set your variable $write to be nothing (which is fine) and you check it to see if there is data in it. AutoIT has this function already, IsObj. Look at this I typed up real quick: dim $var $var = ClipGet() IF IsObj($var) Then FileWriteLine($file,$var) ELSE sleep(100) endif I haven't tested this of course so hopefully I didn't make an error.
  5. Are you using a modified XP installation such as nLite or are you using a Distribution Share?
  6. I can think either one of the updates are corrupted, or that you have something in your install that requires .NET Framework 4.0 and you did not include it.
  7. Since this isn't about a specific Windows 7 release or version, I shall move this to Software Hangout.
  8. Does this happen with every deployment, or just one PC and other ones work?
  9. If you can find the actual uninstaller application (.exe) and you can determine what was used to create it, you may be able to pass switches to it.
  10. I wonder if the driver is generic, instead of specifically written for Server 2003 R2 aka Windows v5.2. Some driver makers take a shortcut and just make them for x86, amd64 or ia64 without specifying an OS version.
  11. A new hard drive will appear in Device Manager but NOT in My Computer until you format it. If you go into Disk Management in Computer Management, Windows should prompt you to initialize the new disk.
  12. I am seeing it. Fortunately no one uses those three code tags. Definately we are aware of the codebox... We've been battling that for awhile. PHP color coding? <? include_once ("./settings.php"); $link = mysql_connect($host,$user,$password); mysql_select_db("$tpx_forums"); echo '<table cellpadding=0 spacepadding=0 border=1 width=100%><tr>'; $result=mysql_db_query($base,"select * from ".$basesites."",$link); if ($result > 0) { $num4=mysql_num_rows($result); if($num4!=0) { $n=0; while ( $n<$num4 ) { # call and show the ID $id=mysql_result($result,$n,"id"); # call and show the series $series=mysql_result($result,$n,"series"); # call and show the line $line=mysql_result($result,$n,"line"); # call and show the year $year=mysql_result($result,$n,"year"); # call and show the country $country=mysql_result($result,$n,"country"); $n++; if (!$size) $size="0 kb"; echo "<tr>"; echo "<td align=left>$id</td>"; echo "<td align=left>$series</td>"; echo "<td align=left>$line</td>"; echo "<td align=left>$year</td>"; echo "<td align=left>$country</td>"; echo "</tr>"; } } echo "</table>"; } ?> XML color coding? <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd"> <svg xml:space="preserve" width="800" height="600" viewBox="0 0 800 600" version="1.1" xmlns="http://www.w3.org/2000/svg" onload="DoOnLoad( evt )"> <script type="text/ecmascript"> <![CDATA[ function changeRectColor(evt) { var red = Math.round(Math.random() * 255); var green = Math.round(Math.random() * 255); var blue = Math.round(Math.random() * 255); evt.target.setAttributeNS(null,"fill","rgb("+ red +","+ green+","+blue+")"); } var dragger = null; var origTransform = ""; var origX; var origY; var oldTranslateX; var oldTranslateY; var translateRegExp=/translate\(([-+]?\d+)(\s*[\s,]\s*)([-+]?\d+)\)\s*$/ function DoOnMouseOver(evt) { } function DoOnMouseOut(evt) { } function DoOnLoad(evt) { var el = getSVGDocument(evt.getTarget()).getElementById("left"); el.getStyle().setProperty("fill", ""); } function DoOnMouseDown(evt) { if( evt.getTarget().getAttribute("id") == "left" ) { var el = getSVGDocument(evt.getTarget()).getElementById("helloText"); el.getStyle().setProperty("visibility", "visible"); } var onObject = evt.getTarget(); if( onObject.getAttribute("id") != "bg") { dragger = onObject; origTransform = dragger.getAttribute("transform"); if (origTransform == null) origTransform = ""; else origTransform = new String(origTransform); origX = evt.getClientX(); origY = evt.getClientY(); oldTranslateX = 0; oldTranslateY = 0; if (origTransform == null || origTransform.length == 0) origTransform = ""; else { var result = origTransform.match(translateRegExp); if (result == null || result.index == -1) { alert("The regular expression had a problem finding the translate at the end of \"" + origTransform + "\""); oldTranslateX = 0; oldTranslateY = 0; } else { oldTranslateX = parseFloat(result[1]); oldTranslateY = parseFloat(result[3]); origTransform = origTransform.substr(0, result.index); } origTransform += " "; } } } function DoOnMouseUp(evt) { if( dragger != null ) { dragger.getStyle().setProperty("fill", ""); dragger = null; origTransform = "" origX = 0; origY = 0; oldTranslateX = 0; oldTranslateY = 0; var el = getSVGDocument(evt.getTarget()).getElementById("helloText"); el.getStyle().setProperty("visibility", "hidden"); } } function DoOnMouseMove(evt) { if( dragger != null ) { dragger.getStyle().setProperty("fill", ""); var newX = oldTranslateX + (evt.getClientX() - origX); var newY = oldTranslateY + (evt.getClientY() - origY); var transform = origTransform + "translate(" + newX + " " + newY + ")"; var text = getSVGDocument(evt.getTarget()).getElementById("helloText"); text.getFirstChild().setData(transform); dragger.setAttribute("transform", transform ); } } function getSVGDocument(node) { // given any node of the tree, will obtain the SVGDocument node. // must be careful: a Document node's ownerDocument is null! if( node.getNodeType() != 9 ) // if not DOCUMENT_NODE return node.getOwnerDocument(); else return node; } ]]> </script> <defs> <linearGradient id="GradTwo" x1="0%" y1="0%" x2="0%" y2="100%"> <stop offset="5%" stop-color="#4FD8FF" /> <stop offset="20%" stop-color="#FFFFFF" /> <stop offset="70%" stop-color="#AA00AA" /> <stop offset="95%" stop-color="white" /> </linearGradient> <linearGradient id="GradSix" x1="0%" y1="0%" x2="0%" y2="100%"> <stop offset="15%" stop-color="white" /> <stop offset="25%" stop-color="black" /> <stop offset="50%" stop-color="red" /> </linearGradient> </defs> <g id="oneGroup"> <polygon id="onePoly" points="329,180 525,250 454,454 267,375" fill="#cccccc" stroke="#000000" stroke-width="1" onclick="changeRectColor(evt)"/> </g> <polygon id="left"/> <g id="twoGroup" onmouseover="DoOnMouseOver( evt )" onmouseout="DoOnMouseOut( evt )" onmousedown="DoOnMouseDown( evt )" onmouseup="DoOnMouseUp( evt )" onmousemove="DoOnMouseMove( evt )"> <polygon id="threePoly" points="253,174 344,231 289,332 203,270" fill="#336699" stroke="#000000" stroke-width="1"/> <polygon id="fourPoly" points="332,67 481,61 482,218 335,219" fill="#cccccc" stroke="#000000" stroke-width="1"/> <polygon id="fivePoly" points="235,101 304,140 270,219 202,180" fill="#cccccc" stroke="#000000" stroke-width="1"/> <polygon id="sixPoly" points="188,126 230,183 184,229 143,174" fill="#cccccc" stroke="#000000" stroke-width="1"/> <polygon id="sevenPoly" points="97,103 142,132 123,181 79,151" fill="url(#GradTwo)" stroke="#000000" stroke-width="1"/> </g> <g id="spinGroup"> <polygon id="twoPoly" points="296,359 356,425 296,487 238,421" fill="url(#GradSix)" stroke="#000000" stroke-width="1"/> <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0,296,422" to="360,296,422" begin="0s" dur="10s" repeatCount="indefinite"/> </g> <text x="300" y="100" id="helloText" style="visibility: hidden; fill: black; font-family: Impact; font-size: 24">r</text> <text x="25" y="25" id="instructionalText" style="font-size:14">Moving Pictures</text> <text x="25" y="37" id="instructionalText" style="font-size:14">click large box to change color</text> <text x="25" y="49" id="instructionalText" style="font-size:14">drag the other boxes</text> </svg> Preview Post = egads! PS: XML color coder doesn't ignore the CDATA like it is supposed to...
  13. I've been using the "Media Disconnected" firewall for a few years now...
  14. HTPCs are all about form factor. If we are thinking the same thing here, I found a couple already... such as: Zotac H55ITX-C-E Gigabyte H55N-USB3 However you may find more if you go here, which is what I typed in: (because posting google links is unruly) If you are looking for larger sized boards, there may be more options out there.
  15. Firstly, is this how you went about adding the support? http://www.microsoft.com/enable/training/windowsxp/keyboardlayout.aspx Other questions: 1. Are you logged onto the system with an account with Administrative rights? 2. Did you modify your Windows install at all with tools like nLite or something similar? 3. Does anything get logged in Event Viewer when this error occurs?
  16. Cloud Word saves the day!

  17. Okay - this doesn't inspire me with confidence. I guess the key thing is to have a tool that will reliably restore a working and bootable system, so if I'm not confident ImageX can provide this, I'll veer towards using DriveImage XML. This isn't a problem with Imagex, its more a problem with DiskPart, the program I used to format volumes. Diskpart was changed in WinPE 3 from WinPE 2, I found this by accident. And I only encountered these problems because I had a partition on the HDD that was doing the work. Network use of Imagex works fine with XP, never a problem!
  18. I would be interested to know what this pop-up says...
  19. Sleep can be interrupted by programs running on the system. Hibernate (I do not believe) is effected like this. Here is something you can check out. Run gpedit.msc - In Local Computer Policy, expand Administrative Templates - expand System - expand Power Management - click on Sleep Settings you want to look at "Allow Applications to Prevent Automatic Sleep (plugged-in)" another one may be "Turn on the Ability for Applications to Prevent Sleep Transitions (plugged-in)" Presumably, disabling this should stop this behaviour, however I have not tried it. Another thing to check, make sure you have the Standby State set to S3 in the BIOS. Some motherboards will come from the factory with S1 specified. If it says S1&S3 that is ok.
  20. I encountered this problem (in theory anyways) when creating my own recovery partition. There is no easy way to do it! The best idea I came up with was to read something unique about the disk, like the drive serial number or something written into the MBR. Unfortunately, I never got past the R phase of the R&D on that one since the project got shelved.
  21. Welcome to the MSFN!
  22. Have you tried updating the drivers? Code 10 can mean only a couple of things: - device is disabled in BIOS (its not) - device is malfunctioning (its not) - the driver is not correct For example, if you were to force a NIC driver to install on an unsupported device, you can get a Code 10.
  23. A wrapper is a program, script or batch file that "wraps" around another program. So yes, it is just a script if we keep the terms simple. You need to first be able to detect your monitor. The best bet would probably use WMI. You need to detect if it is connected... I'm not sure which class it would appear in! You'll have to play around with that. I had written a program that gets motherboard info from WMI, but you can get other info if you want also. You could also maybe check the registry, but the keys for monitors do not always get removed when you disconnect them. I made a post here about how to read WMI: Once you get something started, and you still need help, make a post here: http://www.msfn.org/board/forum/66-programming-c-delphi-vbvbs-cmdbatch-etc/ Or we can move this thread there instead.
  24. Vroom Vroom!
×
×
  • Create New...