Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rs/src/management/policy_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub fn get_policy_header_value() -> io::Result<Option<String>> {
use winreg::enums::*;
use winreg::RegKey;

pub const REGISTRY_KEY_PATH: &str = r"Software\Policies\Microsoft\Tunnels";
pub const REGISTRY_KEY_PATH: &str = r"Software\Policies\Microsoft\DevTunnels";

let hklm = RegKey::predef(HKEY_LOCAL_MACHINE);
let sub_key = match hklm.open_subkey(REGISTRY_KEY_PATH) {
Expand Down