File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ $vsRegEdit = Join-Path (Join-Path (Join-Path $vsDir 'Common7') 'IDE') 'VSRegEdit
1212$hive = " RoslynDev"
1313& $vsRegEdit set " $vsDir " $hive HKCU " Roslyn\Internal\OnOff\Features" OOP64Bit dword 0
1414
15+ & $vsRegEdit set " $vsDir " $hive HKLM " Profile" DisableFirstLaunchDialog dword 1
16+
1517Write-Host " -- VS Info --"
1618$isolationIni = Join-Path (Join-Path (Join-Path $vsDir ' Common7' ) ' IDE' ) ' devenv.isolation.ini'
1719Get-Content $isolationIni | Write-Host
Original file line number Diff line number Diff line change @@ -31,8 +31,13 @@ if($success -eq $false){
3131 throw " Failed to create hive"
3232}
3333
34- Write-Host " -- VS Info --"
3534$vsDir = Split-Path - Parent $devenvExePath
35+
36+ $vsRegEdit = Join-Path $vsDir ' VsRegEdit.exe'
37+
38+ & $vsRegEdit set " $vsDir " RoslynDev HKLM " Profile" DisableFirstLaunchDialog dword 1
39+
40+ Write-Host " -- VS Info --"
3641$isolationIni = Join-Path $vsDir ' devenv.isolation.ini'
3742Get-Content $isolationIni | Write-Host
3843Write-Host " -- /VS Info --"
You can’t perform that action at this time.
0 commit comments