Jump to content
Compatible Support Forums

kasandoro

Members
  • Content count

    20
  • Joined

  • Last visited

    Never

Community Reputation

0 Neutral

About kasandoro

  • Rank
    stranger
  1. kasandoro

    Need some win2k3 server help

    Sounds like you're trying to use your laptop as a wireless access point for the rest of your wireless clients, correct? If that's the case, then consider setting the wireless card up as an Ad-Hoc network adapter. You can find it in the advanced options for the card (usually under device manager). From there, it's pretty self-explanatory.
  2. kasandoro

    Internet Gateway problem

    It's there becuase you have UPNP enabled (universal plug-and-play). It's normal behavior if your gateway supports UPNP, and allows you to connect and disconnect. Mine does the same thing...no worries.
  3. I don't know if FAT32 will even support a hard drive that big...
  4. The last I heard, they disabled access to hotmail from MS Outlook (by way of turning off WebDAV)...
  5. kasandoro

    !!!!....multiple field searching in MS ACCESS....!!!!

    He can have mine if he wants it...minus the media inventory, of course (what would he do with the 3187 CD's and DVD's already in the database?) --Kas
  6. kasandoro

    !!!!....multiple field searching in MS ACCESS....!!!!

    Here's the SQL Query I use for the software media library I designed (and still refer to from time to time) ------------------- SELECT DISTINCT Item.CD_ID, Item.App_Name, Item.Version, Item.CD_Key, Item.Vendor_Name, Item.Media_Type, Item.Disk_Number, Item.Disk_Total, Item.App_notes, checkouts.Checked_Out INTO Search_results FROM Item LEFT JOIN checkouts ON Item.CD_ID=checkouts.CD_ID WHERE (((Item.CD_ID) Like Forms!search!cd_id & "*" ) And ((Item.App_Name) Like Forms!search!appname & "*" Or (Item.App_Name)="ISNULL" ) And ((Item.Version) Like Forms!Search!appver & "*" Or (Item.Version)="ISNULL" ) And ((Item.Vendor_Name) Like Forms!Search!Vendor & "*" Or (Item.Vendor_Name)="ISNULL" ) And ((checkouts.Checked_Out)=0 Or (checkouts.Checked_Out) Is Null));" ------------------- Keep in mind that I have a separate table that tracks what media is currently checked-out, and excludes those records from this query. Just remove the join if you don't need that functionality. --Kas
  7. kasandoro

    !!!!....multiple field searching in MS ACCESS....!!!!

    Here's how I worked it out. I created a form with unbound fields (one field per field you want to search on), and structured the query to get the criteria from "Like [Forms]![search]![Criteria1]", etc. then I created another form for the results. The query is a make-table query. You can use a macro to turn warnings off to get rid of the "X records are about to be inserted into table BLAH" dialogs. Set the record source for the results form to the new temporary table you specified for the make-table query. Each time you run the search, the table is deleted and re-created, so you get no duplicate results. To leave criteria out (important!!) leave an asterisk in the field you are NOT searching on, and you can use asterisks as wildcard characters. If you need more help, or an example, I would be happy to help! --Kas
  8. kasandoro

    mirroring windows 2000 server

    I would tell you to use the built-in mirror RAID function, but you can't use RAID on the system volume. You might try adding a third drive and use it for the system volume, then set the other two up in a RAID configuration. Keep in mind that this operation will delete the contents of both drives, iirc. Alec, where are you?
  9. Windows WILL use a swapfile even if you turn it off. Windows cannot function without a swapfile... I read that somewhere, but I can't find the link anymore.
  10. kasandoro

    Terminal Server + Application mode

    When you installed Terminal Services, it asks if you want to run it in Application Server mode, or Remote Administration mode. I'll bet you have it set to Remote Administration mode. What you'll need to do is go to Add/Remove Programs, then Add/Remove Windows Components. Go to terminal services, uncheck it, then check it again, then click Next, and make sure it's set to Application Server mode. Let us know how it goes!
  11. kasandoro

    drive image 2002 cannot find NTLDR on reboot

    I get the same error on a freshly-formatted NTFS hard drive...before I install an OS. Maybe that's your problem. Maybe DriveImage 2002 requires a FAT32 file system to function.
  12. kasandoro

    Fire Daemon! Help!

    I don't know about FireDaemon's uninstaller (never had to uninstall it), but Dameware has to be uninstalled from within the program remotely. For example: I have two computers. Let's call them A and B. The client is push installed on B from A. You would have to open the Dameware Mini remote control from A and click on File, then Remove Service. Kind of difficult, but it makes sense from a remote perspective.
  13. kasandoro

    Fire Daemon! Help!

    FireDaemon and DameWare are not trojans. Dameware is a Windows NT administration program (http://www.dameware.com). FireDaemon is a program that lets you run any application as a service (http://www.firedaemon.com). If you still want them removed, just follow Alec's directions (he's usually right!), but they are pretty harmless. I use them both here at work on a daily basis.
  14. kasandoro

    Cannot import foreign disk

    Since it was in RAID 1, you will not be able to access the data in windows because it is missing the RAID configuration bit (so that it doesn't know how to access the data). You *MIGHT* be able to use Ghost or Knoppix to move the data off the drive, but I haven't ever tried that in the past. Good luck!
  15. kasandoro

    Cannot import foreign disk

    Is this disk a part of a software RAID? If so, then you'll have to import all the disks in the RAID then break the array. I think, anyway. Anyone feel free to correct me if I'm wrong!
×