• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by Uraki

  1. U

    OMG, Transmission just raped me.

    You might try http://www.bitsonwheels.com/ for Mac OS X. I really like it and it seems to work great for me.
  2. U

    Need to FDISK computer, want to perserve purchased iTunes music

    iTunes has a "Backup to Disc" option built-in that will save off your library to CD or DVD...then you can easily use those backups to restore the library on a new install/new machine. And, in the process, you end up with backup copy you can store for future use.
  3. U

    Best T1 Router For Small Business

    You might go look at the AdTran NetVanta 3200 series routers. They are pretty inexpensive and probably among the cheapest T1 routers around. They have an IOS similar to Cisco but they also have a web interface for configuration. See...
  4. U

    server rack help

    You might want to check out the 19" 4-post racks at www.starcase.com We've started selling these where I work and they are pretty decent and come in a variety of sizes with various options like side panels, casters, shelves, etc.
  5. U

    Is there an easy way to create an up-to-date Windows CD?

    You might want to check out http://www.autopatcher.com/ Basically, all the Windows Updates plus some other stuff that you can download and install offline. You can install it and the update packs and then update your system all at one go. This is probably the easiest for most people. You...
  6. U

    This makes me miffed

    A Windows system without a C: root is easy to deal with. I've got a couple of machines with root drives of F: or G: Check the Windows help on the subst command. It is your friend if you have an app that insists on using C:\ A simple "subst C: F:\" will fix you right up. Personally, I...
  7. U

    Whats wrong with my network?

    Yes, the bittorrent stuff is probably causing the cheaper routers to reboot or lockup. Try using m0n0wall, pfsense, Smoothwall or IPCOP...all of these Linux/BSD-based routers will not die to massive connections created by using bitorrent. However, unless your roommate throttles down his...
  8. U

    Stable, affordable mobo for e6300

    At NewEgg, they have the Intel MicroATX board http://www.newegg.com/Product/Product.asp?Item=N82E16813121050 for about $115 with shipping. I've built a system with a E6300 on this mobo and it was a nice fast little system. If you don't want to OC, this might be an option. It has PCI-Express...
  9. U

    Excel VBA Run-Time Error 9

    I use code like this: Windows("MAINTBILL.xlt").Activate Sheets("Detail").Select ActiveSheet.Range("A2").Select . . . iFileName = ActiveSheet.Cells(2, 2).Value 'pick up filename from data To select loaded...
  10. U

    VBScript Help with Excel Script

    Just tried it, this works. Just set up a macro with this and you can quickly test it as you move the "last cell" by changing the value of some cell: Sub TestLastCell() Cells(1, 1).Select ActiveCell.Value = "Last Row" Cells(2, 1).Select ActiveCell.Value =...
  11. U

    VBScript Help with Excel Script

    This may or may not work for you in your situation, but I use the following code to set a print area dynamically and as a side-effect, it finds the last cell: Sheets("Detail").Select ' set print area to variable data ActiveSheet.Range("A15").Select Selection.End(xlDown).Select...
  12. U

    Managing my home network with Group Policy

    You might try "psexec" from www.sysinternals.com -- It gives you remote command-line access to machines on the network but you need to know a user/password in order to connect to the remote machine. Great if you want to write a batch file/script to do things to other computers. You could...
  13. U

    Cannot log on to Laptop

    Try http://home.eunet.no/~pnordahl/ntpasswd/bootdisk.html No guarantees, but it's always worked for me. Just take all the defaults and it will blank the admin password and then you can get back into the machine and do the rest from Windows proper. While you are in the utility, pay...
  14. U

    Batch File Diff

    You might start here: http://sourceforge.net/search/?words=diff&type_of_search=soft
  15. U

    Clearing spread sheet in VBa

    Something like this will probably help you. I had a sheet called "Answers": ' clear Answers sheet Worksheets("Answers").Activate Set Rng = Worksheets("Answers").Range("A2:K60000") Rng.Select Rng.ClearContents Set Rng = Worksheets("Answers").Range("A2")...
Back
Top