Navigating the registry is sometimes annoying you need to click here and there.
With the use of PowerShell life can be easier, provided you know exactly the complete registry path.
Below is a PowerShell cmdlet that will list all the software that will run automatically on the computer for all users.
Get-ItemProperty -Path Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
The PowerShell cmdlet below will list the software that will run automatically for the currently logged on user in which the command is executed.
Get-ItemProperty -Path Registry::HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Sample Output:
ISUSPM : "C:\ProgramData\FLEXnet\Connect\11\ISUSPM.exe" -scheduler
Sidebar : C:\Program Files\Windows Sidebar\sidebar.exe /autoRun
LightScribe Control Panel : C:\Program Files\Common Files\LightScribe\LightScribeControlPanel.exe -hidden
PSPath : Microsoft.PowerShell.Core\Registry::HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
PSParentPath : Microsoft.PowerShell.Core\Registry::HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion
PSChildName : Run
PSProvider : Microsoft.PowerShell.Core\Registry
If you're not familiar how the registry works, running PowerShell commands above will not do harm to your system.
It only queries or list values on the registry path specified. But changing those values might affect your system if you don't know exactly what you are doing.
Check out this Technet link to dig further: https://technet.microsoft.com/en-us/library/dd315394.aspx
To query the registry via command line, check out link below:
http://quickbytesstuff.blogspot.sg/2015/08/query-windows-remote-registry-via.html
http://quickbytesstuff.blogspot.sg/2015/08/query-windows-remote-registry-via.html
Cheers..have fun with PowerShell.
==================
Free Android Apps:
Click on links below to find out more:
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
http://quickbytesstuff.blogspot.sg/2014/09/how-to-recite-rosary.html
Educational Android App for Kids:
https://play.google.com/store/apps/details?id=com.xmultiplication
https://play.google.com/store/apps/details?id=com.letsmultiply
==================
Free Android Apps:
Click on links below to find out more:
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
Pray the Rosary every day, countless blessings will be showered upon your life if you recite the Rosary faithfully.
https://play.google.com/store/apps/details?id=com.myrosaryapp
https://play.google.com/store/apps/details?id=com.myrosaryapp
Divine Mercy Chaplet Guide (A Powerful prayer) BFF = Be Filled Faith:
Educational Android App for Kids:
https://play.google.com/store/apps/details?id=com.xmultiplication
https://play.google.com/store/apps/details?id=com.letsmultiply
Comments
Post a Comment