Skip to content

Instantly share code, notes, and snippets.

View IseduardoRezende's full-sized avatar
🟣
Working

Eduardo Rezende IseduardoRezende

🟣
Working
View GitHub Profile
@IseduardoRezende
IseduardoRezende / update-my-system.ps1
Created February 13, 2026 19:56
Script to update Windows system and applications safely and easily.
Write-Host "=== COMPLETE SYSTEM UPDATE ===" -ForegroundColor Cyan
# 1. WINDOWS UPDATE (including optional)
Write-Host "`n[1/4] Checking Windows Update..." -ForegroundColor Yellow
if (-not (Get-Module -ListAvailable -Name PSWindowsUpdate)) {
Install-Module PSWindowsUpdate -Force -Scope CurrentUser
}
Import-Module PSWindowsUpdate
@IseduardoRezende
IseduardoRezende / innosetup-linux-macos.org
Created January 19, 2026 15:33 — forked from amake/innosetup-linux-macos.org
Inno Setup on Linux and macOS

Inno Setup on Linux and macOS

Inno Setup is a popular installer builder for Windows. Of course it is made to run on Windows only, by default. But what if you want to build Windows installers off Windows, i.e. on Linux or macOS?

You’re in luck: It’s possible to run Inno Setup anywhere that Docker runs (including Linux and macOS), and even have a passable experience writing your setup script.

# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
#
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/[Ll]ogs/