-
-
Notifications
You must be signed in to change notification settings - Fork 617
-
Hi there
I am doing some external automation of settings files in a portable version here
... \Programs\FlowSearch\app-1.18.0\UserData
Is there a way to query the version with a variable or something from the registry in windows so I don't have to manually update paths on each version?
Thanks
A
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment 1 reply
-
Hello, you can get the version using the below PS command
(Get-Item ".\Flow.Launcher.dll").VersionInfo
Beta Was this translation helpful? Give feedback.
All reactions
1 reply
-
Also it works on exe as well and there is a Flow.Launcher.exe at the top-level directory which you can query.
(Get-Item ".\Flow.Launcher.exe").VersionInfo
Beta Was this translation helpful? Give feedback.
All reactions
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment