bugfix
This commit is contained in:
parent
234db44a80
commit
c79264f7ef
@ -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
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user