Socket
Book a DemoInstallSign in
Socket

aad-join-info

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aad-join-info

0.1.2
Source
Cargo
Version published
Maintainers
1
Created
Source

AAD Join Info

This rust crate enables someone to get the Azure Active Directory join information for a Windows computer.

Usage

To use aad-join-info, first add this to your Cargo.toml:

[dependencies]
aad-join-info = "0.1"
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    if let Some(aad_info) = aad_join_info::get_aad_join_info() {
        println!("Device ID: {}", aad_info.device_id);
        println!("Tenant ID: {}", aad_info.tenant_id);
        println!("Tenant Name: {}", aad_info.tenant_name);
        println!("Idp Domain: {}", aad_info.idp_domain);
        println!("Join Type: {:?}", aad_info.join_type);
        println!("Join User Email: {}", aad_info.join_user_email);
        println!("MDM Enrollment URL: {}", aad_info.mdm_enrollment_url);
        println!("MDM Terms of Use URL: {}", aad_info.mdm_terms_of_use_url);
        println!("MDM Compliance URL: {:?}", aad_info.mdm_compliance_url);
        println!("User Setting Sync URL: {}", aad_info.user_setting_sync_url);
        println!("User Info: {:?}", aad_info.user_info);
    } else {
        println!("No AAD Join Information found.");
    }

    Ok(())
}

FAQs

Package last updated on 22 Jul 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.