wmz . - , , .
script , , , , Explorer , .
, , , Win7.:) , / WinXP, , , , ; , . , , . , ?:)
call :ForceStartExplorerWindow .
call :ForceStartExplorerWindow .
call :ForceStartExplorerWindow .
GOTO :EOF
:: Pass The location to open as %1
:ForceStartExplorerWindow
SETLOCAL
set __ForceStartTempDir=%1\ThisShouldNeverExist-%RANDOM%
md %__ForceStartTempDir%
start explorer %__ForceStartTempDir%
:: Hope this wait is long enough for Explorer to finish loading it...
ping -n 2 localhost >NUL
:: Hope this rd works...
rd %__ForceStartTempDir%
:: FUTURE: Consider retrying upon failure.
:: End of ForceStartExplorerWindow
GOTO :EOF