nil@piefed.ca to Technology@lemmy.worldEnglish · 2 months agoMicrosoft wants Edge to automatically open by default every time you turn on your Windows 11 PCwww.windowscentral.comexternal-linkmessage-square323fedilinkarrow-up1970arrow-down115file-text
arrow-up1955arrow-down1external-linkMicrosoft wants Edge to automatically open by default every time you turn on your Windows 11 PCwww.windowscentral.comnil@piefed.ca to Technology@lemmy.worldEnglish · 2 months agomessage-square323fedilinkfile-text
minus-squareAgent641@lemmy.worldlinkfedilinkEnglisharrow-up16·edit-22 months ago@echo off timeout /t 60 /nobreak >nul tasklist /fi "imagename eq msedge.exe" | find /i "msedge.exe" >nul if not errorlevel 1 ( taskkill /f /im msedge.exe >nul 2>&1 ) exit
minus-squareRose@slrpnk.netlinkfedilinkEnglisharrow-up1·2 months agoMy first thought was Power Automate, the same thing is probably pretty easily doable with it.
@echo off timeout /t 60 /nobreak >nul tasklist /fi "imagename eq msedge.exe" | find /i "msedge.exe" >nul if not errorlevel 1 ( taskkill /f /im msedge.exe >nul 2>&1 ) exitMy first thought was Power Automate, the same thing is probably pretty easily doable with it.