Create programs.yml (#19701)

Create programs.yml per #16993
This commit is contained in:
Brock Walters 2024-06-12 21:09:54 -04:00 committed by GitHub
parent c455c75360
commit f38076ef69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,32 @@
name: programs
description: |- # (required) string - The description for this table. Note: this field supports Markdown
The `programs` table lists applications installed via Windows Installer from a package.
examples: |- # (optional) string - An example query for this table. Note: This field supports Markdown
Basic query:
```
SELECT * FROM programs;
```
This query determines if a specific version of Google Chrome.exe is installed:
```
SELECT name,version FROM programs WHERE name='Google Chrome' AND version='125.0.6422.142';
```
notes: |- # (optional) string - Notes about this table. Note: This field supports Markdown.
This table includes references for applications:
- downloaded directly from websites and installed by an end user like Google Chrome or Notepad++
- installed via automation frameworks like winget or Chocolatey
- installed via command line in cmd or PowerShell
Links:
- [Windows Installer](https://learn.microsoft.com/en-us/windows/win32/msi/windows-installer-portal)
- [Chocolatey](https://chocolatey.org/)
- [winget](https://learn.microsoft.com/en-us/windows/package-manager/winget/)
- [winget.run](https://winget.run/)
- Windows [cmd](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/cmd)
- Windows [PowerShell](https://learn.microsoft.com/en-us/powershell/scripting/overview?view=powershell-7.4)
- [PowerShell primer](https://www.howtogeek.com/devops/how-to-get-started-with-learning-powershell/)
- [Notepad++](https://notepad-plus-plus.org/)