From f8710f785ca7c314d9e3c75ac84e62ca83660cf3 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Thu, 16 Feb 2023 10:31:43 +0100 Subject: [PATCH] Some powershell scripts are prompting while killing explorer #105 --- scripts/cleanup-tiles.ps1 | 4 ++-- scripts/set-explorer-viewmode.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/cleanup-tiles.ps1 b/scripts/cleanup-tiles.ps1 index a8391b6..315f12c 100644 --- a/scripts/cleanup-tiles.ps1 +++ b/scripts/cleanup-tiles.ps1 @@ -36,7 +36,7 @@ foreach ($regAlias in $regAliases){ } #Restart Explorer, open the start menu (necessary to load the new layout), and give it a few seconds to process -Stop-Process -name explorer +Stop-Process -name explorer -Force Start-Sleep -s 5 $wshell = New-Object -ComObject wscript.shell; $wshell.SendKeys('^{ESCAPE}') Start-Sleep -s 5 @@ -49,7 +49,7 @@ foreach ($regAlias in $regAliases){ } #Restart Explorer and delete the layout file -Stop-Process -name explorer +Stop-Process -name explorer -Force # Uncomment the next line to make clean start menu default for all new users Import-StartLayout -LayoutPath $layoutFile -MountPath $env:SystemDrive\ diff --git a/scripts/set-explorer-viewmode.ps1 b/scripts/set-explorer-viewmode.ps1 index d945623..a763294 100644 --- a/scripts/set-explorer-viewmode.ps1 +++ b/scripts/set-explorer-viewmode.ps1 @@ -41,7 +41,7 @@ Get-ChildItem $topViews | % { } write-host 'restarting explorer ...' -Get-Process Explorer | ? {$_.SI -eq (Get-Process -PID $PID).SessionId} | Stop-Process +Get-Process Explorer | ? {$_.SI -eq (Get-Process -PID $PID).SessionId} | Stop-Process -Force write-host '#######',(split-path $PSCommandPath -Leaf),'#######'