Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

wakillon

Member
  • Joined

  • Last visited

  • Country

    France
  1. @CoffeeFiend So, you have really no chance with your windows 7 No path in the title of your opened windows and your explorer doesn't restart itself ! Which other surprises are coming ? Like me, you should be back to XP ! I don't know if Sweept will respond one day, but i think this is approching :
  2. If you want an other way... Works for all opened directories !
  3. @CoffeeFiend sweept said : I'm looking for a script that can list all running available open windows on desktop!.. secondly kill *all processes of explorer.exe till there are none more running @foreground or @backgrounds lastly recover all X:\paths of all open windows listed from the first step using explorer.exe.. TIA for any help with this.. So, Sorry for you if it doesn't work on 7-64bit, but on xpsp3-32bit it works well. It doesn't return the name of the window but the entire path of the folder, who permits to re-open them after... FileExists returns false only for special folders who have already easy accessibles shortcuts. And working with handles have no sense, because when explorer restarts these handles no longer exists !
  4. For just refresh try this : #NoTrayIcon #include <Array.au3> _UpdateExplorer ( ) Func _UpdateExplorer ( ) Local $_WinOpt = Opt ( "WinSearchChildren", True ), $_PARAM = 107040 If @OSVersion = "WIN_XP" Then $_PARAM = 28931 $_WinListArray = WinList ( "[REGEXPCLASS:(Explore|Cabinet)WClass]" ) For $_I = 0 To UBound ( $_WinListArray ) - 1 DllCall ( "user32.dll", "long" , "SendMessage", "hwnd", $_WinListArray[$_I][1], "int", 0x111, "int" , $_PARAM , "int" , 0 ) Next $_WinListArray = WinList ( "[REGEXPCLASS:(Progman|#32770|SHELLDLL_DefView)]" ) For $_I = 0 To UBound ( $_WinListArray ) - 1 DllCall ( "user32.dll", "long" , "SendMessage", "hwnd", $_WinListArray[$_I][1], "int", 0x111, "int" , $_PARAM , "int" , 0 ) Next EndFunc ;==> _UpdateExplorer ( ) But you need to restart explorer for apply your changes like here
  5. Another way ... ; Restart explorer with opened windows $_WinList = WinList ( "[REGEXPCLASS:(Explore|Cabinet)WClass]" ) Do ProcessClose ( 'explorer.exe' ) Until Not ProcessExists ( 'explorer.exe' ) For $_I = 1 To $_WinList[0][0] ConsoleWrite ( $_WinList[$_I][0] & @Crlf ) If FileExists ( $_WinList[$_I][0] ) Then Run ( 'explorer.exe "' & $_WinList[$_I][0] & '"' ) Next

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.