We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I tell if a reg key is a REG_LINK?
I apologize if I’m missing something simple.
Thanks
The text was updated successfully, but these errors were encountered:
@theflakes, you should be able to use key.get_raw_value("key name") -- it returns an io::Result<RegValue>, and RegValue::vtype contains an enum that identifies the type. You can match that against RegType::REG_LINK :)
key.get_raw_value("key name")
io::Result<RegValue>
RegValue::vtype
RegType::REG_LINK
Sorry, something went wrong.
It's not so simple unfortunately https://stackoverflow.com/questions/53009194/checking-if-registry-key-is-link-to-or-copy-of-another-one
No branches or pull requests
How do I tell if a reg key is a REG_LINK?
I apologize if I’m missing something simple.
Thanks
The text was updated successfully, but these errors were encountered: