From ecf951280e110c53cbe3701cb30174fe7671f44a Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Tue, 31 May 2022 20:22:30 +0200 Subject: [PATCH] added PDF24 --- tools/set-exlorer-viewmode.ps1 | 4 ++++ tools/set-recyclebin.ps1 | 4 ++++ 2 files changed, 8 insertions(+) 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),'#######' +