Zoe: Nobody's saying that, sir. Wash: Yeah, we're pretty much just giving each other significant glances and laughing incessantly.

'Our Mrs. Reynolds'


Buffistechnology 2: You Made Her So She Growls?  

Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!


dcp - Aug 24, 2005 6:31:37 am PDT #4188 of 10003
The more I learn, the more I realize how little I know.

However, now on boot up, when Windows tries to start loading, some dll tries to pass an invalid parameter to something.

Ummm...this sounds scarily similar to what happened to my aunt last week. We think she got hit by a Sasser worm variant. The boot process would hang with a message window titled "lsass.exe system error" (that's a small case L, not an upper case I) that said a process was trying to pass an invalid parameter.

eta: a better description of the error message box


Sean K - Aug 24, 2005 6:43:19 am PDT #4189 of 10003
You can't leave me to my own devices; my devices are Nap and Eat. -Zenkitty

Oh crap. That's exactly what's happening, dcp. Is there any way to recover this drive now?


dcp - Aug 24, 2005 6:56:33 am PDT #4190 of 10003
The more I learn, the more I realize how little I know.

I only have the story second hand, so I don't have all the details. If you can no longer boot off the CD, you probably can't get to the point where you can use Symantec's removal and fix tools. That's what happened to my aunt. She ended up pulling the hard drive, taking it to her son-in-law and installing it as a 2nd drive on his machine, copying what data files she could to CD, then re-formatting the hard drive, re-installing it in her own machine, and re-installing Windows and all her software and data files from scratch.

Before you go that far, keep researching. Perhaps the hivemind has other ideas to try?

Afterwards, get all your patches up to date, and then have a look at Steve Gibson's web site. I like the "ShieldsUP!" and "Leak Test" utilities.


Sophia Brooks - Aug 24, 2005 12:05:35 pm PDT #4191 of 10003
Cats to become a rabbit should gather immediately now here

Hi--

Here am I with my daily Access question:

Is it possible to create an empty duplicate of a database. Currently, every class has a database, and, while I'd like to eventually make one registration database, right now I would like to not seem like I am changing everything.

In Filemaker, I could save a "clone, no records" copy of the database. It appears there is no good way to do this in Access. I would prefer not to build 35 identical databases.


tommyrot - Aug 24, 2005 12:17:20 pm PDT #4192 of 10003
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

Create a new database. Import all the tables from the existing database, but tell Access to import the table design only. (Also, import any queries, reports, forms, etc.)


Sophia Brooks - Aug 24, 2005 12:19:14 pm PDT #4193 of 10003
Cats to become a rabbit should gather immediately now here

Thanks!


Jon B. - Aug 24, 2005 1:23:39 pm PDT #4194 of 10003
A turkey in every toilet -- only in America!

If there aren't that many tables/records, you could also make a copy of the mdb file in explorer, then open the database, open each table, and delete all the records in each table.


tommyrot - Aug 24, 2005 1:29:31 pm PDT #4195 of 10003
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

Or you could enter and run the following function

Function cleartables()
Dim tdf As TableDef
DoCmd.SetWarnings False
For Each tdf In CurrentDb().TableDefs
if left(tdf.name,4) <> "msys" then
DoCmd.RunSQL "DELETE FROM " & tdf.name
end if
Next
DoCmd.SetWarnings True
End Function

I forgot how to quote while preserving formatting, which is why nothing in the above is indented....

eta: wait, don't do that, as it deletes system tables too.

eta2: There. All better.


§ ita § - Aug 25, 2005 3:26:37 am PDT #4196 of 10003
Well not canonically, no, but this is transformative fiction.

TiVo reports first profit.


Sophia Brooks - Aug 25, 2005 4:15:30 am PDT #4197 of 10003
Cats to become a rabbit should gather immediately now here

Thanks tommy and DX. I'm going to get the hang of this soon, I hope!