Search results

  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")...
  16. U

    Need Help learning VB6

    If you go to http://msdn.microsoft.com/vstudio/express/default.aspx you can download the free Visual Studio Express with VB.NET. It has all kinds of tutorials, examples, etc to help you. Yes, it won't help you much with VB6 but it will expose you to VB-style programming. And you can't beat...
  17. U

    Scripting file transfer from logfile

    Ok, let's say you have the following 2 lines saved as "parselog.cmd" : @echo off for /F "delims=() tokens=2" %%A in (%1) do (echo copy "\\%2\%%A" "%%A") ...then you can do: parselog C:\somefile.log myserver > c:\copycmds.cmd To write the file C:\copycmds.cmd. Note that it...
  18. U

    UltraVNC problems over WAN

    I think the only way it will work for you is to find a friend with a computer on the internet that he has control of. He can run the UltraVNC Repeater on it in Mode II and then you can have you machine at the college connect to the Repeater PC in listen mode and then you can connect from...
  19. U

    Best Spam Filter? Exchange 2000

    ORF from http://www.vamsoft.com
  20. U

    Watching DVDs off DVD-RW in another comp on network

    Have you looked into this? http://www.videolan.org/ I haven't used it, but it looks like it will do what you want and even more
  21. U

    Importing / Exporting Data from text file in VBA - No Wizards!

    AWK is your friend. You can use it to massage the text file into something that you can handle in VBA. Warning: AWK is a command-line tool from the Unix world and is easy/hard depending on what you know of regular expressions. http://gnuwin32.sourceforge.net/packages/gawk.htm
  22. U

    Looking for a program to map out a network.

    Try this http://www.softperfect.com/products/networkscanner/ it's free and lists all the IP's on your network and the shares they have.
  23. U

    FoxPro v2.5 + "allt()"

    I believe that's short for ALLTRIM which is a built-in function that trims both leading and trailing spaces from a string. This is based on VFP 9.0 help files.
  24. U

    Input file names into array (vb6)

    Take a look here http://www.freevbcode.com/ShowCode.ASP?ID=708 and then spend some time on the site, you'll find lots of helpful bits-o-code there.
  25. U

    Any way to limit torrent app's bandwidth use?

    If you use a BT client like Azureus http://azureus.sourceforge.net/ you can limit the overall in & outbound bandwidth used. If you back down the upload speed in Azureus (or your bt client) off your max upload speed, that will help keep the downloads working for other applications. (the...
  26. U

    Parsing very large word document

    From the looks of it, this could be handled by saving the file as ASCII text and then running it through a fairly trivial AWK script, using AWK to insert a literal "<PAGEBREAK>" where needed and then load it back into Word and search/replace on all the "<PAGEBREAK>" with an actual page break and...
  27. U

    Buy a small rack, where?

    http://www.chatsworth.com http://www.budind.com/openracks.html
  28. U

    Anyway to control the monitor of a computer on a network?

    If you are going to use VNC, try UltraVNC at http://www.uvnc.com You get file transfer, encryption and more.
  29. U

    Routers that can handle multiple IP's on the WAN side

    If you want inexpensive, don't forget monowall. It also does 1:1 NAT http://m0n0.ch/wall/
  30. U

    Exchange + Spamfilter

    ...but before I'd spend $2K on a Barracuda, you should still try the $200 ORF product. Yes, it's just spam filtering, but most of your viruses are coming on that spam. Turn on a few blacklists and AD integration and watch your spam disappear. Note: I don't work for Vamsoft, but I haven't...
  31. U

    How can a bridge 2 networks? (Cable and DSL)

    You might want to look into a dual-wan router, something like a Xincom 502 from http://www.xincom.com This would let all the computers share both connections and give you the ability to port map, etc the stuff coming from the static IP connection to the appropriate servers on your lan...
  32. U

    Exchange + Spamfilter

    Visit http://www.vamsoft.com and spend $200 on the Open Relay Filter (somewhat of a misnomer). It sits in front of your SMTP and can use multiple spam blacklists (like SpamHaus, SpamCop, etc), you own custom black & white lists by IP, recipient, send and Active Directory. Very easy to...
  33. U

    Step by Step Setting up Home/Office Network (w/Domain)

    You may want to check out Microsoft's Small Business Server offerings. You get a Win2k3 server, Exchange w/5 CAL's for a pretty decent price. If you go with the Pro SBS, you also get SQL server and ISA (firewall, proxy server) as part of the deal. It supports up to 50 users (may be more now...
  34. U

    Partition Recovery Software

    I've had pretty good luck with http://www.acronis.com/homecomputing/products/diskdirector/
  35. U

    Need a public DNS that I can use with my collocation

    Or you might try these http://support.open-rsc.org/.servers/ for DNS...
  36. U

    Multiple IP Addresses on DSL Line - Need firewall

    You can use 1:1 NAT mode of, say, m0n0wall http://m0n0.ch/wall/ to accomplish that.
  37. U

    Remote Printing via VPN Challenge

    If I understand the problem correctly, here's what I have done in a couple of situations like yours: Turn off NetBios over TCP/IP Install your VPN client and get it working Install IPX protocol and enable NetBios over it instead (this was fairly easy with Win98, I haven't tried it with...
  38. U

    Exchange 2000 and automatic NDRs...

    Go to http://www.vamsoft.com and buy ORF (Open Relay Filter). Don't bother with the demo BUY it. This will let you block (among other things) all emails addressed to non-existant AD uesrs. You can also add blacklist blocking and more. Well worth the $99. I run it at work on an...
  39. U

    Easy cable question -

    Typically, premise wiring is solid core wire while patch cords are stranded wire. Cat-5/Cat-5e etc describes the specifications of the wire. As far as I know, both premise wiring and patch cords can be rated "cat-5e" or anything else if they meet the wiring specs.
  40. U

    Router questions + sudjestions!

    I would suggest looking into m0n0wall http://m0n0.ch/wall/index.php The latest version now has a "traffic shaper wizard" which makes dealing with bandwidth managment/restriction easier. You'll have to fix up some old PC with a couple of NIC's to run it on and get a ethernet switch, but...
Back
Top