Skip to content

Instantly share code, notes, and snippets.

View diegue-exe's full-sized avatar
😇
Workin'

Diegue diegue-exe

😇
Workin'
  • Biko2
  • Pamplona, Navarra
  • 17:45 (UTC +02:00)
View GitHub Profile
@diegue-exe
diegue-exe / WinUtilities.md
Last active February 22, 2022 09:13
Compilation of Windows utilities

Windows utilities

Startup folder location

C:\Users\{username}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Windows 10 & 11 default environment variables

VARIABLE WINDOWS 10
%ALLUSERSPROFILE% C:\ProgramData
%APPDATA% C:\Users{username}\AppData\Roaming
%COMMONPROGRAMFILES% C:\Program Files\Common Files
%COMMONPROGRAMFILES(x86)% C:\Program Files (x86)\Common Files
@diegue-exe
diegue-exe / deleteTemp.bat
Created February 22, 2022 08:50
Delete Windows %temp% files | Batch Script
@echo off
cd /D %temp%
for /d %%D in (*) do rd /s /q "%%D"
del /f /q *
exit