Return to site

Using powershell to install software

broken image
broken image
broken image

Obviously, replace C:\Users\Lori\Documents\InstalledPrograms-PS.txt with the path and name you want to use for your file. For example: Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > C:\Users\Lori\Documents\InstalledPrograms-PS.txt You can just send the output using the > symbol and adding the path to a new text file that you want to create. You will probably want to export that to a file though, which is also easy enough. PowerShell will give you a list of all your programs, complete with the version, name of the developer, and even the date you installed it.