Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Location of 'Documents & Settings' folder

Reply
Thread Tools Display Modes

Location of 'Documents & Settings' folder

 
 
Ignoramus
Guest
Posts: n/a

 
      09-04-2007
Help! I cannot seem to find the 'Documents & Settings' folder in my new
VISTA PC. I have tried searching for it, but to no avail.

Where could it be hiding and for that matter why does a search for
normal.dot OR normal*.dot reveal nothing? I do have Office 2007 loaded on
this PC.


 
Reply With Quote
 
 
 
 
Richard G. Harper
Guest
Posts: n/a

 
      09-04-2007
Look for the "Users" folder instead - this is the new location of the
profile, All User and Default User folders.

--
Richard G. Harper [MVP Shell/User]
* NEW! Catch my blog ... http://msmvps.com/blogs/rgharper/
* PLEASE post all messages and replies in the newsgroups
* The Website - http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm


"Ignoramus" <> wrote in message
news:uAEvc$...
> Help! I cannot seem to find the 'Documents & Settings' folder in my new
> VISTA PC. I have tried searching for it, but to no avail.
>
> Where could it be hiding and for that matter why does a search for
> normal.dot OR normal*.dot reveal nothing? I do have Office 2007 loaded on
> this PC.
>
>


 
Reply With Quote
 
seth
Guest
Posts: n/a

 
      09-04-2007
Microsoft changed the location of several of these common folders.
the documents and settings folder technically is still there, but is
configured as an ntfs junction (essentially a file system redirect)
the user profile settings are under C:\users

the template you are looking for should be under
C:\users\%username%\appdata\roaming\microsoft\temp lates\normal.dotm
your search probably revealed nothing if you searched for *.dot since office
2007 file extensions have changed also


"Ignoramus" <> wrote in message
news:uAEvc$...
> Help! I cannot seem to find the 'Documents & Settings' folder in my new
> VISTA PC. I have tried searching for it, but to no avail.
>
> Where could it be hiding and for that matter why does a search for
> normal.dot OR normal*.dot reveal nothing? I do have Office 2007 loaded on
> this PC.
>
>


 
Reply With Quote
 
Chad Harris
Guest
Posts: n/a

 
      09-04-2007
Hi Ignoramus--

In Vista "Documents and Settings" isn't really a folder. It's a "junction
point" - like a soft link, in Unix.

The *real* directory where user data is kept in Vista, is called "C:\Users".
If you use "Users" in place of "Documents and Settings" you should be sweet.
Eg, C:\Users\Ignoramus' Profile on Vista\Documents, etc.

The "Documents and Settings" junction point exists to preserve compatibility
for applications which have this path name hard-coded. Well-behaved
applications should not have a hard-coded "Documents and Settings" string;
they should call SHGetSpecialFolder() instead, to find the User directory on
a system. But just a sad fact of life, many apps out there do look for a
"Documents and Settings" directory ....

"Users" is preferable to "Documents and Settings" because many apps have
problems with path names containing spaces. It also soaks up more chars
from the limited 260 char MAX_PATH length for directory names. Finally,
"Users" is more intuitive for folks coming from Unix and other, more normal
operating system environments :-)

The "Documents and Settings" junction point is usually hidden and not
visible in Explorer. If you are seeing it in an obtrusive way, you may have
turned ON the folder option to see hidden files.

Refs on Junction Points in Vista:

http://www.svrops.com/svrops/articles/jpoints.htm

http://windowsconnected.com/blogs/jo...on-Points.aspx

http://www.hanselman.com/blog/Window...therDrive.aspx

http://www.hanselman.com/blog/MoreOn...rsePoints.aspx

Good luck,

CH


"Ignoramus" <> wrote in message
news:uAEvc$...
> Help! I cannot seem to find the 'Documents & Settings' folder in my new
> VISTA PC. I have tried searching for it, but to no avail.
>
> Where could it be hiding and for that matter why does a search for
> normal.dot OR normal*.dot reveal nothing? I do have Office 2007 loaded on
> this PC.
>
>


 
Reply With Quote
 
Ignoramus
Guest
Posts: n/a

 
      09-04-2007
I did look in the Users Folder - both in Public as well as >myname< - but I
cannot find the usual 'Application Data' or Templates directory after that.

Any further clues?



"Richard G. Harper" <> wrote in message
news:...
> Look for the "Users" folder instead - this is the new location of the
> profile, All User and Default User folders.


 
Reply With Quote
 
DP
Guest
Posts: n/a

 
      09-04-2007

There's no "Documents" menu choice after you click start? In the right-hand
pane near the top?



"Ignoramus" <> wrote in message
news:uAEvc$...
> Help! I cannot seem to find the 'Documents & Settings' folder in my new
> VISTA PC. I have tried searching for it, but to no avail.
>
> Where could it be hiding and for that matter why does a search for
> normal.dot OR normal*.dot reveal nothing? I do have Office 2007 loaded on
> this PC.
>
>


 
Reply With Quote
 
Dave
Guest
Posts: n/a

 
      09-04-2007
C:\Users\youraccount\AppData
it's hidden by default.


"Ignoramus" <> wrote in message
news:...
>I did look in the Users Folder - both in Public as well as >myname< - but I
>cannot find the usual 'Application Data' or Templates directory after that.
>
> Any further clues?
>
>
>
> "Richard G. Harper" <> wrote in message
> news:...
>> Look for the "Users" folder instead - this is the new location of the
>> profile, All User and Default User folders.

>

 
Reply With Quote
 
Ignoramus
Guest
Posts: n/a

 
      09-04-2007
Chad & Seth,

Thanks for the detailed responses and for taking the time to explain
'junction points' - that was a new one for me!

My problem is that I cannot find a sub-directory called 'Appdata' in my
Users folder (even though my Win Explorer is set to show hidden files). I
need this to migrate my older Winword Autotext entries (from a Office XP
running on Win 2000 Pro) to my new Vista PC. This should be possible as per
MS (see
http://technet2.microsoft.com/Office....mspx?mfr=true)
but I cannot start doing this if I cannot find AppData!

Thanks




"Chad Harris" <vistaneedsmuchowork.net> wrote in message
news:...
> Hi Ignoramus--
>
> In Vista "Documents and Settings" isn't really a folder. It's a "junction
> point" - like a soft link, in Unix.
>
> The *real* directory where user data is kept in Vista, is called
> "C:\Users".
> If you use "Users" in place of "Documents and Settings" you should be
> sweet.
> Eg, C:\Users\Ignoramus' Profile on Vista\Documents, etc.
>
> The "Documents and Settings" junction point exists to preserve
> compatibility
> for applications which have this path name hard-coded. Well-behaved
> applications should not have a hard-coded "Documents and Settings" string;
> they should call SHGetSpecialFolder() instead, to find the User directory
> on
> a system. But just a sad fact of life, many apps out there do look for a
> "Documents and Settings" directory ....
>
> "Users" is preferable to "Documents and Settings" because many apps have
> problems with path names containing spaces. It also soaks up more chars
> from the limited 260 char MAX_PATH length for directory names. Finally,
> "Users" is more intuitive for folks coming from Unix and other, more
> normal
> operating system environments :-)
>
> The "Documents and Settings" junction point is usually hidden and not
> visible in Explorer. If you are seeing it in an obtrusive way, you may
> have
> turned ON the folder option to see hidden files.
>
> Refs on Junction Points in Vista:
>
> http://www.svrops.com/svrops/articles/jpoints.htm
>
> http://windowsconnected.com/blogs/jo...on-Points.aspx
>
> http://www.hanselman.com/blog/Window...therDrive.aspx
>
> http://www.hanselman.com/blog/MoreOn...rsePoints.aspx
>
> Good luck,
>
> CH
>
>
> "Ignoramus" <> wrote in message
> news:uAEvc$...
>> Help! I cannot seem to find the 'Documents & Settings' folder in my new
>> VISTA PC. I have tried searching for it, but to no avail.
>>
>> Where could it be hiding and for that matter why does a search for
>> normal.dot OR normal*.dot reveal nothing? I do have Office 2007 loaded on
>> this PC.
>>
>>

>


 
Reply With Quote
 
John Barnes
Guest
Posts: n/a

 
      09-04-2007
It is now just called Documents and is in your User folder
Where are you looking for your dot

"Ignoramus" <> wrote in message
news:uAEvc$...
> Help! I cannot seem to find the 'Documents & Settings' folder in my new
> VISTA PC. I have tried searching for it, but to no avail.
>
> Where could it be hiding and for that matter why does a search for
> normal.dot OR normal*.dot reveal nothing? I do have Office 2007 loaded on
> this PC.
>
>


 
Reply With Quote
 
Ignoramus
Guest
Posts: n/a

 
      09-04-2007
Yes, there is - but it only contains a folder called 'My Google Gadgets'
which is some crapola that the PC manufacturer loaded to earn a few
Googlebucks. The documents folder you refer to seems to be only there for
documents that I create and not for system docs that were contained in the
'old' Documents and Settings folder in previous incarnations of Windows


"DP" <> wrote in message
news:...
>
> There's no "Documents" menu choice after you click start? In the
> right-hand pane near the top?
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Reset default location for Documents folder - Vista Mike Windows Vista File Management 6 01-25-2010 09:54 PM
Using mapped drive as 'Documents' Folder location bgoodcci Windows Vista File Management 0 11-26-2007 05:31 PM
Permissions Documents and Settings Folder John Windows Vista General Discussion 4 05-12-2007 01:15 AM
Location of Documents and Settings Roger Stenson Windows Vista Administration 0 02-07-2007 06:32 AM
Documents and Settings folder microfox Windows Vista General Discussion 6 09-10-2006 11:13 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59