mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
[Windows] Rename image build scripts (#8808)
This commit is contained in:
committed by
GitHub
parent
f78a7baa80
commit
0263bdd53e
34
images/windows/scripts/build/Configure-User.ps1
Normal file
34
images/windows/scripts/build/Configure-User.ps1
Normal file
@@ -0,0 +1,34 @@
|
||||
################################################################################
|
||||
## File: Configure-User.ps1
|
||||
## Desc: Performs user part of warm up and moves data to C:\Users\Default
|
||||
################################################################################
|
||||
|
||||
#
|
||||
# more: https://github.com/actions/runner-images-internal/issues/5320
|
||||
# https://github.com/actions/runner-images/issues/5301#issuecomment-1648292990
|
||||
#
|
||||
|
||||
Write-Host "Warmup 'devenv.exe /updateconfiguration'"
|
||||
|
||||
$vsInstallRoot = (Get-VisualStudioInstance).InstallationPath
|
||||
$devEnvPath = "$vsInstallRoot\Common7\IDE\devenv.exe"
|
||||
|
||||
cmd.exe /c "`"$devEnvPath`" /updateconfiguration"
|
||||
|
||||
# we are fine if some file is locked and cannot be copied
|
||||
Copy-Item ${env:USERPROFILE}\AppData\Local\Microsoft\VisualStudio -Destination c:\users\default\AppData\Local\Microsoft\VisualStudio -Recurse -ErrorAction SilentlyContinue
|
||||
|
||||
reg.exe load HKLM\DEFAULT c:\users\default\ntuser.dat
|
||||
reg.exe copy HKCU\Software\Microsoft\VisualStudio HKLM\DEFAULT\Software\Microsoft\VisualStudio /s
|
||||
|
||||
# disable TSVNCache.exe
|
||||
$registryKeyPath = 'HKCU:\Software\TortoiseSVN'
|
||||
if (-not(Test-Path -Path $registryKeyPath)) {
|
||||
New-Item -Path $registryKeyPath -ItemType Directory -Force
|
||||
}
|
||||
|
||||
New-ItemProperty -Path $RegistryKeyPath -Name CacheType -PropertyType DWORD -Value 0
|
||||
reg.exe copy HKCU\Software\TortoiseSVN HKLM\DEFAULT\Software\TortoiseSVN /s
|
||||
|
||||
reg.exe unload HKLM\DEFAULT
|
||||
Write-Host "Configure-User.ps1 - completed"
|
||||
Reference in New Issue
Block a user