Page 7 of 7

Re: Registry Module (windows only)

Posted: Sat Dec 21, 2024 10:30 am
by AZJIO
Should there be some kind of warning if someone on Linux wants to use this?

Re: Registry Module (windows only)

Posted: Sat Dec 21, 2024 11:50 am
by ChrisR
Yes, a compiler error :wink:

Re: Registry Module (windows only)

Posted: Sat Dec 21, 2024 12:30 pm
by AZJIO
ChrisR wrote: Sat Dec 21, 2024 11:50 am Yes, a compiler error :wink:
A compiler error may indicate an incorrectly written function.
What if the function is from PureLibraries?

Re: Registry Module (windows only)

Posted: Sat Dec 21, 2024 12:53 pm
by ChrisR
I was joking but it's a good question for libraries that are not cross-platform

Re: Registry Module (windows only)

Posted: Sat Dec 21, 2024 6:28 pm
by Randy Walker
AZJIO wrote: Sat Dec 21, 2024 10:30 am Should there be some kind of warning if someone on Linux wants to use this?
Probably not since the subject line clearly shows (windows only). which probably also excludes MAC as well.

Re: Registry Module (windows only)

Posted: Sat Dec 21, 2024 6:33 pm
by Randy Walker
ChrisR wrote: Sat Dec 21, 2024 11:50 am Yes, a compiler error :wink:
Ooops. :oops: Looks like someone didn't read the subject line and tried it anyway. Subject lines can be so tricky that way. :wink:

Re: Registry Module (windows only)

Posted: Sat Dec 21, 2024 6:51 pm
by AZJIO
Randy Walker wrote: Sat Dec 21, 2024 6:28 pm Probably not since the subject line clearly shows (windows only). which probably also excludes MAC as well.
Even if (windows only) were not specified, everyone already knows that the registry exists only in Windows. When the library is compiled, it will not know which forum thread it was compiled from. To do this, the library must have some kind of flag to warn the user that this library is not intended for this OS.
When compiled, all debugger messages will be removed, so embedding a debugger message will not work.
Randy Walker wrote: Sat Dec 21, 2024 6:33 pm Ooops. :oops: Looks like someone didn't read the subject line and tried it anyway. Subject lines can be so tricky that way. :wink:
There are no people here who will try the registry functions in Linux

Re: Registry Module (windows only)

Posted: Mon Feb 24, 2025 3:28 am
by Randy Walker
olmak wrote: Thu Aug 11, 2016 4:37 am Hello at all
I'm trying to get a list of installed programs, with some parameters.
Can anyone help me?
I think this collects all installed programs using the native Windows "winget" command:

Code: Select all

Exe = RunProgram("powershell.exe","winget list","",#PB_Program_Hide|#PB_Program_Open|#PB_Program_Read|#PB_Program_Error)
Debug "Please wait for info to be collected"
If Exe
    While ProgramRunning(Exe)
      If AvailableProgramOutput(Exe)
        Output$=ReadProgramString(Exe)
        name$ = StringField(Output$,1,"  ")
        Debug Output$
        ;Debug name$
      EndIf
    Wend
EndIf
Sorry, I don't see any parameters.