Skip to content

Instantly share code, notes, and snippets.

@VickyDev986
VickyDev986 / CredentialsGeneratorUtility.bat
Last active February 20, 2021 18:26
Credentials Generator Utility
@Echo Off
cd %~dp0
:UtilityManager
CLS
ECHO 1. Generate Username
ECHO 2. Generate Password
ECHO 3. Exit from this tool
CHOICE /N /C 123 /M "Select any one of above tasks: "
IF %ERRORLEVEL% == 1 (ECHO. & GOTO GenerateUsername)
@VickyDev986
VickyDev986 / CleanAppsCacheLogsFinalv7.0.0.1.bat
Last active March 28, 2022 16:05
Windows Tweaks AIO Script
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
net file 1>NUL 2>NUL
if not '%errorlevel%' == '0' (
powershell Start-Process -FilePath "%0" -ArgumentList "%cd%" -verb runas >NUL 2>&1
exit /b
)
cd /d %1
@VickyDev986
VickyDev986 / CleanAppsCacheLogsFinalv3.bat
Last active February 19, 2021 01:07
Windows HDD & RAM Cleanup Solution
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
net file 1>NUL 2>NUL
if not '%errorlevel%' == '0' (
powershell Start-Process -FilePath "%0" -ArgumentList "%cd%" -verb runas >NUL 2>&1
exit /b
)
cd /d %1
@VickyDev986
VickyDev986 / DisableWindowsUpdatesCleanup.bat
Last active February 17, 2021 21:04
Disable Windows Updates & Cleanup Fetched / Downloaded files
::::::::::::::::::::::::::::::::::::::::::::
:: Automatically check & get admin rights V2
::::::::::::::::::::::::::::::::::::::::::::
@echo off
CLS
ECHO.
ECHO =============================
ECHO Running Admin shell
ECHO =============================