Windows desktop/shell refresh/reload

B

Bill Stewart

This-line-intentionally-left-blank said:
Is there a script based solution for F5 in XP/2000?

Try:

rundll32 user32.dll,UpdatePerUserSystemParameters

(Works in XP; don't know about Win2K)
 
D

David Candy

Set objShell = CreateObject("Shell.Application")
Set AllWindows=objShell.Windows

For Each window in AllWindows
If window.locationname="My Computer" then
window.refresh
End If
Next

But not for the desktop.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top