Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSToys
1.0.0
src/Public/Restart-Explorer.ps1
function
Restart-Explorer
{
<#
.SYNOPSIS
Restarts Windows Explorer (useful if taskbar disappears).
.EXAMPLE
Restart-Explorer
#>
Stop-Process
-Name
explorer
-Force
}