▒▓█ Console

REFINED SHUTDOWN BATCH ▀ THE REMOVAL OF ALL FILES LOCATED IN THE TEMP FOLDER HAS BEEN ADDED

REFINED SHUTDOWN BATCH ▀ THE REMOVAL OF ALL FILES LOCATED IN THE TEMP FOLDER HAS BEEN ADDED

Shutting down computer without actually doing something useful is quite lame. So i’ve decided to implement a nice addition in the face of junk removal. @echo off echo Cleaning up temporary files in %TEMP% folder... echo. set "tempfolder=%TEMP%" cd /d "%tempfolder%" :: Delete all files and folders in TEMP (including read-only and hidden) del /q /f /s *.* >nul 2>&1 for /d %%x in (*) do rd /s /q "%%x" >nul 2>&1 echo.
SIMPLE SAFE EJECTION OF ALL CONNECTED FLASH DRIVES

SIMPLE SAFE EJECTION OF ALL CONNECTED FLASH DRIVES

Today i’m not planning any fancy stuff, just a plain USB drive ejector at your disposal. Script ejects all connected flash drives. If drive is in use or some software is locking flash drive it won’t be ejected [obviously]. @echo off setlocal enabledelayedexpansion set "drivelist=%temp%\usb_drives_list.txt" del "%drivelist%" >nul 2>nul for /f "skip=1 tokens=1" %%D in ('wmic logicaldisk where "drivetype=2" get deviceid') do ( if exist "%%D\" ( echo %%D>>"%drivelist%" ) ) if not exist "%drivelist%" ( echo No flash drives found!
ADVANCED AUTOMATED COPYING FROM EXTERNAL FLASH DRIVES TO LOCAL DISK IN WINDOWS ENVIRONMENT

ADVANCED AUTOMATED COPYING FROM EXTERNAL FLASH DRIVES TO LOCAL DISK IN WINDOWS ENVIRONMENT

Today we are going to make a deep dive into advanced file management and automation. There are several scenarios for copying files from external storage that are described here. ► COPY SPECIFIC FILE TYPES FROM MULTIPLE FOLDERS ON ANY EXTERNAL DRIVE TO THE LOCAL HARD DRIVE This script will copy ALL JPG FILES from folders TEST1 and TEST2, which are located on any flash-drive to folder 1234 located on local drive C.
HOW TO DELETE FOLDERS CREATED BY ANDROID ON SD-CARDS AND EXTERNAL DRIVES WITH ONE CLICK OR KEYSTROKE

HOW TO DELETE FOLDERS CREATED BY ANDROID ON SD-CARDS AND EXTERNAL DRIVES WITH ONE CLICK OR KEYSTROKE

Have you ever been pissed off by loads of junk folders like “Music”, “Pictures”, “Movies”, “DCIM”, “LOST.DIR” on sd-cards and OTG flash drives that are created by Android? There is no easy way to avoid their creation, because this “feature” is hardcoded into Android core. Of course we can root the phone and hack the system by means of Xposed framework or something similar, but we won’t do it today.
HOW TO COPY FILES FROM ANDROID PHONE TO PC IN AN EASY AND FAST WAY

HOW TO COPY FILES FROM ANDROID PHONE TO PC IN AN EASY AND FAST WAY

First things first. I often need to copy substantial amount of photos from my phone. It can’t be done via Windows GUI without millions of mouse clicks or keystrokes. Here you will find a solution on how to do this in a proper way. The key tool for this will be [ADB] , developer tools for Android. Wishes: command line, batch, no file explorer, no mouse, no clickety-clack. Sicking tired of all of these not-so-precise-instructions i’ve decided to make my own.
HOW TO SETUP CUSTOM FONTS IN WINDOWS 7 CONSOLE

HOW TO SETUP CUSTOM FONTS IN WINDOWS 7 CONSOLE

As a hardcore user of [dual-panel orthodox file manager] i always suffered because of sucky look of default console fonts. Native preloaded font list has quite scarce selection, if you ask me. To fix such disappointment you’ll need: install desired fonts by means of windows control panel copy EXACT FONT NAME fonts section in control panel paste it into registry key into following branch HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont note that every new subsequent font should be added by a key with added one zero to registry key name reboot computer to apply & enjoy!
NEO-GEO ▀ LUXURY CONSOLE OF THE 90s

NEO-GEO ▀ LUXURY CONSOLE OF THE 90s

UPDATED ON: 2024-09-06 Added two history videos. Not many people know about Japanese console [Neo Geo] . It was pretty powerful and brought arcade machine quality to home gaming. Pulse-pounding and jaw-dropping action scrollers were a calling card of Japanese gaming device. Comparatively to more common [Super Nintendo] and [MegaDrive] it was advertised as console with 24-bit GPU bus, which allows very big 2D-sprites, supporting up to 4096 colors. By release time [31 Jan 1990] it was super impressive.
USEFUL SIMPLE BATCH FILES WHICH I USE ON DAILY BASIS

USEFUL SIMPLE BATCH FILES WHICH I USE ON DAILY BASIS

UPDATED ON: 2025-05-26 I use these automation on daily basis to improve my workflow. All batch files are tested under Windows 7 x64. ► SHUTDOWN PUTER AND CLEAN TMP FOLDER @echo off echo Cleaning up temporary files in %TEMP% folder... echo. set "tempfolder=%TEMP%" cd /d "%tempfolder%" :: Delete all files and folders in TEMP (including read-only and hidden) del /q /f /s *.* >nul 2>&1 for /d %%x in (*) do rd /s /q "%%x" >nul 2>&1 echo.
USEFUL WINDOWS 7 CONSOLE COMMANDS

USEFUL WINDOWS 7 CONSOLE COMMANDS

Here is a short breakdown of the most frequently used commands, which could be launched from the START menu. [WIN] + R ► START ► RUN ► …. CONTROL PANEL control panel LAN CONNECTIONS ncpa.cpl REMOTE DESKTOP mstsc SYSTEM SERVICES services.msc USER CONTROL PANEL control userpasswords2 MICROSOFT CONFIG TOOL msconfig DIRECTX DIAGNOSTICS TOOL dxdiag SYSTEM INFORMATION msinfo32 REGISTRY EDITOR regedit TASK SCHEDULER taskschd.msc GROUP POLICY EDITOR gpedit.msc spacedrone808 @Adobe spacedrone808 @Freepik
KILLING FROZEN PROCESSES IN WINDOWS ENVIRONMENT

KILLING FROZEN PROCESSES IN WINDOWS ENVIRONMENT

Software is not perfect. Windows, Linux or any other OS. It doesn’t really matter. In this quick note, I will talk about Windows operating system. For basic deleting of stucked files big chance that you are already using utility like Unlocker or smth. However, some time ago Unlocker was caught in spreading malware, so no trust to this application anymore. As for me, I prefer [Lock Hunter] instead. And what about frozen processes?

▀ BACK TO HOME PAGE ▀