Page 1 of 1

FlowStone Crash Dump Manager Updated: 04/03/22

PostPosted: Sat Apr 02, 2022 11:55 am
by pwesynthmaker
Updated: 04/03/22

FlowStone Crash Dump Manager

Download Link: https://invntefx.com/ssl/_invntefxfstone/flwstcrshr.zip
Filename: flwstcrshr.zip

Written as a powerful batch file script. Extensively tested for errors and compiled into executable with Licensed Commercial Version Advanced Batch To Executable Converter Software Designed by By B. Dargo.

A versatile management command line style console for removal of the FlowStone Crash Dump Items.

The FlowStone Crash Dump Manager is self-explanatory and easy to use with the following features:

Removes FlowStone Crash Dump Folder/Files with verification.

All options are simply AI YES or NO with absolutely no guesswork needed. Very simple to use even for beginners and faster than light operation for the well versed 'Flowstoners' in our midst.

Re: FlowStone Crash Dump Manager

PostPosted: Sat Apr 02, 2022 12:00 pm
by pwesynthmaker
FlowStone Crash Dump Manager.Batch to Executable Script

==========

:: RUN AS ADMINISTRATOR ::

@echo off
if _%1_==_payload_ goto :payload

:getadmin
echo %~nx0: elevating self
set vbs=%temp%\getadmin.vbs
echo Set UAC = CreateObject^("Shell.Application"^) >> "%vbs%"
echo UAC.ShellExecute "%~s0", "payload %~sdp0 %*", "", "runas", 1 >> "%vbs%
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
goto :eof

:payload

color 4f

echo.
echo.
echo AT ANY TIME DURING THE FOLLOWING PROCEDURES ...
echo TO EXIT WITHOUT CHANGE ...
echo ONLY PRESS "X" CHECK BOX IN UPPER RIGHT OF THIS WINDOW!
echo.

pause


if exist %Userprofile%\AppData\Roaming (

goto :rmvcrsh

) else exit

:rmvcrsh

echo.
echo.
echo To REMOVE Crash Files ...
echo Type "Y" For YES Then Press "ENTER".
echo.
echo Or Press Any Key To EXIT ...

set "reply=n"
set /p "reply= %USERREG%"
if /i not "%reply%" == "y" goto exit /b

cd %UserProfile%\AppData\Roaming

if exist %UserProfile%\AppData\Roaming\"Crash Dump" (

rmdir /q /s "Crash Dump"

echo.
echo.
echo CRASH DUMP FOLDER REMOVED.
echo.
echo.

pause

) else goto :flwstnzip

:flwstnzip

cd %AppData%\FlowStone

if exist %AppData%\FlowStone\"FlowStone *.zip" (

del /q "FlowStone *.zip

) else goto :crshdmp

:crshdmp

if exist %AppData%\FlowStone\CRASH.* (

del /q CRASH.*

) else goto :errlog

:errlog

if exist %AppData%\FlowStone\ERRORLOG.TXT (

del /q ERRORLOG.TXT

) else goto :rprtexe

:rprtexe

if exist %AppData%\FlowStone\report.exe (

del /q report.exe

) else goto :nocrsh

goto :crshovr

:nocrsh

color 2f

echo.
echo.
echo NO CRASH FILES EXIST.
echo.
echo.

pause

exit /b

exit

:crshovr

color 2f

echo.
echo.
echo ALL CRASH FILES HAVE BEEN REMOVED.
echo.
echo.

pause

:eof

exit /b

exit

==========