![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
br> br> |
| |||||||
![]() |
| | Thread Tools | Display Modes |
| | #2 (permalink) |
| Member | Re: Browsing history It strikes me that you may have a permissions problem. This would not normally happen on a clean install of Vista or a new PC, but if you transferred your favorites and data files from another computer, the permissions can sometimes be askew. Check that you have full control of %USERPROFILE%\AppData\Local\Microsoft\Windows\Temporary Internet Files |
| | #6 (permalink) |
| Antidisestablishmentarian | Re: Browsing history The folder is a hidden folder - you'll need to enable hidden folders from your Windows Explorer settings (Tools --> Folder Options --> View tab --> Hidden Files and Folders - move the radio button next to Show hidden files and folders - Click OK button. Or, you could just copy what solo listed as the whole path (starting with % and ending with Files) and then go to Start --> Run, and the paste it in there - if you don't see run in your start menu then hold the Windows key on your keyboard and hit the letter 'R' |
| | #10 (permalink) |
| Member | Re: Browsing history Hi gmanerdy, I've been gone for a while, but I'm back now. I don't know whether you have solved your problem or given up by now. Do you have subfolders in your favorites? Did you import your favorites or history, or copy these from a different machine? Did you use a files from a backup CD? The reason that I ask these questions is to figure out whether or not you have a simple permissions problem. Under normal circumstances, the troubles you are having do not occur. If you copied your files from elsewhere, then it is a common mistake to lose ownership. To take ownership of special folders associated to IE copy the script below into Notepad. Save the file with a .vbs extension. Run. 'Begin Copy below this line ---- 'ownIEfolders.vbs 'solon fox - created 2008/6/21 'solonfox@gREMOVETHISmail.com 'quick and dirty take ownership of IE special folders '========================================================= Dim strPath, strMsg 'Constants Const SCRIPTNAME = "ownIEfolders.vbs" Const FAVORITES = &H6& Const MY_TIF = &H20& 'Temporary Internet Files Const MY_COOKIES = &H21& 'Cookies Const MY_HISTORY = &H22& 'History strComputer = "." strMsg = "Ownership taken of: " & VbCrLf Set objShell = CreateObject("Shell.Application") Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") 'Favorites Set objFolder = objShell.Namespace(FAVORITES) Set objFolderItem = objFolder.Self strFolder = Replace(objFolderItem.Path, "\", "\\") strMsg = strMsg & "Favs: " & objFolderItem.Path & VbCrLf Set colFolders = objWMIService.ExecQuery _ ("Select * From Win32_Directory Where Name = '" & strFolder & "'") For Each objFolder in colFolders objFolder.TakeOwnershipEx Next 'Temporary Internet Files Set objFolder = objShell.Namespace(MY_TIF) Set objFolderItem = objFolder.Self strFolder = Replace(objFolderItem.Path, "\", "\\") strMsg = strMsg & "TIF: " & objFolderItem.Path & VbCrLf Set colFolders = objWMIService.ExecQuery _ ("Select * From Win32_Directory Where Name = '" & strFolder & "'") For Each objFolder in colFolders objFolder.TakeOwnershipEx Next 'Cookies Set objFolder = objShell.Namespace(MY_COOKIES) Set objFolderItem = objFolder.Self strFolder = Replace(objFolderItem.Path, "\", "\\") strMsg = strMsg & "Cookies: " & objFolderItem.Path & VbCrLf Set colFolders = objWMIService.ExecQuery _ ("Select * From Win32_Directory Where Name = '" & strFolder & "'") For Each objFolder in colFolders objFolder.TakeOwnershipEx Next 'History Set objFolder = objShell.Namespace(MY_HISTORY) Set objFolderItem = objFolder.Self strFolder = Replace(objFolderItem.Path, "\", "\\") strMsg = strMsg & "History: " & objFolderItem.Path & VbCrLf Set colFolders = objWMIService.ExecQuery _ ("Select * From Win32_Directory Where Name = '" & strFolder & "'") For Each objFolder in colFolders objFolder.TakeOwnershipEx Next Wscript.Echo strMsg & " " & VbCrLf & SCRIPTNAME & " - finished." 'End Copy above this line ---- I hope this helps. To the scripting critics, yes, this could have been done more efficiently with a loop, but, hey scripts are quick and dirty. |
| |
| |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Browsing history | Mark | Vista General | 5 | 05-20-2008 08:34 AM |
| Viewing browsing history | Elaine | Vista account administration | 0 | 01-23-2008 11:50 AM |
| Internet Explorer Browsing History | Brink | Tutorials | 0 | 09-23-2007 12:47 PM |
| browsing history not available | Lori | Vista General | 2 | 08-09-2007 05:40 AM |
| Automatically Deleting Browsing History In IE7 | Haydon | Vista General | 3 | 05-27-2007 11:02 AM |