Using a pipe for delimiting reg key values?

Greetings,

I am trying to grab the publisher data for installed applications on windows. The following relevance seems to work but I would like to use a pipe delimiter instead of a comma. Any ideas? Thanks!

(values “Publisher” of it, values “DisplayName” of it, values “DisplayVersion” of it) of keys of keys “HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall” of (x32 registries; x64 registries)

`

So I did some searching and found something that might be what you’d like

(item 0 of it & “|” & item 1 of it & “|” & item 2 of it) of (values “Publisher” of it as string, values “DisplayName” of it as string, values “DisplayVersion” of it as string ) of keys of keys “HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall” of (x32 registries; x64 registries)

Found the way to do it here in the forum

Brgds
Geir

4 Likes

@Geimor Simple, i dig it. Thanks!