This commit is contained in:
Michael H.G. Schmidt 2022-05-28 21:37:22 +02:00
parent 234db44a80
commit c79264f7ef
2 changed files with 6 additions and 4 deletions

View File

@ -85,7 +85,7 @@ if NOT EXIST %LOCALSTATE%\settings.json (
)
rem RECYCLE BIN
powershell -command .\set-recyclebin.ps1
powershell -command %TOOLS%\set-recyclebin.ps1
if EXIST %STATUSFILE% GOTO END

View File

@ -10,9 +10,11 @@ foreach ($Drive in $drives) {
$Guid=[regex]::Matches($Volume,'{([-0-9A-Fa-f].*?)}')
$RegKey="HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket\Volume\"+$Guid.value
if (Test-Path $Regkey) {
echo "INFO: setting recyclebin of drive [ $Drive ] to $Size MB"
New-ItemProperty -Path $RegKey -Name MaxCapacity -Value $Size -PropertyType "dword" -Force | Out-Null
New-ItemProperty -Path $RegKey -Name NukeOnDelete -Value 0 -PropertyType "dword" -Force | Out-Null
}
}