Add App To Start Up Windows 11 Work May 2026
"3" Write-Host "--- Startup Folder Items ---" -ForegroundColor Yellow Get-ChildItem ([Environment]::GetFolderPath("Startup"))
switch ($choice) "1" $appPath = Pick-AppPath if (-not $appPath) Write-Host "No file selected." -ForegroundColor Red; exit add app to start up windows 11
"4" ForEach-Object Write-Host " - $($_.Name) : $($_.Value)" add app to start up windows 11
"2" $appPath = Pick-AppPath if (-not $appPath) Write-Host "No file selected." -ForegroundColor Red; exit $regPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run" $name = Read-Host "Enter a name for this startup entry (e.g., MyApp)" Set-ItemProperty -Path $regPath -Name $name -Value "`"$appPath`"" Write-Host "✅ Added to Registry (hidden startup – not in Task Manager startup list)" -ForegroundColor Green add app to start up windows 11
$choice = Read-Host "Choose option (1-4)"