[NF] Interesting Article about Rackspace

2010-09-11 Thread Chester Friesen
http://goo.gl/KvtH

~ Regards,
Chester Friesen
Friesen Computer Company
Willows, CA

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/aanlktinbog72bxo_7aafvnesoma8oyc3xxry5jsmy...@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[NF] Interesting Article about Rackspace

2010-09-11 Thread Chester Friesen
http://goo.gl/KvtH

~ Regards,
Chester Friesen
Friesen Computer Company


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/aanlktikjpet26voxmjsy2bstux2qsbkgms9kf-aej...@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Software that can capture an entire website?

2009-11-26 Thread Chester Friesen
On Tue, Nov 24, 2009 at 7:09 PM, Pete Theisen wrote:

> Vincent Teachout wrote:
> > Can someone point me to (hopefully free) software that can capture an
> > entire website?  My dad passed away this last weekend, and I want to
> > copy off his two sites before his host pulls the plug at some point.
> > Thanks.
>
> Hi Vince,
>
> So sorry to hear of your dad's passing.
>
> Back in my bad old winders days IE used to have a menu item to make a
> site available off line. That amounts to copying it, I think.
>
> Mozilla Firefox has a "Save Page As" in the file menu. Never used it,
> though.
> --
> Regards,
>
> Pete
> http://pete-theisen.com/
> http://elect-pete-theisen.com/
>
> I have used HTTrack,  http://www.httrack.com/ , it's been a while back,
but it seemed to work pretty good. The way I remember, I had to experiment
with some of the settings to get what I wanted, e.g., how many links deep,
or something like that. IIRC, I also tried the BackStreet Browser,
http://www.spadixbd.com/backstreet/ , I think it worked OK, too, I just
don't remember the details.

Regards,
Chester Friesen


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/5b3300d50911242006g4a0d5235h3a8b1a20fcf81...@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Microsoft Does Open-Source and FoxPro a Real Favor

2007-03-19 Thread Chester Friesen
http://www.eweek.com/article2/0,1895,2105307,00.asp

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Need to read an Access MDB

2007-03-13 Thread Chester Friesen
Kent Belan wrote:
> Hello,
> I need to read an Access MDB data file from VFP9,
>   
Here's some code that works for me:

SET CONSOLE OFF
SQLDISCONNECT(0)
cStr=[Provider="Microsoft.Jet.OLEDB.4.0";]
cStr=cStr+"Driver={Microsoft Access Driver (*.mdb)};;
DBQ=&gcTable;"
?SQLSTRINGCONNECT(cStr)
?SQLTABLES(1,"'TABLE'",'curTabs')
?SQLEXEC(1,[ ;
SELECT *;
 FROM  ;
],'')

SET CONSOLE ON
SET SAFETY OFF

CREATE SQL VIEW  AS ;
SELECT  ;
FROM 

SET SAFETY ON

Hopefully making it "generic" didn't take the important parts out.
Any criticism welcome...

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Select isnull question

2007-03-11 Thread Chester Friesen
Ted Roche wrote:
> Try:
>   
>> CREATE SQL VIEW RB ;
>> AS SELECT NVL(lot_salenum,"") as salenum ;
>> from currbauction currbauction
>> 
Thanks, Ted, that worked!
My apologies for a delayed response, I was so relieved to find a 
solution that I forgot to reply.

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Select isnull question

2007-03-07 Thread Chester Friesen
John Gunvaldson wrote:
> That is syntax (mostly) for T-SQL ISNULL() - that is not syntax for VFP
> ISNULL()
>   
Thanks, I'll go at it another way. I thought it would be easy. I saw 
that code on an Andy Kramek page.
http://weblogs.foxite.com/andykramek/archive/2005/12/04/1016.aspx

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Select isnull question

2007-03-07 Thread Chester Friesen
John Weller wrote:
> Should the currbauction be repeated?
>   
Gives the same error.

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Select isnull question

2007-03-07 Thread Chester Friesen
There must be a simple answer that I'm not getting. When I run this I 
get a "too many arguments" error.

CREATE SQL VIEW RB ;
AS SELECT ISNULL(lot_salenum,"") as salenum ;
from currbauction currbauction

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Adobe Acrobat PDF Edit / Report Engine behavior

2007-03-05 Thread Chester Friesen
I was wondering if anyone had an explanation for this problem. I made up 
this 325 page report for a customer from survey data that they gave me. 
I then printed all the reports through Acrobat Distiller. After that I 
needed to merge pages to make one document, then change the page numbers 
at the bottom of the page and on an index/table of contents page using 
Adobe Acrobat. Here's what I ran into - after printing to the pdf, I 
couldn't edit anything in Adobe Acrobat. Very frustrating, especially 
late at night and tired! I found out that when I was printing with 
Report Engine behavior set to 90, I could not edit anything, changed it 
to 80, then I could. I did the same project last year and didn't have 
the problem, I must have changed the default behavior sometime during 
the year.
Anyways, so much the wiser.

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Sort on group totals

2007-01-31 Thread Chester Friesen
Vince Teachout wrote:
> Actually, if you have VFP9, you can do it with one query:
>
> SELECT A.Rider, A.dDate, A.nScore, ;
>   (Select SUM(nscore) FROM foobar B WHERE b.rider = a.rider) ;
>  FROM foobar A;
>  ORDER BY 4 desc,1
>   
I have VFP9, but I started this project before I got it.

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Sort on group totals

2007-01-31 Thread Chester Friesen
Vince Teachout wrote:
> Well, Here's one way:
>
> SELECT rider, SUM(nscore) as totscore FROM foobar GROUP BY rider INTO 
> CURSOR totcurs nofilter
>
> SELECT Foobar.Rider, Foobar.Ddate, Foobar.Nscore, totcurs.totscore ;
>  FROM foobar INNER JOIN totcurs ON foobar.rider = totcurs.rider ;
>  ORDER BY 4 desc,1
>   
Hey Vince, you got me on the right track, thanks a million! Here's how I 
did it, I haven't got it into a report yet because I need some more 
inner joins to get the rider names into it, but I think it will work.

SELECT riderid, ;
SUM(nscore) AS totscore ;
FROM Foobar;
GROUP BY riderid ;
ORDER BY totscore DESC ;
INTO CURSOR totcurs nofilter

SELECT * ;
FROM Foobar;
INNER JOIN totcurs ;
ON Foobar.riderid = totcurs.riderid ;
ORDER BY totscore DESC,1

BTW, what does the 4 do after the Order By, also the 1 after the Desc?

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Sort on group totals

2007-01-31 Thread Chester Friesen
Vince Teachout wrote:
> I must not be understanding the problem.  This works fine for me in vfp7:
> SELECT stylename,  sum(units) as sumall FROM gmoodet GROUP BY stylename 
> ORDER BY sumall
>   
I'm learning here. ;-)  That's close, that gives me a one record for 
each rider with a "sumall" field showing the total. I need all the 
records in the table to show in the report sorted by the order that the 
above came up with. i.e., sorted by the Names, but in the order of the 
Totals. I hope I'm making sense! Actually the example below should be 
descending instead of ascending, but that's an easy part.

Main Heading
  Name1
 01/01/07   50
 01/01/07   25
Total->  75
  Name2
 01/01/07   40
 01/01/07   44
Total->  84
  Name3
 01/01/07   45
 01/01/07   44
    Total->  89

-- 
Regards,
Chester Friesen
Friesen Computer Company
Willows, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Sort on group totals

2007-01-31 Thread Chester Friesen
MB Software Solutions wrote:
> You should be able to do it with VFP5 and up!  Just create a column 
> called iSort and then write logic to populate accordingly, then order by 
> that column.  (Or perhaps I'm missing your point?)
>   
I'll think that through a little, I was totalling each riders data to a 
separate table with a total field, using that table to scan through the 
riders to make another sorted table or cursor. Couldn't get anything 
reliable, though.

Regards,
Chester Friesen
Friesen Computer Company


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Sort on group totals

2007-01-31 Thread Chester Friesen
I have an app in VFP7 that I need to sort on group totals. Is that a job 
for VFP9? Forget it for VFP7?
Now, the report looks nice, but needs the totals sorted on each group. I 
have tried a 2 pass routine, but it's not really working right. I don't 
know if this is enough info to give me some ideas or not.

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Protect VFP source code

2007-01-29 Thread Chester Friesen
MB Software Solutions wrote:
> What industry or what kind of app, Chester, if I may ask?
Well, I guess "industry" may not be the "correct" word. It is for 
gymkhana events. They have a complicated method of calculating points 
for the various events. They enter the rider/horse combinations, event 
data, and at the event the times for each run. The app calculates the 
points and computes the place ratings. Previously they used a 
spreadsheet with macros, looked like a tremendous amount of work and 
time consuming. I modified it some for the state championship shows, 
where they used it also.

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Protect VFP source code

2007-01-28 Thread Chester Friesen
BD Operating Systems, Inc. wrote:
> Gee at last a chance to contribute.  If I remember correctly this was
> written up on FoxPro Advisor and was recommended to me by Malcolm or Craig
> Boyd.
>
> www.siliconrealms.com
>
> Go with the professional version.
>   
Thanks, Carl,
How does it work? Do you just run the program after the VFP exe is 
created? $299 seems steep for this project, but maybe it would be a good 
investment for projects down the road. I googled "site:siliconrealms.com 
"visual foxpro"" and found some comments on their forum. Sounds like 
some had problems but were resolved.

Regards,
Chester Friesem


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Protect VFP source code

2007-01-28 Thread Chester Friesen
Dave Crozier wrote:
> You could always use an obfuscator to change all the variable names to an
> complicated unreadable format as well as removing all comments for the
> production application.
Thanks, all, for your comments. If someone could recommend an obfuscator 
I would appreciate that.
I wrote an app that has a small vertical market potential, the person I 
wrote it for would like to help me market it. She is concerned that 
someone in her industry that is well versed in Excel may be able to 
somehow get the routines that I used to calculate and steal them. I 
doubt that she could do that, but I guess it depends on her resolve to 
get it (if she even decides to try.)  I do need to code in something to 
make it harder to pass around and use, but I don't think that would be 
too hard. Thanks to those who gave some ideas.

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Protect VFP source code

2007-01-27 Thread Chester Friesen
Is there a way to protect VFP source code in exe from decompilation?

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Experience with free version of VMware?

2006-12-29 Thread Chester Friesen
Malcolm Greene wrote:
> Anyone have any experience with the free version of VMware Server?
>
> Background:
> http://www.vmware.com/products/server_comp.html
> http://www.vmware.com/products/server/overview.html
> http://www.vmware.com/products/server/faqs.html
>
> I'm curious how you're using this, any gotchas or warnings, and why you
> decided to or not to purchase the Workstation Edition of VMware.
>   
I have been using vmware server on an experimental basis, so far. As far 
as I can tell, it works excellent. There may be some functionality in 
the Workstation edition needed for enterprise applications and for 
production environments, but I think it works great. I have installed 
Vista RC1, Windows XP Home, Radrails CD, MS DOS 6.22, MS DOS 7.1, 
Windows 98. I have used it to get files from Win98 that I needed for 
software repair on another machine, also for customer support. I have 
installed it (host) on WinXP and Ubuntu 6.06, copied vm's onto a CD made 
in Linux and copied into vmware server on XP and run them.

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Acronis True Image Home Ed.

2006-11-14 Thread Chester Friesen
Hal Kaplan wrote:
> Well that's not going to help .  Obviously there has to be a reason but is 
> it worth finding out?  With this event pattern it is very unlikely to be 
> solved.  What can you do for Plan B?  
>   
Plan B = SyncBackSE?
Tried it out, seems to work.
Thanks for the comments, I was hoping when I bought Acronis True Image 
that there would be some tech support but I haven't been able to find 
anything but to pay more money to get it.

-Regards
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re:[NF] Acronis True Image Home Ed.

2006-11-14 Thread Chester Friesen
Hal Kaplan wrote:
> This kind of problem is usually caused by a security rights issue or an 
> exclusive use issue.  Is the file always the same one?  What, if any, 
> significance does it have?  Most backup programs allow for selectivity.  Can 
> you isolate the offending file and give it special treatment?
>
> There are a dozen things involved here.  We need more information!
>
> HALinNY
>   
Switched to [NF] Sorry!
The file is always a different file. Different file extension also. 
i.e., .MB, .ZIP, .CAB. Without fail, all I have to do is re-run the job 
and it goes through without any errors. It's getting old that I have to 
remote in and re-run the backup.

-Regards
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Acronis True Image Home Ed.

2006-11-14 Thread Chester Friesen
Is anyone using Acronis True Image 9.0 Home for backups? I am using it 
at a customer, every night it fails with a message="Failed to backup 
file or folder ''. "Error reading the file. (0x40001)". If I 
press Ignore, it continues to error with files till I give up and 
Cancel. After I cancel, I just re-run the job and it works perfect every 
time. Googling turns up precious few hits, Acronis has next to no help, 
either.

-Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Erase DVD-RW before backup

2006-08-29 Thread Chester Friesen
Thanks for the responses. So far, I have tried all except Graham's 
suggestion, but haven't been successful. Still looking.

The dvdburn program always had an error regarding the image name.

C:\>dvdburn f: cdfriesen_1 /erase
Erasing media before burning
Error 2 opening image file cdfriesen_1

I used the volume name for the image name, don't know what else to use.

--

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[NF] Erase DVD-RW before backup

2006-08-27 Thread Chester Friesen
Anyone know of a utility that can be used, preferably in a batch file, 
that will erase a DVD-RW before a backup? I am trying out Acronis True 
Image, but they have no way to erase a disc unattended before backup. 
Maybe there's another HDD Image backup program that will do that. I 
didn't look at Symantec Ghost, I have tended to shy away from the later 
versions of it.


--

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Add/Remove Programs

2006-07-22 Thread Chester Friesen

Charles Hart Enzer, M.D. wrote:


I want a clean removal with nothing left behind in the registry, and 
such like.


I would think that a standard removal from add/remove programs should 
take care of that. Most software like that has an uninstall file that 
has the install "script" that has all the files, reg entries, etc., used 
when the program was installed. Sometimes if I'm not sure that a program 
uninstalled correctly, I will try and get a clean re-install and then 
uninstall again.
If you are comfortable in the registry, search (Ctrl-F) and find all 
instances of windows defender and delete the keys. Be sure you make a 
backup of the registry, first. My guess with a program like that would 
be that add/remove probably did the job without needing to check the 
registry. Check the services running after uninstalling and restarting 
the computer.

Hope this helps.

--

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Add/Remove Programs

2006-07-22 Thread Chester Friesen

Charles Hart Enzer, M.D. wrote:

What are the advantages of Removing Programs:

XP Professional Normal Mode
XP Professional Safe Mode


Some uninstallers rely on the Windows Installer to run which won't run 
in Safe Mode. Norton AV for one. I use Safe Mode to uninstall programs I 
suspect to be malware, but even then some malware has processes running 
in Safe Mode. If you run in Safe Mode, IMHO, there is a better chance of 
a good removal because of all the processes running in normal mode.
I don't use Safe Mode for Add/Remove all that often, just when a "gut 
feeling" tells me that would be more effective.


--

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Microsoft acquires SysInternals and WinInternals

2006-07-19 Thread Chester Friesen

Michael Hawksworth wrote:

There site was being hammered this AM.

The files are still there if you know what you want e.g. 
www.sysinternals/files/PortMon9x.zip


I think this may be a case we should pool our copies, since it is 
freeware I am sure the contract will say we can redistribute in original 
format.


I got some of the files before the site glued up.



Here's a site with a lot of Sysinternals links to files.

http://tinyurl.com/m6wy8

--

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Web Server Advice

2006-07-05 Thread Chester Friesen

Derek Kalweit wrote:
 > What's your connection to the internet for this server? If it's not

extremely fast, redundant, and you have redundant power, environmental
monitoring/control, etc., I'd suggest getting it professionally
hosted. With the low cost of hosting these days, it makes no sense to
try to host commercial websites on cable, DSL, or even a T1, IMO...


I have a 1.5-3.0 Mbps DSL connection, running around 2.8-2.9 Mbps. The 
site is low traffic, maybe 4-10 email accounts.

I appreciate all the input, thanks.

--

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[NF] Web Server Advice

2006-07-02 Thread Chester Friesen
I registered a new domain name for a client. This is a bare domain name, 
no web hosting included. I plan on hosting it myself. I have a server I 
can use, presently Windows 2003 Server is installed on it, P4-2.4GHz. 
Here are some scenarios I am considering.

1. Install Ubuntu 6.06 Server, if I need W2003Svr, run in a VM.
2. Use W2003Svr, install Ubuntu 6.06 in a VM, host in the VM.
3. Use W2003Svr for all of it.
4. Use a different distro.
5. Host with Lunarpages or similar.
6. Tell him I chickened out, run fast away from it!
This is a first for me on this type of project. I do a lot of business 
for them, consulting, repair, etc. They have a current web site now 
which I will move over to my server, probably use the new domain name 
mainly for email. Possibly host other sites later.
What are the potential caveats for me? I like the idea of the Linux 
route, but don't have a lot of experience with it, even though I've 
dabbled with it since RH6.

Any advice?
(Also posted on ProLinux)
--

Regards,
Chester Friesen


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.