Issue #24
This commit is contained in:
parent
b6421a5bab
commit
234db44a80
BIN
scripts/tweaks/show_file_extensions.reg
Normal file
BIN
scripts/tweaks/show_file_extensions.reg
Normal file
Binary file not shown.
@ -84,6 +84,10 @@ if NOT EXIST %LOCALSTATE%\settings.json (
|
|||||||
%LOCALSTATE%\settings.json
|
%LOCALSTATE%\settings.json
|
||||||
)
|
)
|
||||||
|
|
||||||
|
rem RECYCLE BIN
|
||||||
|
powershell -command .\set-recyclebin.ps1
|
||||||
|
|
||||||
|
|
||||||
if EXIST %STATUSFILE% GOTO END
|
if EXIST %STATUSFILE% GOTO END
|
||||||
|
|
||||||
if EXIST %TOOLS%\personal (
|
if EXIST %TOOLS%\personal (
|
||||||
|
18
tools/set-recyclebin.ps1
Normal file
18
tools/set-recyclebin.ps1
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# set recyclebin size to 100 MB for all drives and THIS logged on user ...
|
||||||
|
|
||||||
|
$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
|
||||||
|
|
||||||
|
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