Your video driver might need upgrading. Check with the manufacturer's web site
Turn the acceleration down on your adapter, right-click your desktop, properties,
settings tab, advanced button, troubleshoot tab.
--
Mary Sauer MS MVP
http://office.microsoft.com/
http://msauer.mvps.org/
news://msnews.microsoft.com
"kwinkel" <kwi...@discussions.microsoft.com> wrote in message
news:9673FEF9-21B7-4B02...@microsoft.com...
I experience this same problem too, and in my opinion it has to do with
how Photo Manager remembers your "recently browsed" picture folders.
In my situation I was browsing picture folders in several different
network shares. So Photo Manager would place those network shares in
the shortcuts pane under "recently browsed."
Later on (while I was disconnected from all network shares) I would
start up Photo Manager and that's when I would see the long delay. I
have a feeling that Photo Manager is trying to connect to those network
shares to load the thumbs.db file. It times out after awhile and then
opens up the Photo Manager program.
I think the delay is caused by the timeout this program experiences
while trying to connect to those shares.
Unfortunately there's no way I've found of "clearing" the recently
browsed list. So you'll always experience this slow loading phenomena.
--
jeffreyd26
------------------------------------------------------------------------
Posted via http://www.forum4designers.com
------------------------------------------------------------------------
View this thread: http://www.forum4designers.com/message171027.html
Disconnecting network drives, clear internet temp folders and clearing
cached thumbnails sounds lame to me.
This is a MS Product you'd think they'd realize that XP caches
thumbnails and scanning network drives at startup was a MAC OS 9 /
Windows 95 problem, and if this application is checking out the IE Temp
folders at startup then all the programers should be made to line up,
forced to drop thier trousers and be publicy flogged!
I'm hoping someone out there figures out what the hell is taking is so
long to startup or I'm just going to install some other third party
Image Viewer.
It could be your video driver, slide down the acceleration on your video adapter,
right-click the desktop, properties, settings tab, advanced button, troubleshoot. If
this allows you to open the Manager faster think about upgrading your video driver.
Irfanview www.irfanview.com is a great viewer, fast and free. If you choose to
download it get the plug-ins too, some images need them to open.
--
Mary Sauer MS MVP
http://office.microsoft.com/
http://msauer.mvps.org/
news://msnews.microsoft.com
<jsou...@gmail.com> wrote in message
news:1109941053.0...@z14g2000cwz.googlegroups.com...
--------
The solution is to edit the OIScatalog.cag (just an XML file) located
in
C:\Documents and Settings\<yourprofile>\Local Settings\Application
Data\Microsoft\OIS.
Locate tags that begin with "mru path". Delete any that point to bad or
slow locations.
--------
--
Mary Sauer MS MVP
http://office.microsoft.com/
http://msauer.mvps.org/
news://msnews.microsoft.com
<scott...@gmail.com> wrote in message
news:1110214956.0...@o13g2000cwo.googlegroups.com...
Leon
----------------------------
logout.vbs
----------------------------
Set objEnv = WshShell.Environment("Process")
set objFS=CreateObject ("Scripting.FileSystemObject")
userprofile = objEnv("userprofile")
username = objEnv("username")
Const ForReading = 1, ForWriting = 2
if ObjFS.FileExists(userprofile & "\Local Settings\Application
Data\Microsoft\OIS\OIScatalog.cag") then
Set objTextFile = objFS.OpenTextFile (userprofile & "\Local
Settings\Application Data\Microsoft\OIS\OIScatalog.cag", ForReading)
Do Until objTextFile.AtEndOfStream
strLine = objTextFile.ReadLine
If not Left(strLine, 9) = "<mru path" Then
strNewText = strNewText & strLine & vbCrLf
End If
Loop
objTextFile.Close
Set objTextFile = objFS.OpenTextFile (userprofile & "\Local
Settings\Application Data\Microsoft\OIS\OIScatalog.cag", ForWriting)
objTextFile.Write(strNewText)
objTextFile.Close
objFS.CopyFile(userprofile & "\Local Settings\Application
Data\Microsoft\OIS\OIScatalog.cag"), ("\\fileserver\tsprofile$\" &
username & "\Application Data\Microsoft\OIS\OIScatalog.cag"),true
end if
------------------------
login.vbs
------------------------
Set objEnv = WshShell.Environment("Process")
set objFS=CreateObject ("Scripting.FileSystemObject")
userprofile = objEnv("userprofile")
username = objEnv("username")
if ObjFS.FileExists("\\fileserver\tsprofile$\" & username &
"\Application Data\Microsoft\OIS\OIScatalog.cag") then
if not objFS.FolderExists(userprofile & "\Local Settings\Application
Data\Microsoft\OIS") then
objFS.CreateFolder(userprofile & "\Local Settings\Application
Data\Microsoft\OIS")
end if
objFS.CopyFile("\\fileserver\tsprofile$\" & username & "\Application
Data\Microsoft\OIS\OIScatalog.cag"), (userprofile & "\Local
Settings\Application Data\Microsoft\OIS\OIScatalog.cag"),true
end if