w10install/scripts/set-recyclebin.ps1

25 lines
822 B
PowerShell
Raw Permalink Normal View History

2022-05-28 15:56:33 +02:00
# set recyclebin size to 100 MB for all drives and THIS logged on user ...
2022-05-31 20:22:30 +02:00
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
2022-05-28 15:56:33 +02:00
$drives=(Get-PSDrive).Name -match '^[a-z]$'
foreach ($Drive in $drives) {
$Size=100
$Volume=mountvol $Drive":\" /L
$Guid=[regex]::Matches($Volume,'{([-0-9A-Fa-f].*?)}')
$RegKey="HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket\Volume\"+$Guid.value
2022-05-28 21:37:22 +02:00
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
}
2022-05-28 15:56:33 +02:00
}
2022-05-31 20:22:30 +02:00
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'