File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
images/win/scripts/Installers Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,15 @@ Copy-Item ${env:USERPROFILE}\AppData\Local\Microsoft\VisualStudio -Destination c
1919
2020reg.exe load HKLM\DEFAULT c:\users\default \ntuser.dat
2121reg.exe copy HKCU\Software\Microsoft\VisualStudio HKLM\DEFAULT \Software\Microsoft\VisualStudio / s
22- reg.exe unload HKLM\DEFAULT
2322
23+ # disable TSVNCache.exe
24+ $registryKeyPath = ' HKCU:\Software\TortoiseSVN'
25+ if (-not (Test-Path - Path $registryKeyPath )) {
26+ New-Item - Path $registryKeyPath - ItemType Directory - Force
27+ }
28+
29+ New-ItemProperty - Path $RegistryKeyPath - Name CacheType - PropertyType DWORD - Value 0
30+ reg.exe copy HKCU\Software\TortoiseSVN HKLM\DEFAULT \Software\TortoiseSVN / s
2431
25- Write-Host " Warmup-User.ps1 - completed"
32+ reg.exe unload HKLM\DEFAULT
33+ Write-Host " Warmup-User.ps1 - completed"
You can’t perform that action at this time.
0 commit comments