WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

Samples from Users
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

List Installed Applications


OutPutFile = FileOpen("InstalledApps.txt", "WRITE")
For x=0 to 999
	Key=RegOpenkey(@RegMachine, "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall")
	a=RegQueryKey(Key, x)
	FileWrite(OutPutFile,a)
	;Display(2, "HKEY_LOCAL_MACHINE subkey number %x%", a)
	if a=="" then break
next 

FileClose(OutPutFile)

Article ID:   W16697
File Created: 2005:02:18:12:21:54
Last Updated: 2005:02:18:12:21:54