Skip to content

Commit 38b3056

Browse files
hlsitechioclaude
andcommitted
fix: show MSI install dialog for folder selection
Remove /qb quiet mode so user sees the full MSI UI with folder picker instead of silently installing to Program Files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5109ffa commit 38b3056

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

install.ps1

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -384,10 +384,9 @@ try {
384384
Invoke-WebRequest -Uri $msiUrl -OutFile $msiPath -UseBasicParsing
385385
$ProgressPreference = $prevPref
386386

387-
# Use current directory as install target, or fallback to Program Files
388-
$installDir = $PWD.Path
389-
Write-Step "Installing T3 Code to $installDir (admin prompt may appear)..."
390-
$msiArgs = "/i `"$msiPath`" /qb /norestart INSTALLDIR=`"$installDir`""
387+
# Let the MSI show its full UI so user can pick install folder
388+
Write-Step "Installing T3 Code (choose your install folder in the dialog)..."
389+
$msiArgs = "/i `"$msiPath`" /norestart"
391390
$proc = Start-Process msiexec.exe -ArgumentList $msiArgs -Wait -Verb RunAs -PassThru
392391
if ($proc.ExitCode -eq 0) {
393392
if ($isUpdate) {
@@ -444,8 +443,6 @@ Write-Host " ========================================" -ForegroundColor Green
444443
Write-Host ""
445444

446445
if (-not $isUpdate) {
447-
Write-Host " Installed to: $($PWD.Path)" -ForegroundColor White
448-
Write-Host ""
449446
Write-Host " Quick start:" -ForegroundColor DarkGray
450447
Write-Host " 1. Launch T3 Code from the Start Menu or Desktop shortcut" -ForegroundColor DarkGray
451448
Write-Host " 2. Sign in with your AI providers (ChatGPT, Claude, Gemini)" -ForegroundColor DarkGray

0 commit comments

Comments
 (0)