Finding Hidden Autostart Programs

by Oct 17, 2016

Ever wondered why some programs launch whenever you log into Windows? Here’s a one liner listing autostarts that affect your login:

#requires -Version 3

Get-CimInstance -ClassName Win32_StartupCommand |
  Select-Object -Property Command, Description, User, Location |
  Out-GridView

Twitter This Tip! ReTweet this Tip!