Tuesday, December 9, 2014

#35 : How to know Windows Startup commands with Powershell?

Hi Guys,

Being Powershell developer, we always look for some good solution and simple solution. When I find something useful and simple, I share them with all of you.




While looking into WMI Explorer, I found a good stuff which could tell us the list of programs which run a windows start-up. Below is the command for the same -

Get-WmiObject -Class Win32_StartupCommand

Enjoy Scripting!

No comments:

Post a Comment

#112: How to handle xml document in Powershell?

 In PowerShell, you can handle XML data using various cmdlets and methods provided by the .NET Framework. Here's a basic guide on how to...