- Thread Author
-
- #1
So when my Win 10 laptop goes to sleep because of inactivity, or I put it to sleep, when I then log back in, a session of www.bing.com pops up?
I never use Bing. Any idea why this is happening?
Ray
I never use Bing. Any idea why this is happening?
Ray
Solution
You can just open scheduled tasks locate the task from the command above and right click it and select Disable or Delete
- Joined
- Jul 4, 2015
- Messages
- 8,998
Most likely there is a scheduled task firing on a "Wake Event"
Open Powershell and copy/paste the following and run it
Get-ScheduledTask | ? { $_.Triggers -like "*TaskEventTrigger*" } That will tell you which scheduled tasks trigger from an event.
From there you can look at those scheduled tasks and the Trigger will be like this
Open Powershell and copy/paste the following and run it
Get-ScheduledTask | ? { $_.Triggers -like "*TaskEventTrigger*" } That will tell you which scheduled tasks trigger from an event.
From there you can look at those scheduled tasks and the Trigger will be like this
Last edited by a moderator:
- Joined
- Jul 4, 2015
- Messages
- 8,998
A little more complicated Powershell, but this will just tell you which one has the Wake from Sleep Event
Get-ScheduledTask | ? { $_.Triggers -like "*TaskEventTrigger*" } | % { $event = $_; $_.Triggers | % { if($_.SubScription -like "*Power-Trouble*"){$event } } }
Get-ScheduledTask | ? { $_.Triggers -like "*TaskEventTrigger*" } | % { $event = $_; $_.Triggers | % { if($_.SubScription -like "*Power-Trouble*"){$event } } }
- Thread Author
-
- #7
A little more complicated Powershell, but this will just tell you which one has the Wake from Sleep Event
Get-ScheduledTask | ? { $_.Triggers -like "*TaskEventTrigger*" } | % { $event = $_; $_.Triggers | % { if($_.SubScription -like "*Power-Trouble*"){$event } } }
I get no response back from the above command?
Similar threads
- Replies
- 9
- Views
- 1K
- Replies
- 3
- Views
- 2K