Skip to main content

JumpCloud: Notes

JumpCloud: Directory as a Service

https://jumpcloud.com/

    JumpCloud Directory
  • User Management
  • MFA
  • Single Sign-On
  • Cloud LDAP
  • Cloud RADIUS
  • Device Management
  • MDM
  • Server Access
  • Cloud Directory
  • Insights
  • API Services
    • Solutions
  • Build a Cloud Directory
  • Remote Work
  • Replace AD
  • Zero Trust Security
  • Deploy agent

    Manually

    Puppet

    Chef

    Powershell install agent

    cd $env:temp | Invoke-Expression; Invoke-RestMethod -Method Get -URI https://raw.githubusercontent.com/TheJumpCloud/support/master/scripts/windows/InstallWindowsAgent.ps1 -OutFile InstallWindowsAgent.ps1 | Invoke-Expression; ./InstallWindowsAgent.ps1 -JumpCloudConnectKey "ef0baxxxf5e0afaa32cxxbxxxxa7ac4dxxxxxxxx"
    

    The JumpCloud PowerShell Module is a set of PowerShell commands that allow JumpCloud administrators to interact with their JumpCloud directory.

    # Run Powershell as Administrator
    PS C:\Users\tuyen> Install-Module JumpCloud -Scope CurrentUser
    
    Untrusted repository
    You are installing the modules from an untrusted repository. If you trust this repository, change its
    InstallationPolicy value by running the Set-PSRepository cmdlet. Are you sure you want to install the modules from
    'PSGallery'?
    [Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "N"): y
    PS C:\Users\tuyen> Get-command -Module JumpCloud
    CommandType     Name                                               Version    Source
    -----------     ----                                               -------    ------
    Alias           New-JCAssociation                                  2.9.1      JumpCloud
    Function        Add-JCAssociation                                  2.9.1      JumpCloud
    Function        Add-JCCommandTarget                                2.9.1      JumpCloud
    ...
    
    PS C:\Users\tuyen> Update-JCModule
    STATUS:
        + The JumpCloud PowerShell module is up to date.
    INSTALLED VERSION(S):
        + 2.9.1 (January 09, 2024)
    Learn more about the JumpCloud PowerShell module here:
        + https://github.com/TheJumpCloud/support/wiki
    False
    PS C:\Users\tuyen>
    

    Courses about JumpCloud

    >>> JumpCloud University

    Popular posts from this blog

    Check and install php7.0-mbstring extention on Ubuntu 16.04 and Microsoft Windows

    While learning Facebook SDK for PHP I overlooked one of system requirements preventing my code from running on my host. That is The mbstring extension. Facebook SDK for PHP's system requirements Check if mbstring is enabled root@ubuntu001:~# php -a Interactive mode enabled php > echo extension_loaded('mbstring'); php >exit root@ubuntu001:~# apt-cache search php7 | grep mbstring php7.0-mbstring - MBSTRING module for PHP root@ubuntu001:~# Install php7.0-mbstring root@ubuntu001:~# apt-get install php7.0-mbstring Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required:   fontconfig-config fonts-dejavu-core libfontconfig1 libgd3 libjbig0   libjpeg-turbo8 libjpeg8 libmcrypt4 libtiff5 libvpx3 libxpm4 Use 'apt autoremove' to remove them. The following additional packages will be installed:   libapache2-mod-php7.0 php7.0-cli ph...

    Demistify Buffer Overflow Vulnerability

    Collection of articles, blog posts, lectures, tutorials... about Buffer Overflow Vulnerability.

    Linux command: lspci

    Linux command: lspci - list pci devices tuyendq@ubuntu001:~$ man lspci NAME        lspci - list all PCI devices SYNOPSIS        lspci [options] DESCRIPTION        lspci is a utility for displaying information about PCI buses in the system and devices connected to them.        By  default,  it  shows a brief list of devices. Use the options described below to request either a more verbose output or output intended for parsing by        other programs.        If you are going to report bugs in PCI device drivers or in lspci itself, please include output of "lspci -vvx" or even better  "lspci  -vvxxx"  (however,        see below for possible caveats).        Some  parts of the output, especially in the highly verbose modes, are probably intelligible only to experienced PCI hac...