Weatherbug

J

Jeff T

I cannot delete or reinstall Weatherbug. I get a message that says the
network resourse is unavailable. How do I delete it.
I've also got a bunch of music files that I can't delete. It says to make
sure the disc is not full or write protected or that the file is not in use
and it is not in use.
Jeff
 
D

Don Phillipson

I cannot delete or reinstall Weatherbug. I get a message that says the
network resourse is unavailable. How do I delete it.
I've also got a bunch of music files that I can't delete. It says to make
sure the disc is not full or write protected or that the file is not in
use and it is not in use.

DOS commands override Windows protections, i.e.
you can DELete almost any file from a DOS prompt.
 
P

Paul

Don said:
DOS commands override Windows protections, i.e.
you can DELete almost any file from a DOS prompt.

And Windows just can't seem to resist the deleting you
do from a Linux LiveCD :)

Or, if you want to stay in Windows, there is always
Unlocker, for those files that are "busy".

http://en.wikipedia.org/wiki/Unlocker

Now, if it's a software install, you don't want to "hit
that with a hammer" - more subtlety is required.

Deleting stuff is fine for user data files, the stuff
in the %temp% directory and so on. For uninstallation,
either use the control panel for that, or see if
the program folder has an uninstaller, and so on.

*******

http://en.wikipedia.org/wiki/Weatherbug

"Early versions were difficult to uninstall"

"current versions include a program to uninstall WeatherBug.
Several computer security services still classify WeatherBug
as malware and firewalls to block and programs to remove are
kept current and available."

Hmmm. That's not good... Good luck with that.

Paul
 
P

Paul

Jeff said:
How do I get into a DOS prompt?

Start : Programs : Accessories : Command Prompt

or you can use

Start : Run and enter cmd.exe as the command.

A black window should open. With a DOS prompt.

Some of the commands that work in the window,
are documented here. Not everything here is
applicable, but if you need help, this is as good a
place to look, as any. This documentation is
for "real MSDOS", and not the fake DOS in the
command prompt window.

http://www.vfrazee.com/ms-dos/6.22/help/

Example session. My black window is open, and I type

c: # change to C drive or whatever
drive you want. You'll be plopped
into a bogus directory. The next
command will fix that.

cd \ # change directory to root of drive.
Now sitting in C:

cd Downloads # changing directory pointer to C:\Downloads
Keep adding levels to the current working
directory, until you arrive at your
destination.

dir /P # List the files contained in Downloads
# The /P option limits output to a page at
# a time. That is handy, if the scroll buffer
# isn't large enough.

dir /P *.jpg # List all my JPEG files in Downloads
Using wildcard matching, helps restrict the
listing to the relevant files.

del dirty.jpg # Delete a specific JPEG

Now, another thing to be aware of, is your "PATH"
variable. In any OS of note, there is an execution path,
a series of directories, examined in a specific order,
with programs in it. For a command to be available, it has
to be in the PATH. On some OSes, they allow the current
working directory (the one you CD'ed into), to also contain
potential executable programs.

For example, I copy a program called "md5sum.exe" into
my C:\Downloads. I put that program, and my JPEG file
in the same directory. I CD into the Downloads directory
and then I can run this. This works, because for whatever
reason, "." or the current working directory, is a part
of the execution PATH variable.

md5sum dirty.jpg

or

md5sum.exe dirty.jpg

If you need to edit the PATH, to add directories to it,
you use

System Control Panel : Advanced : Environment Variables button

There is a "User Variable" section at the top, with a PATH.

And a "System Variable" section with a PATH, which presumably
applies to all users. This is an example, where the first item
was added by the Xilinx program installer. The others are
more or less standard as far as I know. I added some
extra spaces, to make the syntax easier to read.
The ones relative to SystemRoot, would be where the
"standard" commands hide, if any.

%XILINX%\bin\nt; %SystemRoot%\system32; %SystemRoot%; %SystemRoot%\System32\Wbem

Now, you can "delete, like it's 1999" :)

Typing "exit" into the Command Prompt window,
will make it disappear.

HTH,
Paul
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top