nil@piefed.ca to Technology@lemmy.worldEnglish · 3 days agoMicrosoft wants Edge to automatically open by default every time you turn on your Windows 11 PCwww.windowscentral.comexternal-linkmessage-square318linkfedilinkarrow-up1955arrow-down116file-text
arrow-up1939arrow-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 · 3 days agomessage-square318linkfedilinkfile-text
minus-squareAgent641@lemmy.worldlinkfedilinkEnglisharrow-up16·2 days 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 days 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.