• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

Where the hell is Scandisk?

  • Thread starter redGTO@noplace.com
  • Start date
R

redGTO@noplace.com

Flightless Bird
I just started using XP. I was using Windows 98. I want to check my
drive to be sure it has no errors before I run Defrag. I have always
been told to run Scandisk before Defrag. Well, I just tried and can
not find scandisk. I tried to run it from START / RUN (and type in
scandisk.exe). I did a search for any file called scandisk and it's
just not there. This is a new installation of XP, so it was not
removed by anyone. I'll just copy the one from my Windows 98
computer, but I'm still wondering where the heck it went, or why it
was not installed during the installation of XP.
 
B

Big_Al

Flightless Bird
redGTO@noplace.com said this on 5/4/2010 2:58 AM:
> I just started using XP. I was using Windows 98. I want to check my
> drive to be sure it has no errors before I run Defrag. I have always
> been told to run Scandisk before Defrag. Well, I just tried and can
> not find scandisk. I tried to run it from START / RUN (and type in
> scandisk.exe). I did a search for any file called scandisk and it's
> just not there. This is a new installation of XP, so it was not
> removed by anyone. I'll just copy the one from my Windows 98
> computer, but I'm still wondering where the heck it went, or why it
> was not installed during the installation of XP.


Scandisk is replaced by chkdsk in XP. A few things got changed around
on the upgrade, welcome to at least the 21st century, you're only 2 OS's
back now.

Normally you type 'chkdsk C: /f' (to fix) Since you can't
lock the running C: because of the OS running, it will ask you if you
want to do it on the next boot. You reply yes and then reboot. It
will do it then.

type 'chkdsk /?' if you want the full info.

Oh, don't run this from the run prompt. type 'cmd' at the run
prompt to get a "dos prompt". Then do the chkdsk command. No
quotes too.

IIRC, you might also get this wish disk manager under control panel ->
administrative tools. Not sure but that would be my first bet.
 
D

David Webb

Flightless Bird
You may also want to review the info found in the Help and Support section of
Win XP. Enter "scandisk" in the search box and you'll get three results. Click
on the "New ways to use tools" and it will present you with a list of MS-DOS
commands that have been changed and a list of those commands that are no longer
available. Scandisk is one of the latter.

--
Google is your friend.....

<redGTO@noplace.com> wrote in message
news:rrgvt51b3m34u3cag50sgq5qe1ejuuk469@4ax.com...
> I just started using XP. I was using Windows 98. I want to check my
> drive to be sure it has no errors before I run Defrag. I have always
> been told to run Scandisk before Defrag. Well, I just tried and can
> not find scandisk. I tried to run it from START / RUN (and type in
> scandisk.exe). I did a search for any file called scandisk and it's
> just not there. This is a new installation of XP, so it was not
> removed by anyone. I'll just copy the one from my Windows 98
> computer, but I'm still wondering where the heck it went, or why it
> was not installed during the installation of XP.
 
B

Bob F

Flightless Bird
redGTO@noplace.com wrote:
> I just started using XP. I was using Windows 98. I want to check my
> drive to be sure it has no errors before I run Defrag. I have always
> been told to run Scandisk before Defrag. Well, I just tried and can
> not find scandisk. I tried to run it from START / RUN (and type in
> scandisk.exe). I did a search for any file called scandisk and it's
> just not there. This is a new installation of XP, so it was not
> removed by anyone. I'll just copy the one from my Windows 98
> computer, but I'm still wondering where the heck it went, or why it
> was not installed during the installation of XP.



I generally right click on the drive. Select properties, then tools, then check
now.
 
B

Bruce Chambers

Flightless Bird
redGTO@noplace.com wrote:
> I just started using XP. I was using Windows 98. I want to check my
> drive to be sure it has no errors before I run Defrag. I have always
> been told to run Scandisk before Defrag. Well, I just tried and can
> not find scandisk. I tried to run it from START / RUN (and type in
> scandisk.exe). I did a search for any file called scandisk and it's
> just not there. This is a new installation of XP, so it was not
> removed by anyone. I'll just copy the one from my Windows 98
> computer, but I'm still wondering where the heck it went, or why it
> was not installed during the installation of XP.



WinXP does not have a program called "Scandisk," as this was a
Win9x/Me program. Instead, because WinXP is descended from the
WinNT/2K OS family, it has a command line utility called "Chkdsk,"
which performs much better.

Start > Run > Cmd > Chkdsk.exe /? for the correct syntax and
available options.

Alternatively, double-click My Computer > right-click the desired
hard drive > Properties > Tools > Error-checking/Check Now. This will
run Chkdsk, normally on the next reboot.


--

Bruce Chambers

Help us help you:
http://www.catb.org/~esr/faqs/smart-questions.html

http://support.microsoft.com/default.aspx/kb/555375

They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety. ~Benjamin Franklin

Many people would rather die than think; in fact, most do. ~Bertrand Russell

The philosopher has never killed any priests, whereas the priest has
killed a great many philosophers.
~ Denis Diderot
 
A

almostbob

Flightless Bird
batch/cmd file cleanup
--
@echo off
defrag c: -f
echo Y|chkdsk c: /f
shutdown -r -t 1

--
_ _
<redGTO@noplace.com> wrote in message
news:rrgvt51b3m34u3cag50sgq5qe1ejuuk469@4ax.com...
>I just started using XP. I was using Windows 98. I want to check my
> drive to be sure it has no errors before I run Defrag. I have always
> been told to run Scandisk before Defrag. Well, I just tried and can
> not find scandisk. I tried to run it from START / RUN (and type in
> scandisk.exe). I did a search for any file called scandisk and it's
> just not there. This is a new installation of XP, so it was not
> removed by anyone. I'll just copy the one from my Windows 98
> computer, but I'm still wondering where the heck it went, or why it
> was not installed during the installation of XP.
 
B

Bob

Flightless Bird
How to use the Scannow SFC tool in Windows XP

http://www.updatexp.com/scannow-sfc.html


<redGTO@noplace.com> wrote in message
news:rrgvt51b3m34u3cag50sgq5qe1ejuuk469@4ax.com...
>I just started using XP. I was using Windows 98. I want to check my
> drive to be sure it has no errors before I run Defrag. I have always
> been told to run Scandisk before Defrag. Well, I just tried and can
> not find scandisk. I tried to run it from START / RUN (and type in
> scandisk.exe). I did a search for any file called scandisk and it's
> just not there. This is a new installation of XP, so it was not
> removed by anyone. I'll just copy the one from my Windows 98
> computer, but I'm still wondering where the heck it went, or why it
> was not installed during the installation of XP.
 
B

Bob I

Flightless Bird
That can't/won't put SCANDISK.EXE on Windows XP because there isn't one.
It is chkdsk on NT versions of Windows.

Bob wrote:

> How to use the Scannow SFC tool in Windows XP
>
> http://www.updatexp.com/scannow-sfc.html
>
>
> <redGTO@noplace.com> wrote in message
> news:rrgvt51b3m34u3cag50sgq5qe1ejuuk469@4ax.com...
>
>> I just started using XP. I was using Windows 98. I want to check my
>> drive to be sure it has no errors before I run Defrag. I have always
>> been told to run Scandisk before Defrag. Well, I just tried and can
>> not find scandisk. I tried to run it from START / RUN (and type in
>> scandisk.exe). I did a search for any file called scandisk and it's
>> just not there. This is a new installation of XP, so it was not
>> removed by anyone. I'll just copy the one from my Windows 98
>> computer, but I'm still wondering where the heck it went, or why it
>> was not installed during the installation of XP.

>
>
 
A

Andy

Flightless Bird
to run scan disk in windows xp open windows explorer and right click on the
c drive icon on the left side of the screen or whatever drive letter you
want to scan .
and select scan disk

--
AL'S COMPUTERS
"Bob I" <birelan@yahoo.com> wrote in message
news:%23kYX4HF8KHA.2248@TK2MSFTNGP05.phx.gbl...
> That can't/won't put SCANDISK.EXE on Windows XP because there isn't one.
> It is chkdsk on NT versions of Windows.
>
> Bob wrote:
>
>> How to use the Scannow SFC tool in Windows XP
>>
>> http://www.updatexp.com/scannow-sfc.html
>>
>>
>> <redGTO@noplace.com> wrote in message
>> news:rrgvt51b3m34u3cag50sgq5qe1ejuuk469@4ax.com...
>>
>>> I just started using XP. I was using Windows 98. I want to check my
>>> drive to be sure it has no errors before I run Defrag. I have always
>>> been told to run Scandisk before Defrag. Well, I just tried and can
>>> not find scandisk. I tried to run it from START / RUN (and type in
>>> scandisk.exe). I did a search for any file called scandisk and it's
>>> just not there. This is a new installation of XP, so it was not
>>> removed by anyone. I'll just copy the one from my Windows 98
>>> computer, but I'm still wondering where the heck it went, or why it
>>> was not installed during the installation of XP.

>>
>>

>
 
B

Bob I

Flightless Bird
Please STOP posting incorrect info, those instructions are not for
Windows XP, and SCANDISK does NOT exist.

Andy wrote:

> to run scan disk in windows xp open windows explorer and right click on the
> c drive icon on the left side of the screen or whatever drive letter you
> want to scan .
> and select scan disk
>
 
Top