From 876d1a3cf6a4e76f458e0d677295d251aa7b5443 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 1 Jan 2026 03:33:25 +0100 Subject: [PATCH] Do not close immediately when After Effects opened --- install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/install.ps1 b/install.ps1 index ea809ae..cf47039 100644 --- a/install.ps1 +++ b/install.ps1 @@ -13,6 +13,7 @@ $SYSTEM_EXT_DIR = "C:\Program Files (x86)\Common Files\Adobe\CEP\extensions" if (Get-Process -Name "AfterFX" -ErrorAction SilentlyContinue) { Write-Host "After Effects is currently running." Write-Host "Please close it and run the installer again." + Read-Host "Press Enter to exit..." Exit 1 }