Hi, TJ.
In the "DOS" window, did you type SET?
Just the one word, "set", then press the Enter key. You should see a
listing a couple of dozen lines long. Look down the list until you find
SystemRoot. Mine says, "SystemRoot=D:\WINNT".
You are not likely to find a folder named "%SystemRoot%\Windows". On my
system, for example, that would be like "D:\Winnt\Windows". %SystemRoot% is
a variable that holds the name of the Windows boot folder; it is always a
top-level folder in the Root. In other words, always something like
C:\Windows, never C:\Anything\Windows. You may be looking for a folder that
does not exist.
One way to find that folder if it exists at all is to use brute force. In a
"DOS" window, type: dir c:\windows /s/a/p
This uses the old faithful DIR command with some extra switches. (Type Dir
/? to see all the switches available with the command.) The C:\ assures
that the directory listing starts in the Root of C:, and "windows" searches
only for that exact spelling of the name (so that you won't see "winnt").
The /s switch looks in all subdirectories under the starting folder; since
we are starting in C:\, this finds EVERYTHING on the drive. The /a switch
shows us ALL files, no matter which attributes (hidden, system, read-only)
may or may not be set. And the /p pauses after each screen of files; there
probably won't be more than one, but this is just in case. This may take a
few minutes, but if it says "File Not Found", then you can be sure that
there is no file or folder named "windows" ANYWHERE on your computer. There
is no "windows" anywhere in my \WinNT folder.
As you probably know by now, Microsoft - and nearly everybody else -
STRONGLY recommends that you DO NOT install multiple versions of Windows
into a single volume, such as Drive C:.
RC
--
R. C. White, CPA
San Marcos, TX
(E-Mail Removed)
Microsoft Windows MVP
"TJ" <(E-Mail Removed)> wrote in message
news:EECBD97B-1BB4-438A-B18E-(E-Mail Removed)...
> I opened the Dos window and found the root is C:\ winnt. I did not see the
%systemroot%windows. Should I find it there if it exists? It seems like I
should have another operating system on this computer because the C drive
has used about 14GB out of 18GB. Thanks.