Jump to content

allen2

Member
  • Posts

    1,826
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    France

Everything posted by allen2

  1. This motherboard doesn't have a built-in speaker, you need to connect one on the front panel connector (read the page 25 of the manual). And it does beep, i just tried mine.
  2. Could you post all your specs ( cpu / ram / video card ) ?
  3. Then i would disable wifi on the SBG6580 then i would connect right behind the Vizio XWR100 with an ethernet cable. Then i would connect the computers to the Vizio XWR100 either by wifi or ethernet and use wpa2 and wifi mac address filtering. Then you'll need to set up firewall rules on Vizio XWR100. By default you should at least block incoming tcp/udp ports 1-1024 except those you need.
  4. I have the same board (not running it currently) but you do have two bios so unless something has gone very wrong one of them should still work. You should try removing all parts (cpu/ram /vga card/psu/case) then plug the mainboard to a speaker (see your manual) and only add the cpu and connect the psu only (so out of the case and nothing connected to the mainboard except the psu) and if it power on it should do beeps. Then add one component at time and try each time.
  5. When you removed cmos battery and set the clear cmos jumper, did you removed the power cord ? You might want to try things like shorting the power switch from the atx power cable: get a wire to connect the green and the black ( number 13 and 14) and it might work.
  6. This html code should help you you just need to adapt to your needs. <HTML> <HEAD> <script LANGUAGE="JavaScript"> function go() { var url=document.Navigate.titi.value; document.location.href="http://www.google.Fr/search?q=" + url ; } </SCRIPT> </HEAD> <BODY bgcolor="#FFFFFF"> <FORM name="Navigate"> Text: <input type=text name="titi" > <INPUT type="button" name="Navigate" value="Navigate" onClick="go();"> </FORM> </BODY> </HTML>
  7. If you only have one computer and no need for wifi, you should disable wifi on the "router" (they are more modem than router) you want to keep as you don't need both.
  8. That could also be the PSU, If you have a spare one, you should try with it.
  9. Google is your friend: http://www.smartftp.com/forums/index.php?/topic/14076-x64-version-of-smartftp-3/
  10. Did you tried booting in safe mode ? Most of those fake anti-virus exe usually are stored in the user profile, so booting into safe mode shouldn't allow them to run and there you should able to create a new account. Then you'll need to try it in normal mode. If everything is ok, all you have to do is to backup only the needed files from the old profile.
  11. Just for the record Acronis True Image can skip bad sectors and recent versions can exclude folders in the imaging process, i'am not sure about the Western digital one's.
  12. If you have a western digital drive, you could use Acronis True image to clone your data (as it doesn't do to sector by sector copy). Seagate provide Discwizard which should also be able to clone your drive. If you already cloned your partitions, you should just need to set the right partition as active or to do a fixmbr and/or fixboot after booting from your xp CD to the recovery console (you should let only one drive connected at this step).
  13. You could have also used the unix tools date.exe and use this: date.exe +"%b %d, %Y"
  14. If underclocking the gpu solved the problem, you could compare your power requirement ( with a wattmeter) but most likely the gpu is faulty. The time your computer should consume the most power should be when you benchmark it in burn mode so it is unlikely that the power supply isn't providing enough power to the gpu.
  15. Most likely your antivirus is interfering.
  16. If you need something like remote desk (instead of vnc) you might be interested in nomachine/nx server.
  17. Some practices are to set up a hidden file in the each folder with different rights but that doesn't deny users to move all others files there. The good practice there is to have backups (like windows shadow copies) in order to be able to restore the folder fast. Perhaps someone has a better solution.
  18. I usually don't approve deploying applications with gpos as it replicate gpos on every DCs. Most settings used in gpos (i ever saw) are internet config, login script, firewall config, restrictions (applications, computer, Internet ), wsus, profile settings (like IE cache, documents folder ....), application config (mostly office like autosave, templates docs....). Gpos can do almost anything in fact but you have to find out what.will be more suited to your needs.
  19. The offcial link of regshot i think.
  20. I think the forum of mozzila is there: http://forums.mozillazine.org/.
  21. A side question then, what kind of backup do you trust ? Tape, removable media ?
  22. True, i was wrong. I never saw one folder containing it until now. So "delims=" would be better as you corrected.
  23. ";" isn't allowed in paths so there won't be any problem with this but your options should also work. Everyone has its own way to do things.
  24. With delims, it now should do what you want. @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION CLS cd \. cd projects SET My_path=%~dp0 SET My_search="*%**" :loop SET /A My_counter=0 SET MY_ DIR "%My_search%" /AD /b >nul 2>&1 IF %ERRORLEVEL%==1 ECHO NOT FOUND&GOTO :EOF FOR /F "delims=;" %%A in ('DIR "%My_search%" /AD /b' ) DO ( SET /A My_counter+=1 ECHO !My_counter! - %%A&SET My_dir_!My_counter!=%%A ) SET /p My_choice=Please input number of directory: IF NOT %My_choice% LEQ %My_counter% ECHO Wrong, last dirnum is %My_counter%&PAUSE&GOTO :loop ECHO You chose directory !My_dir_%My_choice%! SET MY_
×
×
  • Create New...