Some powershell scripts are prompting while killing explorer #105
This commit is contained in:
parent
ed95c810bb
commit
f8710f785c
@ -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\
|
||||
|
@ -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),'#######'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user