diff --git a/tools/set-exlorer-viewmode.ps1 b/tools/set-exlorer-viewmode.ps1 index f83b6fa..458007c 100644 --- a/tools/set-exlorer-viewmode.ps1 +++ b/tools/set-exlorer-viewmode.ps1 @@ -3,6 +3,8 @@ $ViewMode=1 +write-host '#######',(split-path $PSCommandPath -Leaf),'#######' + # Paths for PowerShell commands use the registry Get-PSDrives, hence the ':' $src = 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes' $dst = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes' @@ -38,3 +40,5 @@ Get-ChildItem $topViews | % { # restart explorer ... Get-Process Explorer | Stop-Process +write-host '#######',(split-path $PSCommandPath -Leaf),'#######' + diff --git a/tools/set-recyclebin.ps1 b/tools/set-recyclebin.ps1 index 8a40436..87e2204 100644 --- a/tools/set-recyclebin.ps1 +++ b/tools/set-recyclebin.ps1 @@ -1,5 +1,7 @@ # set recyclebin size to 100 MB for all drives and THIS logged on user ... +write-host '#######',(split-path $PSCommandPath -Leaf),'#######' + $drives=(Get-PSDrive).Name -match '^[a-z]$' foreach ($Drive in $drives) { @@ -18,3 +20,5 @@ foreach ($Drive in $drives) { } +write-host '#######',(split-path $PSCommandPath -Leaf),'#######' +