Jump to content

Tripredacus

Supervisor
  • Posts

    13,326
  • Joined

  • Last visited

  • Days Won

    24
  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Tripredacus

  1. Welcome to the MSFN! Just so you know, we do not have political topics on this forum.
  2. Once I add a boot image into WDS (I currently have 4 on my test server) how can I set which is the default? When you PXE boot with multiple boot images, you get a menu and a 30 second timeout. Often after replacing or adding new images, this order shifts around. Is there a way to set which order they appear, or say, change the timeout period?
  3. Hey WreX, I am using this method instead: <script>Sub RunAdmin Set objShell = CreateObject("WScript.Shell") objShell.Run "fscommand\admin.exe" On Error Resume Next Set objShell = Nothing End Sub</script> <html><input id=runbutton style="width:153" class="button" type="button" value="Admin Prompt" accessKey="k" name="admin_button" display="none" onClick="RunAdmin"> </html> Using AccessKey. This allows ALT+K to be used to run the function.
  4. The problem is, which ones to register? I've put this project on hold for now, but hope to someday find a solution.
  5. Problem solved. First, changed mode to 16bit from 8bit. Then used the "Save for the Web" option. I'm not sure how I got it to 24bit Bitmap, Photoshop does not let you save in this format for the colors I was using. I ended up using Fireworks to save as the BMP, obviously it doesn't care as much. Hopefully soon you will get to see this image, its not up to me!
  6. The number one cause for a PE to fail to load or operate properly is bad memory. I always run memtest on machines that don't work with the PE as my first step. I have found some motherboards do not like the PE at all, but that was a long time ago.
  7. I have made a PSD that I am trying to save. It saves fine, but the image is not as bright as it is in the PSD format, it is a lot duller. I have tried 24bit BMP (my target format), 32bit BMP and PNG file. They all seem dull or slightly darker than the PSD file. How can I change this? The PSD is 1024x768, RGB/8 if that helps.
  8. I know exactly what you mean. You may want to change your tabbed browsing to have "open links in same tab" instead of new tab.
  9. Mine doesn't have that either, but it does have the product key in there.
  10. Did you try using relative paths? Also you might be better off using an HTML file or an HTA. Check out these forums also: Software Hangout Web Development
  11. Welcome to the MSFN!
  12. Ah yes, we have our Applications forum just for that. Be sure to check the sticky for the silent switch lists.
  13. Welcome to the MSFN!
  14. Tripredacus is also a Transformers character, so you find a lot of websites about that character and its toys as well. On page one, My influence only appears in 3 of the ten links. One is my website, one my tformers.com account page and my youtube channel.
  15. Video card temperature is going to be hot. Do you have a fan on your video card also? It wouldn't hurt to add a 3rd case fan in there since you have an extra plug available. CPU temp is kinda warm but isn't horrible. Just keep it under 70c. Also seeing how CPU and GPU temps are the same, another reason why I wouldn't trust this programs readings. See what the BIOS says. Also, I'm not sure about those voltage readings, you can double check those numbers (and the temps) with what the BIOS says if it has that info. I don't know why it is reading the +/- 12V as such weird values... Also why Temp3 is -1c...
  16. Well I would still use the unattend.xml but not have it install those programs. What is the source media you are using to install Vista? Also, you can make a Vista install DVD with no autounattend.xml in it, and say put that file on a floppy disk or USB key and the DVD will search for the file. This way you can easily test different unattend settings without having to rebuild you media every time. I keep a Vista Business DVD around that is set up like that for installing on weird configs that roll into here every now and then, so we can use custom unattend settings without rebuilding the media.
  17. I'll try to remember to recommend testing in other environments when people have problems running VMs.
  18. I am in the same boat as DigeratiPrime, except I don't keep track. I use the same username for all forums except for a handful that I joined over 10 years ago. I'm probably in the hundreds!
  19. The original author has abandoned this project, so I am taking over its sponsorship. I cannot take any requests for adding or updating new features to the software. UPDATE Working on v9.1 update. Last available versions Version 7.1 :: download Version 9.0 :: download Cleaned up Version 2.0 by Fredledingue :: download Custom PE backgrounds Embedded by Tripredacus :: download Vista by Tripredacus :: download
  20. You may want to dig around in the registry. You can do this by mounting your pe.wim, then use Regedit to edit an Offline Registry Hive. You will find a setup.hiv in the Mount folder someplace. I haven't done this yet and I can't remember exactly where it is, but you should be able to easily find it. The default resolution for the PE 2.x is 800x600 @ 60Hz I believe. It should be able to make due with the default display drivers. I haven't seen anything so far that leads me to believe adding display drivers does anything that the defaults can't do.
  21. I will try that next. I am also trying to compare the results of depends on two different systems. Within the PE, the load order for the failure for IEFRAME.DLL is this: SHELL32.DLL -> BROWESUI.DLL -> SHDOCVW.DLL -> IEFRAME.DLL However, in a working environment, the load order is different. For example, in a working system, the same path is the same except SHDOCVW.DLL does not link to IEFRAME.DLL, in fact, it doesn't link to anything! Also, in the working example, IEFRAME.DLL is linked from MSHTML.DLL. OK wait, let me change this around into something more readable. Non-Working Environment 1. SHELL32.DLL -> BROWSEUI.DLL -> SHDOCVW.DLL -> IEFRAME.DLL 2. SHELL32.DLL -> SHDOCVW.DLL -> IEFRAME.DLL 3. SHELL32.DLL -> SHDOCVW.DLL -> IEFRAME.DLL -> URLMON.DLL -> SHLWAPI.DLL Working Environment 1. SHELL32.DLL -> BROWSEUI.DLL -> SHDOCVW.DLL -| <--- SHDOCVW.DLL does not link further 2. SHELL32.DLL -> SHDOCVW.DLL -| <--- SHDOCVW.DLL does not link to IEFRAME.DLL 3. see #2 4. SHELL32.DLL -> SHDOCVW.DLL -> MSHTML.DLL -> IEFRAME.DLL Also, I am now noticing that the dependency loads are totally different between both machines. For example, the working machine has MSFEEDS.DLL listed as a dependency, while it does not list that file at all in the PE. I'm done for today I think. Tomorrow I will install Vista on a machine without any .NET Framework or Windows updates in it. I am thinking part of the problem is that this computer has all the .NET Frameworks installed and a handful of VS Runtime environments installed, so this may be causing me more of a headache than I need.
  22. I am finding that this error is because I am missing some VisualBasic or .NET runtime files, or that they are present already but need to be registered... I have no idea how to figure out which it is and or which need to be registered.
  23. Citrix is a remote access/vpn client. An example is Citrix Metaframe, now called XenApp I guess. http://en.wikipedia.org/wiki/Citrix_metaframe
  24. Based on my limited knowledge of this topic, looking at the benchmarks it seems the DDR2-844 is a better option. Your memory latency is higher, but also notice that with the higher clock speed memory, the L2 cache is doing more work than the other. However, you need to be careful, since it looks like you do not have the BIOS set up properly to use the slower clock memory, since you are also overclocking the CPU and FSB! Actually now that I see that, I can't say for sure. Your CPU and FSB speeds are different with each type of memory, so it is not a fair comparison!
  25. The CPU Fan obviously connects to CPU_FAN. As far as the other one, I don't think it matters. All three fan pin blocks should be powered when the computer turns on. Those inputs will match the respective listing in the BIOS if you look at the monitoring page. The CPU fan should go the CPU_FAN. If the BIOS is set up to control fan speed, it can change the speed of them at different temperature threshholds. it is important for the CPU fan. The other ones likely operate much the same in comparison to each other. For the case fan, connect it to the pin-block that has the same amount of pins as the connector. In the future, I recommend you note which pinblocks you disconnect from to make it easier later. And the motherboard supplies the power to the fans. There are some cases where the fan has a molex connector (some high-powered fans) but if you didn't use this setup before, you shouldn't have to use it now.
×
×
  • Create New...