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.
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.
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...
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.
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...
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...
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...
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...
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...
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 =...
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...
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...
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...
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")...