Skip to content

Compiling and Runtime How‐To

Eli Weitzman edited this page Oct 29, 2023 · 1 revision

There are technically three main runtime methods for ETT, with their own separate quirks and features. As well, compiling your own is encouraged, and can run within these as well. Here's a quick rundown for how I compile our versions for release.

Simple PowerShell Script

In this mode, the application is unmodified and uncompiled. Simply modify your own version or use the pre-made ETT.ps1 file.

Compiled, Portable EXE

Using PS2EXE, take your modified ps1, and compile into a portable EXE with whichever details you prefer. NOTE: Make sure that you set the $adminmode variable to true before you compile to run as Administrator in PS2EXE!

Self-extracting installer

Using the EXE generated from the prior step, and the Inno packager, plug in the EXE, make sure it installs to AppData (or machine-wide if you wish), and compile to distribute easily!

Clone this wiki locally