Some powershell scripts are prompting while killing explorer #105

This commit is contained in:
Michael H.G. Schmidt 2023-02-16 10:31:43 +01:00
parent ed95c810bb
commit f8710f785c
2 changed files with 3 additions and 3 deletions

View File

@ -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\

View File

@ -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),'#######'