@ECHO OFF :: FILE: DelPwl.bat :: :: Deletes Password List Files (win9x, ME) :: :: If you have Windows 9x, ME machines in your network and you really :: really REALLY (!!!) need them, make sure that all cached pwl files :: are deleted every time the machine starts (autoexec.bat) and :: everytime a user logs on (Startup folder in start menu). :: Even if the systems aren't part of the network, but pure as a :: standalone service in your environment, also delete the pwl files :: because unaware users might logon with their credentials to these :: machines (I've seen it happening!) :: :: AUTHOR: Parcifal Aertssen :: http://www.aqtronix.com IF "%OS%"=="Windows_NT" GOTO End IF "%WINDIR%"=="" GOTO End :: removing the pwl files DEL %WINDIR%\*.pwl >nul :End