Recent DiscussionsMost RecentNewest TopicsMost LikesSolutionsTagged:TagRe: How to restart edge from the command line lyda-work Hi! you may try: taskkill /F /IM msedge.exe start msedge -restore-last-session Or using PowerShell: Get-Process -Name msedge | ForEach-Object { $_.Stop() } Start-Process msedge -RestoreTabs