• Scripts

    Bienvenue sur la page consacrée aux Scripts.

    Vous trouverez :

    Powershell (Windows)
    Liste des Verbes Powershell 
    Commandes utiles PowerShell
    Toutes les commandes PowerShell
    PowerShell et Active Directory 
    Mini-Script : Créer un utilisateur Active Directory  
    Mini-Script : Supprimer un utilisateur Active Directory
    Supprimer tous les utilisateurs d'un AD en PowerShell (!)
    Script PowerShell-CSV : Créer tous les utilisateurs à partir d'un fichier .csv  
    - Script PowerShell-CSV : Créer tous les utilisateurs et les OU en même temps, à partir d'un fichier .csv
    - Obtenir la taille de tous les éléments d'un dossier automatiquement 
    Transformer vos scripts avec Windows Forms ! Avoir un affichage graphique ! 
    PS2EXE : Convertir votre script powershell en .exe 
    Installer Mariadb 10.11.5 sur Windows Server 2022 et le gérer en CLI, comme sur Linux/FreeBSD 
    Script et .exe de Déploiement automatique de GLPI 10.0.9 sur IIS 
    Script et .exe de Déploiement automatique de Wordpress 6.3.1 sur IIS 
    Script et .exe de Déploiement automatique de Concrete5 9.3.1 sur IIS 
    Script de Déploiement automatique de DNN (DotNetNuke) sur IIS

    Bash (Linux)
    Script simple en BASH sur Linux 
    Présentation de BASH 
    - Créer des utilisateurs à partir d'un fichier .csv
    Configurer un Bastion avec IPtables 
    Installation GLPI 
    Script de backup pour base SQL 
    Configurer un site internet sur Apache2 (Debian 11) 
    Configurer un site internet sur Nginx (Debian 11) 
    Exécuter un Script à distance 
    Rsync
    - Triez le contenu d'un fichier par ordre alphabétique ou numérique avec sort
    - Exécuter un script en arrière-plan avec nohup
    - Rendre l'exécution d'un choix utilisateur insensible à la casse (shopt)

    Shell (BSD)
    Configurer un site internet en http sur Nginx (FreeBSD 13.0 STABLE)
    Configurer un site internet en http sur Apache24 (FreeBSD 13.0 STABLE ou HardenedBSD) 
    Configurer un site internet en https sur apache24 (SCRIPT)
    Installer GLPI 
    Installer Wordpress 
    Script en BASH sur FreeBSD 
    Obtenir le nom du fichier et le chemin du répertoire parent à partir d'un chemin absolu
    - Remplacer une chaîne de caractères dans un fichier avec sed 
    Faire ouvrir un terminal et exécuter une commande depuis un script sous XFCE
    - Triez le contenu d'un fichier par ordre alphabétique ou numérique avec sort
    - Exécuter un script en arrière-plan avec nohup

  • Vous avez écrit un joli script avec Windows Forms (ou pas) et vous vous agacez de voir une fenêtre powershell s'ouvrir en même temps que vos fenêtres Windows Forms lors de l'exécution ?
    Rien de plus facile ! PS2EXE !
    Convertissez votre script en .exe !


    1) Installer PS2EXE :
    - Ouvrez PowerShell en mode Administrateur, puis tappez :

    Install-Module ps2exe

    - Acceptez pour tout ce qui vous sera demandé (de toute façon, vous n'avez pas le choix !)

    2) A présent, vous pouvez ouvrir Win-PS2EXE

    Win-PS2EXE

    3) Choisissez votre script powershell (.ps1) à convertir, et choisissez un nom pour l'export en .exe
    Enfin, si vous avez utilisé Windows Forms pour votre script, je vous conseille de cocher les mêmes cases que moi, autrement, vous allez avoir quelques surprises...

    PS2EXE : Convertir votre script powershell en .exe

     

    J'attire tout de même votre attention sur un point crucial : le code powershell d'un programme est très facilement lisible dans un .exe ..
    (à méditer... avant de switcher vers une formation dev !)


    votre commentaire
  • Voilà un outil ultra basique que j'utilise en permanence : transformer mes scripts pour avoir un affichage graphique un peu plus sympa !

    Les 2 exemples sont des extraits de mon script de réplication de labos Hyper-V :

    Exemple 1 :
    1) Je veux poser une question simple à l'utilisateur.
    2) S'il répond non, le script lui affiche une nouvelle fenêtre et lui propose de remédier à la situation avant de recommencer puis quitte

    - D'abord, on indique la ligne suivant en haut de chaque script qui contiendra de l'affichage Windows Forms :

    Add-Type -AssemblyName System.Windows.Forms

    - Le code des fenêtres :

    # (1) Avez-vous placé les VM non compressées dans C:\LABOVM ?
    $response1 = [System.Windows.Forms.MessageBox]::Show('Avez-vous placé les VM non compressées dans C:\LABOVM ?', 'Vérification des pré-requis', [System.Windows.Forms.MessageBoxButtons]::YesNo)
    if ($response1 -eq 'No') {
        # (4) Veuillez procéder à l'action demandée puis ré-exécuter ce script
        [System.Windows.Forms.MessageBox]::Show('Veuillez procéder à l`action demandée puis ré-exécuter ce script')
        exit
    }

    Voici le résultat lors de l'exécution :

    Transformer vos scripts avec Windows Forms ! Avoir un affichage graphique !

    Et si je clique sur Oui (ou tappe ENTRER) :

    Transformer vos scripts avec Windows Forms ! Avoir un affichage graphique !

     


    Exemple 2 :
    1) je veux créer un formulaire qui demande à l'utilisateur d'entrer le nom d'un labo
    (là, le code est déjà bien plus dégueulasse...)


    Voici le code :

    # Veuillez nommer le LABO (exemple : TP06)
    $form8 = New-Object System.Windows.Forms.Form
    $form8.Text = 'Nom du LABO'
    $form8.StartPosition = [System.Windows.Forms.FormStartPosition]::CenterScreen  # Cette ligne centre la fenêtre
    $form8.AutoSize = $true
    $form8.AutoSizeMode = [System.Windows.Forms.AutoSizeMode]::GrowAndShrink
    $textBox8 = New-Object System.Windows.Forms.TextBox
    $textBox8.Location = New-Object System.Drawing.Point(10, 10)
    $textBox8.Size = New-Object System.Drawing.Size(200, 20)
    $form8.Controls.Add($textBox8)
    $buttonOk = New-Object System.Windows.Forms.Button
    $buttonOk.Text = 'OK'
    $buttonOk.Location = New-Object System.Drawing.Point(220, 10)
    $buttonOk.Size = New-Object System.Drawing.Size(50, 20)
    $buttonOk.DialogResult = [System.Windows.Forms.DialogResult]::OK
    $form8.Controls.Add($buttonOk)
    $form8.AcceptButton = $buttonOk
    $form8.ShowDialog()
    $LABNAME = $textBox8.Text

    Voici le résultat lors de l'exécution :

    Transformer vos scripts avec Windows Forms ! Avoir un affichage graphique !

     

    Pour aller plus loin, regardez le mini-article pour convertir votre joli script graphique en .exe !


    votre commentaire
  • Dans un script, lorsque ce dernier demande à l'utilisateur de choisir et d'entrer une lettre pour déclencher une action, il peut parfois être très utile de rendre la réponse de l'utilisateur insensible à la casse (majuscules/minuscules).

    Exemple, l'utilisateur doit rentrer la lettre "O" (pour oui).. S'il entre "o", ça ne fonctionne pas, puisque les systèmes Unix sont sensibles à la casse.

    La commande "shopt" est très utile pour régler le problème :

    shopt -s nocasematch # Activer la correspondance sans tenir compte de la casse
    
    read -p "Voulez-vous continuer ? (O/N) : " reponse
    
    case $reponse in
        O) 
            echo "Vous avez choisi Oui."
            ;;
        N)
            echo "Vous avez choisi Non."
            ;;
        *)
            echo "Choix invalide."
            ;;
    esac
    
    shopt -u nocasematch # Désactiver la correspondance sans tenir compte de la casse

    votre commentaire
  • Voici un petit script amusant pour obtenir la taille de tous les éléments se trouvant dans le même répertoire que le script.
    Il suffit de placer le script dans un dossier dont on veut avoir la taille précise de chaque élément s'y trouvant, on l'exécute, un fichier de bilan apparaît dans ce dossier, avec le noms des éléments et leur taille en Ko, Mo, Go, du plus lourd au plus léger.

    clear
    Write-Output "####################################################################################" > $PSScriptRoot\bilan-tailles.txt
    Write-Output "# Taille de chaque élément présent dans le dossier où se situe le script #" >> $PSScriptRoot\bilan-tailles.txt
    Write-Output "####################################################################################" >> $PSScriptRoot\bilan-tailles.txt
    Write-Output " "

    Get-ChildItem $PSScriptRoot | Sort-Object Length -Descending | Select-Object FullName, @{name='Size';expression={ switch ($_.length) { { $_ -gt 1gb } { '{0:N2}GB' -f ($_ / 1gb); break } { $_ -gt 1mb } { '{0:N2}MB' -f ($_ / 1mb); break } { $_ -gt 1kb } { '{0:N2}KB' -f ($_ / 1Kb); break } default { '{0}B ' -f $_ } } }} >> $PSScriptRoot\bilan-tailles.txt

     

    Voici ce que donne le fichier bilan-tailles.txt généré par l'exécution du script :

    ####################################################################################
    # Taille de chaque élément présent dans le dossier où se situe le script #
    ####################################################################################

    FullName Size
    -------- ----
    C:\Users\Administrateur\Desktop\Taille\global-DEB4.sh 282,74KB
    C:\Users\Administrateur\Desktop\Taille\taille-de-tous-elements-dun-dossier.ps1 796B
    C:\Users\Administrateur\Desktop\Taille\bilan-tailles.txt 518B
    C:\Users\Administrateur\Desktop\Taille\setup-02954-Le_Livre_de_Lulu-PCDOSBox.exe 0B
    C:\Users\Administrateur\Desktop\Taille\COMMANDES 1B
    C:\Users\Administrateur\Desktop\Taille\CV 1B


    Le script s'appelle "taille-de-tous-elements-dun-dossier.ps1"


    votre commentaire
  • Après les scripts de création des utilisateurs, voici celui qui s'occupe de tout (création des unités d'organisation (OU) ET des utilisateurs)

    Bien entendu, il s'agît d'un mini-script basique (qui ne vérifie rien du tout !)
    A vous de l'améliorer ! Et il ne manquera plus que les GG et les DL !

    On part d'un fichier CSV de type :

    PRENOM;NOM;DEPARTEMENT
    Henri;dubas;DIRECTION
    pierre;abernaty;RH
    josé;lemoine;R&D
    andréa;claire;MARKETING
    marion;games;ACCUEIL
    Julie;lecointre;R&D
    Anthony;dilly;SAV
    Amaury;De villenave;RH
    Julie;mathieu;MARKETING
    mathieu;saintclair;MARKETING

    Voici le script :

    # Comme toujours, on commence par importer le fichier csv
    $contenu_csv = Import-Csv -Path "C:\Users\Administrateur\Desktop\liste-collaborateurs.csv" -Delimiter ";"

    # Puis, on récupère les informations de chaque ligne du fichier .csv et on traîte !
    foreach ($ligne in $contenu_csv)
    {
    # Récupération du nom, prénom et département de chaque utilisateur
    $nom=$ligne.NOM
    $prenom=$ligne.PRENOM
    $OU=$ligne.DEPARTEMENT

    # Créer l'OU correspondante à l'utilisateur avant de créer l'utilisateur.
    # Vous noterez la présence de -ErrorAction SilentlyContinue, qui sans cela, arrêterait l'exécution du script dès qu'il tombe sur une OU déjà existante
    New-ADOrganizationalUnit -Name $OU -Path "OU=ENTREPRISE,DC=COMPUSET,DC=LOCAL" -ProtectedFromAccidentalDeletion $false -ErrorAction SilentlyContinue

    # La création de l'utilisateur :
    New-ADUser -Name "$($prenom) $($nom)" -Surname "$($nom)" -GivenName "$($prenom)" -SamAccountName "$($prenom[0]).$($nom)" -UserPrincipalName "$($prenom).$($nom)@COMPUSET.LOCAL" -path "OU=$($OU),OU=ENTREPRISE,DC=COMPUSET,DC=LOCAL" -AccountPassword(ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force) -Enabled $true -ChangePasswordAtLogon $true
    }


    Vous noterez que je place toutes les OU qui seront créées à l'intérieur d'une OU nommée "ENTREPRISE", pour plus de lisibilité sous le domaine. Cette OU "ENTREPRISE" peut évidemment être créée automatiquement...
    Libre à vous de l'ajouter au script ou de le faire manuellement avant !

     

     


    votre commentaire
  • En PowerShell, l'opération est "simple", puisqu'une commande existe (Import-Csv)
    En Bash, ce n'est pas plus compliqué ! Voici comment faire !

    Pour ce script ultra basique, nous allons créer tous les utilisateurs linux à partir d'un fichier CSV (nommé fichier.csv pour l'exemple) comme ci-dessous :

    sheldon,AbzGhjeZl,/home/sheldon
    artigue,gefok33gPl,/home/artigue
    pirate,Eerinpin34,/home/pirate
    antoine,Zbpinr254g,/home/drog22
    radjish,BQINDzpinfbin3,/home/radd


    A gauche, nous avons le prénom de l'utilisateur à créer, au milieu son mot de passe, à droite le chemin de son répertoire personnel..
    Notez que j'ai volontairement changé le nom du répertoire personnel pour les 2 derniers (bah oui, on peut !)

    Comme il s'agît d'un fichier .csv, j'ai laissé la virgule en tant que délimiteur par défaut, mais rien ne vous empêche de mettre le caractère de votre choix dans le fichier csv !
    Vous veillerez simplement à changer le caractère indiqué dans la variable IFS du script qui suit

    Vous remarquez qu'à la différence de PowerShell, la première ligne n'est pas réservée au nommage des colonnes (que vous pouvez directement récupérer ensuite grâce aux fonctions).
    En Bash, on entre directement les données !


    Voici comment se composera donc ce script !

    #!/bin/bash

    clear

    while IFS="," read -r username passwd homepath
    do
    useradd -d "$homepath" -m -p "$passwd" "$username"

    done < <(cat /chemin/fichier.csv)


    Nous faisons une simple boucle, en prenant soin d'indiquer dans la variable IFS le caractère délimiteur de chaque colonne.
    Puis nous faisons une lecture récursive de toutes les données, ligne par ligne, en déclarant les variables (username passwd et homepath) qui contiendront la valeur de chaque donnée de chaque colonne.

    Enfin, à chaque fin de ligne, les 3 variables étant remplies des informations nécessaires pour créer l'utilisateur, nous créons l'utilisateur avec la commande useradd !

    Attention, l'espace entre les 2 < à la fin est volontaire !!

    Pas bien compliqué hein ?

     

     


    votre commentaire
  • La commande "sort" est très utile pour réorganiser un fichier texte.

    Pour réorganiser un fichier par ordre alphabétique :

    sort fichier

    La commande va afficher le contenu du fichier, réorganisé de A à Z
    Pour inverser cet ordre :

    sort -r fichier

     

    Pour réorganiser un fichier rempli de valeurs numériques (genre des listes d'IP), la commande précédente va réorganiser en fonction du premier caractère. Nous aurons 21.xxx et 213.xxx qui se suivront...
    Pour réorganiser de façon propre lorsqu'il s'agît de nombres :

    sort -g fichier


    Admettons enfin que votre fichier texte comporte un nombre, un espace et une chaîne de caractère.
    (exemple :)

    213 john Davis
    643 pierre Mark
    790 antoine Plumel
    112 marcel Duchamps

    Pour demander un rangement dans l'ordre alphabétique selon les prénoms :

    sort -k 2 fichier

    l'option "k" étant le séparateur (l'espace), le nombre 2 le numéro du champs - celui des prénoms donc !).
    Pour demander un rangement dans l'ordre alphabétique selon les noms cette fois :

    sort -k 3 fichier


    Enfin, pour vérifier si un fichier est correctement réorganisé :

    check -c fichier


    Enfin, pour enregistrer le fruit de votre réorganisation, n'oubliez pas de rediriger la sortie vers un second fichier :

    sort -k 2 fichier > fichier2

    votre commentaire
  • sur XFCE :

    xfce4-terminal --command="vi /tmp/exemple.txt"

    Le résultat est l'affichage d'un terminal avec le contenu du fichier exemple.txt


    votre commentaire
  • Le sujet de sed est très vaste !!
    En plus de cela, la syntaxe est assez différente entre BASH et SH...
    Ici, on parle SH !
    Je ne fais d'ailleurs pas d'article pour sed en BASH, il y a de nombreuses bibles sur le net !


    Je vais rappeler les cas de figure qui me semblent les plus basiques et les plus importants quand on commence à faire du script en SH !!
    En effet, je me suis décidé à écrire ce mini-article car la syntaxe correcte de sed en SH est particulièrement difficile à trouver sur internet.
    Vous vous rendrez vite compte que les 3/4 des trucs du net concernent la commande sed en BASH, et que bien souvent, même en BASH, ça ne fonctionne pas/plus !!


    Remplacer une chaîne de caractères spécifique dans un fichier.
    Vous cherchez "perdu" et vous voulez le remplacer par "trouvé" (c'est un exemple bien sûr !!) dans un fichier texte /tmp/exemple.txt

    sed -i "" "s/perdu/trouvé/" /tmp/exemple.txt

    Attention, la commande va remplacer automatiquement CHAQUE ITERATION de "perdu" par "trouvé" !
    Autrement dit, si le mot "perdu" se trouve à plusieurs endroits dans le fichier, la commande va remplacer "perdu" par "trouvé" à chaque fois !
    A manier avec précaution donc !

    Notez qu'en BASH, -i n'est pas suivi des double-guillemets ""... en SH si !

    Que faire si ce que vous souhaitez remplacer comporte des caractères spéciaux ?
    genre "/" (il y en a plein d'autres ! à vous de les découvrir !!)
    Vous devez utiliser l'anti-slash devant chacun de ces caractères.
    Exemple, je veux remplacer l'URL : http://perdu.com par http://jaitrouve.fr du fichier /tmp/exemple.txt

    sed -i "" "s/http:\/\/perdu.com/http:\/\/jaitrouve.fr/" /tmp/exemple.txt

    Tout de suite, ça commence à devenir plus chiant hein ?
    Si vous commencez, dîtes-vous que vous n'êtes qu'au début... lorsqu'il y aura des wildcards, ce sera beaucoup plus marrant !

    Remplacer la ligne numéro 23 du fichier exemple.txt par une chaîne de caractères (par autre chose donc !).
    Là, c'est clairement une syntaxe précise de SH ! Attention !

    sed -i "" '23 s/^.*$/nimporte nawak/' /tmp/exemple.txt


    Ajouter plusieurs lignes de chaînes de caractères à un emplacement précis d'un fichier
    (/tmp/exemple.txt).
    Comment aller à la ligne donc ? ... tout simplement en ajoutant \n lorsque vous voulez aller à la ligne !
    Pour procéder :
    - soit, repérer la ligne à partir de laquelle vous souhaitez ou remplacer/inscrire vos lignes (genre la ligne 42. Attention, s'il y a du texte sur la ligne en question, ça va tout remplacer !).

    (je veux obtenir ceci à partir de la ligne 42 :)
    un
    mot
    par
    ligne

    sed -i "" '42 s/^.*$/un\nmot\npar\nligne/' /tmp/exemple.txt

    - soit, repérer la chaîne de caractères précise que vous souhaitez remplacer par vos lignes.
    (Genre, remplacer la chaîne "boutafoulirumatismal" par ceci :)
    je pas
    avoir
    compris

    sed -i "" 's/boutafoulirumatismal/je pas\navoir\ncompris/' /tmp/exemple.txt


    Supprimer la ligne 23 du fichier /tmp/exemple.txt

    sed -i "" '23d' /tmp/exemple.txt


    Supprimer de la ligne 23 à la ligne 30 inclue du fichier /tmp/exemple.txt

    sed -i "" '23,30d' /tmp/exemple.txt


    Voilà, c'est un article minimaliste, mais vous l'aurez compris, on peut déjà quasiemment tout faire avec ça !

     


    votre commentaire
  • Vous disposez du chemin absolu vers un fichier : /usr/home/USER/truc/bidule/muche/fichier.txt
    Comment extraire de ce chemin le nom "fichier.txt" et le chemin du répertoire parent ?

    Entrez le chemin absolu vers le fichier dans une variable :

    filepath="/usr/home/USER/truc/bidule/muche/fichier.txt"


    Nom du fichier, isolé :

    filename=$(basenme "$filepath")

    si vous faîtes un echo $filename, il vous renvoie seulement le nom "fichier.txt"

    Chemin absolu vers le dossier parent du fichier :

    path=${filepath%/*}

    si vous faîtes un echo $path, il vous renvoie seulement /usr/home/USER/truc/bidule/muche


    votre commentaire
  • Pour trouver l'adresse de la bibliothèque :

    which bash
    /bin/bash


    Ecrire un mini-script, avec plusieurs exemples

     

    nano script.sh
    #!/bin/bash
    
    # je veux que le script affiche "ça marche" lors de son exécution.
    echo "ça marche"
    
    # je veux que le script affiche le contenu d'une variable que je vais définir (roger, ici) lors de son exécution
    # D'abord, je définis la variable roger
    roger="marcel"
    # je demande ensuite à afficher le contenu de la variable grâce au $
    echo $roger
    
    # je veux que le script me demande d'entrer du texte, je veux ensuite que le script me l'affiche
    # D'abord, je demande au script de me demander d'écrire !
    read x
    # je demande ensuite que le script m'affiche ce que j'ai entré, au milieu d'une petite phrase
    echo "l'utilisateur a écrit : $x"
    
    # je veux que le script affiche la date. Pour cela, je veux utiliser la commande date qui existe.
    # .. Attention aux paranthèses, date est une commande !
    echo "Nous sommes le $(date)"
    
    
    
    

    Lancer le script

    ./script.sh
    ça marche
    marcel
    JE RENTRE UNE PHRASE #le script me demande d'entrer une phrase
    l'utilisateur a écrit : JE RENTRE UNE PHRASE #il me l'affiche
    Nous sommes le Mon Mar 21 14:21:19 CET 2022


    votre commentaire
  • 1er Script :

    $nom = read-host "Entrez l'identifiant de l'utilisateur à supprimer"
    ##### Rechercher un utilisateur dans l'AD
    $listeDesUsers = Get-ADUser -Filter "name -like '*$nom*'"
    $compteur=0
    foreach ($user in $listeDesUsers)
    {
         if($compteur -ne 0)
              {
                   write-host "L'utilisateur $($user.Surname) a comme identifiant $($user.UserPrincipalName)"
              }
         $compteur++
    }
    
    $id = read-host "Entrez l'identifiant que vous souhaitez supprimer"
    Remove-ADUser -Identity $listeDesUsers[$id]

     

    2nd Script :

    $nom = read-host "Entrez l'identifiant de l'utilisatuer à supprimer"
    
    #####Rechercher un utilisateur dans l'AD
    $collection=Get-ADUser -Filter "name -like '*$nom*'"
    $compteur=1
    
    foreach ($item in $collection)
    {
         $item.numero_d_utilisateur_dans_la_liste=$compteur
         $compteur++
    }
    $collection | Format-Table numero_d_utilisateur_dans_la_liste,name,UserPrincipalName,DistinguishedName -AutoSize
    $choix=read-host "Quel est votre choix ?"
    Remove-ADUser -Identity $collection[$choix-1].UserPrincipalName

     


    votre commentaire
  • Je suis sur le poste A, je veux pouvoir exécuter un script présent sur le poste B

    Je n'oublie pas de générer une clef SSH sur A et de partager la clef publique à B, sans passphrase, dans le cas où je voudrais automatiser la tâche.

    Sur A :

    ssh USER-B@IP-B '(/CHEMIN-DU-SCRIPT-SUR-B.sh)'


    Le fait de mettre une commande - ou un script - entre simple guillements (apostrophe), dans une commande ssh, permet d'exécuter une commande à distance.

    Attention, si vous souhaitez exécuter une commande avec une variable, les guillemets simples doivent être remplacés par des doubles (") !

    ssh USER-B@IP-B "ls $cheminBACKUP"

     


    votre commentaire
  • 1er Script simple, sans gestion des doublons :

    Voici le script pour créer automatiquement les utilisateurs dans l'AD en fonction des informations contenues dans le fichier tartempion.csv

    Pour ce 1er script
    , tartempion.csv contient :

    Nom;Prenom;OU
    Versaire;Annie;GESTION
    Peuplu;Jean;GESTION

     

    Le domaine est TSSR.INFO

    Le script :

    # On crée une première variable qui va contenir le fichier .csv
    
    $contenu_csv=Import-Csv -path "C:\Users\Administrateur\Desktop\tartenpion.txt" -Delimiter ";"
    #
    foreach ($ligne in $contenu_csv)
    {
    # On va ensuite envoyer chaque information dans une variable spécifique
    $nom=$ligne.Nom    
    # Pour la ligne suivante, voici un autre exemple pour sélectionner la colonne Prenom.. 
    # la colonne prénom est en 2nde position dans l'index.. [0] : 1ère position, [1] : 2e position
    $prenom=$ligne.Prenom
    $OU=$ligne.OU
    #
    # La commande pour créer :
    New-ADUser -Name "$($prenom) $($nom)" -Surname "$($nom)" -GivenName "$($prenom)" -SamAccountName "$($prenom[0]).$($nom)" -UserPrincipalName "$($prenom).$($nom)@TSSR.INFO" -path "OU=$($OU),OU=ENTREPRISE,DC=TSSR,DC=INFO" -AccountPassword(ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force) -Enabled $true -ChangePasswordAtLogon $true
    }
     
    
    2nd Script, Exemple avec un fichier .csv de plusieurs milliers d'utilisateurs !
    Plusieurs problèmes avec de gros fichiers csv : 
    - les noms complets trop longs (le -SamAccountName fait 20 caractères au max)
    Idée pour résoudre : couper les noms et prénoms et n'inscrire que les 5 premiers caractères de chaque.
    - les homonymes (certaines personnes ont les mêmes noms et prénoms).
    Idée pour résoudre : ajouter le chiffre 2 au nom de l'utilisateur, lors de la rencontre de l'erreur pour compte déjà existant
    
    
    # On crée une première variable qui va contenir le fichier .csv
    $contenu_csv=Import-Csv -path "C:\Users\Administrateur\Desktop\Utilisateurs.csv" -Delimiter ","
    #
    foreach ($ligne in $contenu_csv)
    {
    # On va ensuite envoyer chaque information dans une variable spécifique
    $nom=$($ligne.Nom)    
    # Pour la ligne suivante, voici un autre exemple pour sélectionner la colonne Prenom.. 
    # la colonne prénom est en 2nde position dans l'index.. [0] : 1ère position, [1] : 2e position
    $prenom=$($ligne.Prenom)
    $OU=$($ligne.Service)
    #
    # La commande pour créer :
    try{
        
    New-ADUser -Name "$($prenom[0])$($prenom[1])$($prenom[2])$($prenom[3])$($prenom[4]).$($nom[0])$($nom[1])$($nom[2])$($nom[3])$($nom[4])" -Surname "$($nom)" -GivenName "$($prenom)" -SamAccountName "$($prenom[0])$($prenom[1])$($prenom[2])$($prenom[3])$($prenom[4]).$($nom[0])$($nom[1])$($nom[2])$($nom[3])$($nom[4])" -UserPrincipalName "$($prenom[0])$($prenom[1])$($prenom[2])$($prenom[3])$($prenom[4]).$($nom[0])$($nom[1])$($nom[2])$($nom[3])$($nom[4])@TSSR.INFO" -path "OU=$($OU),OU=ENTREPRISE,DC=TSSR,DC=INFO" -AccountPassword(ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force) -Enabled $true -ChangePasswordAtLogon $true
    }
    
    catch { 
    New-ADUser -Name "$($prenom[0])$($prenom[1])$($prenom[2])$($prenom[3])$($prenom[4])2.$($nom[0])$($nom[1])$($nom[2])$($nom[3])$($nom[4])" -Surname "$($nom)" -GivenName "$($prenom)" -SamAccountName "$($prenom[0])$($prenom[1])$($prenom[2])$($prenom[3])$($prenom[4])2.$($nom[0])$($nom[1])$($nom[2])$($nom[3])$($nom[4])" -UserPrincipalName "$($prenom[0])$($prenom[1])$($prenom[2])$($prenom[3])$($prenom[4])2.$($nom[0])$($nom[1])$($nom[2])$($nom[3])$($nom[4])@TSSR.INFO" -path "OU=$($OU),OU=ENTREPRISE,DC=TSSR,DC=INFO" -AccountPassword(ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force) -Enabled $true -ChangePasswordAtLogon $true
    }
    }

     


    votre commentaire
  • (Le second script est le plus simple !)

    Script No.1 :
    On souhaite créer un utilisateur.

    Le script doit demander le nom complet de l'utilisateur (Prénom Nom)
    - demander le nom seul
    - demander le prénom seul
    - créer un SamAccountName de la forme        première lettre du prénom.nom
    - créer un UserPrincipalName de la forme       prenom.nom
    - demander le chemin où sera placé l'utilisateur (exemple : OU=GESTION,OU=ENTREPRISE,DC=TSSR,DC=INFO).
    Attention, les OU doivent avoir été créé précédemment

    - activer le compte automatiquement
    - faire changer le mot de passe temporaire lors de la première connexion de l'utilisateur

    $nomcomplet=Read-Host "Entrez le nom complet de l'utilisateur"
    $nom=Read-Host "Entrez le nom de l'utilisateur"
    $prenom=Read-Host "Entrez le prénom de l'utilisateur"
    $ADUser=Read-Host "Entrez l'ADUser, OU=...,OU=...,DC=...,DC=...?"
    New-ADUser -Name $nomcomplet -Surname $nom -GivenName $prenom -SamAccountName "$($prenom[0]).$($nom)" -UserPrincipalName "$($prenom).$($nom)" -path "$ADUser" -AccountPassword(ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force) -Enabled $true -ChangePasswordAtLogon $true

     

    Script No.2 :

    On souhaite créer un utilisateur.
    Le script doit demander le nom complet de l'utilisateur (Prénom Nom)
    - demander le prénom seul
    - demander le nom seul
    - demander dans quel service sera l'utilisatueur 
    Attention, les OU doivent avoir été créé précédemment
    - Vérifier si l'utilisateur n'existe pas déjà
    - activer le compte automatiquement

    - faire changer le mot de passe temporaire lors de la première connexion de l'utilisateur

    $prenom=Read-Host "Entrez le prénom de l'utilisateur"
    $nom=Read-Host "Entre le nom de l'utilisateur"
    $name="$($prenom[0])$($nom[0])$($nom[1])$($nom[2])$($nom[3])$($nom[4])"
    $service=Read-Host "Entrez le service dont dépend l'utilisateur"
    $PATH="OU=$($service),OU=ENTREPRISE,DC=JURABOIS,DC=LAN"
    
    $Utilisateur=$(try {Get-ADUser $name} catch {$null})
    if($Utilisateur -ne $Null)
        {
            "L'utilisateur existe déjà dans l'AD"
        }
    else
        {
            New-ADUser -Name "$($name)" -Surname "$($nom)" -GivenName "$($prenom)" -SamAccountName "$($name)" -UserPrincipalName "$($name)" -path "$($PATH)" -AccountPassword(ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force) -Enabled $true -ChangePasswordAtLogon $true
            Add-ADGroupMember -Identity "CN=GG-$($service),OU=$($service),OU=ENTREPRISE,DC=JURABOIS,DC=LAN" -Members "$($name)"
        }




    votre commentaire
  • Installer le rôle AD DS :
    Add-WindowsFeature AD-Domain-Services

    Créer une nouvelle forêt (TSSR.INFO pour l'exemple)
    Install-ADDSForest -DomainName TSSR.INFO -InstallDNS

    Créer une OU (Unité d'Organisation) COMPTA :
    New-ADOrganizationalUnit -name "COMPTA"

    Créer un utilisateur avec les caractéristiques suivantes :
    Nom Complet : Micheline Micheu
    Prénom : Micheline
    Nom : Micheu
    Nom du compte : Micheline.Micheu
    Nom principal de l'utilisateur(@domaine) : Micheline.Micheu
    Le domaine dont il dépend : TSSR.INFO
    L'OU dont l'utilisateur dépend : "OU=COMPTA,DC=TSSR,DC=INFO"
    L'utilisateur a un mot de passe, et il devra le changer à sa première connexion
    Le compte utilisateur est actif

    New-ADUser -Name "Micheline Micheu" -GivenName "Micheline" -Surname "Micheu" -SamAccountName "Micheline.Micheu" -UserPrincipalName "Micheline.Micheu@TSSR.INFO" -Path "OU=COMPTA,DC=TSSR,DC=INFO" -AccountPassword(ConvertTo-SecureString "mot-de-passe-de-micheline" -AsPlainText -Force) -ChangePasswordAtLogon $true -Enabled $true


    Supprimer un utilisateur (au cas où)
    Remove-ADUser -Identity "CN=Micheline Micheu,OU=COMPTA,DC=TSSR,DC=INFO"

     

    Vérifier si les scripts ont le droit d'être exécutés
    se positionner dans le répertoire, puis :
    Get-ExecutionPolicy
     -> si le résultat est "Restricted", cela signifie que le script ne peut s'exécuter que dans un domaine de confiance
    ...

    Modifier les droits d'exécution des scripts (pour tout autoriser - non restreint)
    (Lancer Powershell ISE en mode administrateur)
    Set-ExecutionPolicy unrestricted

    A ne pas Faire, cela s'entend !!

    Modifier les droits d'exécution des scripts (autoriser les locaux ET domaines de confiance)
    (Lancer Powershell ISE en mode administrateur)
    Set-ExecutionPolicy remotesigned


    votre commentaire
  • Changer de dossier (se déplacer dans D: par exemple)
    Set-Location D:

    ou
    cd D:

    Si le dossier contient des espaces :
    Set-Location "D:\nom du fichier avec des espaces"

    Savoir où on se trouve (pwd)
    pwd

    ou
    Get-Location

    Créer un dossier (Bidon Bidon)
    New-Item -ItemType Directory -name "Bidon Bidon" -path "C:\endroit où créer le dossier\"

    Supprimer un fichier/dossier (Bidon Bidon)
    Remove-Item "Bidon Bidon"
    Attention, ça supprime TOUT CE QUI S'APPELLE "Bidon Bidon" dans le répertoire.
    Donc s'il y a un dossier ET un fichier qui portent ce nom, ça supprimera les 2 !!

    Créer un fichier texte du nom "essai.rtf" contenant la ligne de texte "Bonjour tout le monde !"
    New-Item -itemType file -name essai.rtf -Value "Bonjour tout le monde !"

    Ajouter du texte dans le fichier essai.rtf, sans supprimer le contenu (ajouter à la suite):
    echo "j'ajoute du texte" >> ./essai.rtf
    ou
    Write-Output "j'ajoute du texte" >> ./essai.rtf

    Déplacer un fichier : 
    Move-Item .\essai.rtf "C:\chemin où déplacer

    Trouver/Obtenir les commandes ayant un lien avec l'ordinateur (computer) :
    Get-Command *-computer

    Obtenir de l'aide sur une commande (Restore-Computer par exemple) :
    Get-Help Restore-Computer

    Obtenir une aide détaillée sur une commande (Restore-Computer, par exemple) :
    Get-Help Restore-Computer -full
    ou
    Get-Help -full Restore-Computer

    Compter les résultats d'une commande (exemple, le nombre de sous-dossiers d'un dossier)
    $nbre_dossiers = (Get-ChildItem -Path "C:\DOSSIER" -Filter * -Recurse -Directory).count

    Télécharger un fichier sur internet (via une URL) :
    Invoke-WebRequest -Uri URL -OutFile C:\CHEMIN-OU-TELECHARGER\NOM-DU-FICHIER.EXTENSION
    ou
    Invoke-RestMethod -Uri URL -OutFile C:\CHEMIN-OU-TELECHARGER\NOM-DU-FICHIER.EXTENSION

    Quelles sont toutes les manipulations possibles sur une variable.
    $MaVariable="Coucou tout le monde"

    $MaVariable | Get-Member

    Afficher la liste des fonctions disponibles d'une variable
    $MaVariable="Coucou tout le monde"
    $MaVariable.

    Demander à l'utilisateur d'entrer quelque chose :
    $entree=Read-Host "bonjour, entrez ce que vous voulez"

    Vérifier si les scripts ont le droit d'être exécutés
    se positionner dans le répertoire, puis :
    Get-ExecutionPolicy
     -> si le résultat est "Restricted", cela signifie que le script ne peut s'exécuter que dans un domaine de confiance
    ...

    Modifier les droits d'exécution des scripts (pour tout autoriser - unrestricted)
    (Lancer Powershell ISE en mode administrateur)
    Set-ExecutionPolicy unrestricted

    Modifier les droits d'exécution des scripts (autoriser les locaux ET domaines de confiance)
    (Lancer Powershell ISE en mode administrateur)
    Set-ExecutionPolicy remotesigned


    votre commentaire
  • Function A:    
    Cmdlet Add-ADCentralAccessPolicyMember 1.0.1.0 ActiveDirectory
    Cmdlet Add-ADComputerServiceAccount 1.0.1.0 ActiveDirectory
    Cmdlet Add-ADDomainControllerPasswordReplicationPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Add-ADFineGrainedPasswordPolicySubject 1.0.1.0 ActiveDirectory
    Cmdlet Add-ADGroupMember 1.0.1.0 ActiveDirectory
    Cmdlet Add-ADPrincipalGroupMembership 1.0.1.0 ActiveDirectory
    Cmdlet Add-ADResourcePropertyListMember 1.0.1.0 ActiveDirectory
    Alias Add-AppPackage 2.0.1.0 Appx
    Alias Add-AppPackageVolume 2.0.1.0 Appx
    Alias Add-AppProvisionedPackage 3.0 Dism
    Cmdlet Add-AppvClientConnectionGroup 1.0.0.0 AppvClient
    Cmdlet Add-AppvClientPackage 1.0.0.0 AppvClient
    Cmdlet Add-AppvPublishingServer 1.0.0.0 AppvClient
    Cmdlet Add-AppxPackage 2.0.1.0 Appx
    Cmdlet Add-AppxProvisionedPackage 3.0 Dism
    Cmdlet Add-AppxVolume 2.0.1.0 Appx
    Function Add-BCDataCacheExtension 1.0.0.0 BranchCache
    Function Add-BitLockerKeyProtector 1.0.0.0 BitLocker
    Cmdlet Add-BitsFile 2.0.0.0 BitsTransfer
    Cmdlet Add-CertificateEnrollmentPolicyServer 1.0.0.0 PKI
    Cmdlet Add-ClusteriSCSITargetServerRole 2.0.0.0 IscsiTarget
    Cmdlet Add-Computer 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Add-Content 3.1.0.0 Microsoft.PowerShell.Management
    Function Add-DhcpServerInDC 2.0.0.0 DhcpServer
    Function Add-DhcpServerSecurityGroup 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4Class 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4ExclusionRange 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4Failover 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4FailoverScope 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4Filter 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4Lease 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4MulticastExclusionRange 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4MulticastScope 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4OptionDefinition 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4Policy 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4PolicyIPRange 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4Reservation 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4Scope 2.0.0.0 DhcpServer
    Function Add-DhcpServerv4Superscope 2.0.0.0 DhcpServer
    Function Add-DhcpServerv6Class 2.0.0.0 DhcpServer
    Function Add-DhcpServerv6ExclusionRange 2.0.0.0 DhcpServer
    Function Add-DhcpServerv6Lease 2.0.0.0 DhcpServer
    Function Add-DhcpServerv6OptionDefinition 2.0.0.0 DhcpServer
    Function Add-DhcpServerv6Reservation 2.0.0.0 DhcpServer
    Function Add-DhcpServerv6Scope 2.0.0.0 DhcpServer
    Function Add-DnsClientNrptRule 1.0.0.0 DnsClient
    Function Add-DnsServerClientSubnet 2.0.0.0 DnsServer
    Function Add-DnsServerConditionalForwarderZone 2.0.0.0 DnsServer
    Function Add-DnsServerDirectoryPartition 2.0.0.0 DnsServer
    Function Add-DnsServerForwarder 2.0.0.0 DnsServer
    Function Add-DnsServerPrimaryZone 2.0.0.0 DnsServer
    Function Add-DnsServerQueryResolutionPolicy 2.0.0.0 DnsServer
    Function Add-DnsServerRecursionScope 2.0.0.0 DnsServer
    Function Add-DnsServerResourceRecord 2.0.0.0 DnsServer
    Function Add-DnsServerResourceRecordA 2.0.0.0 DnsServer
    Function Add-DnsServerResourceRecordAAAA 2.0.0.0 DnsServer
    Function Add-DnsServerResourceRecordCName 2.0.0.0 DnsServer
    Function Add-DnsServerResourceRecordDnsKey 2.0.0.0 DnsServer
    Function Add-DnsServerResourceRecordDS 2.0.0.0 DnsServer
    Function Add-DnsServerResourceRecordMX 2.0.0.0 DnsServer
    Function Add-DnsServerResourceRecordPtr 2.0.0.0 DnsServer
    Function Add-DnsServerResponseRateLimitingExceptionlist 2.0.0.0 DnsServer
    Function Add-DnsServerRootHint 2.0.0.0 DnsServer
    Function Add-DnsServerSecondaryZone 2.0.0.0 DnsServer
    Function Add-DnsServerSigningKey 2.0.0.0 DnsServer
    Function Add-DnsServerStubZone 2.0.0.0 DnsServer
    Function Add-DnsServerTrustAnchor 2.0.0.0 DnsServer
    Function Add-DnsServerVirtualizationInstance 2.0.0.0 DnsServer
    Function Add-DnsServerZoneDelegation 2.0.0.0 DnsServer
    Function Add-DnsServerZoneScope 2.0.0.0 DnsServer
    Function Add-DnsServerZoneTransferPolicy 2.0.0.0 DnsServer
    Function Add-DtcClusterTMMapping 1.0.0.0 MsDtc
    Function Add-EtwTraceProvider 1.0.0.0 EventTracingManagement
    Cmdlet Add-History 3.0.0.0 Microsoft.PowerShell.Core
    Function Add-InitiatorIdToMaskingSet 2.0.0.0 Storage
    Cmdlet Add-IscsiVirtualDiskTargetMapping 2.0.0.0 IscsiTarget
    Cmdlet Add-JobTrigger 1.1.0.0 PSScheduledJob
    Cmdlet Add-KdsRootKey 1.0.0.0 Kds
    Cmdlet Add-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Add-Member 3.1.0.0 Microsoft.PowerShell.Utility
    Function Add-MpPreference 1.0 ConfigDefender
    Function Add-MpPreference 1.0 Defender
    Function Add-NetEventNetworkAdapter 1.0.0.0 NetEventPacketCapture
    Function Add-NetEventPacketCaptureProvider 1.0.0.0 NetEventPacketCapture
    Function Add-NetEventProvider 1.0.0.0 NetEventPacketCapture
    Function Add-NetEventVFPProvider 1.0.0.0 NetEventPacketCapture
    Function Add-NetEventVmNetworkAdapter 1.0.0.0 NetEventPacketCapture
    Function Add-NetEventVmSwitch 1.0.0.0 NetEventPacketCapture
    Function Add-NetEventVmSwitchProvider 1.0.0.0 NetEventPacketCapture
    Function Add-NetEventWFPCaptureProvider 1.0.0.0 NetEventPacketCapture
    Function Add-NetIPHttpsCertBinding 1.0.0.0 NetworkTransition
    Function Add-NetLbfoTeamMember 2.0.0.0 NetLbfo
    Function Add-NetLbfoTeamNic 2.0.0.0 NetLbfo
    Function Add-NetNatExternalAddress 1.0.0.0 NetNat
    Function Add-NetNatStaticMapping 1.0.0.0 NetNat
    Function Add-NetSwitchTeamMember 1.0.0.0 NetSwitchTeam
    Function Add-OdbcDsn 1.0.0.0 Wdac
    Function Add-PartitionAccessPath 2.0.0.0 Storage
    Function Add-PhysicalDisk 2.0.0.0 Storage
    Function Add-Printer 1.1 PrintManagement
    Function Add-PrinterDriver 1.1 PrintManagement
    Function Add-PrinterPort 1.1 PrintManagement
    Alias Add-ProvisionedAppPackage 3.0 Dism
    Alias Add-ProvisionedAppxPackage 3.0 Dism
    Alias Add-ProvisioningPackage 3.0 Provisioning
    Cmdlet Add-PSSnapin 3.0.0.0 Microsoft.PowerShell.Core
    Function Add-RDServer 2.0.0.0 RemoteDesktop
    Function Add-RDSessionHost 2.0.0.0 RemoteDesktop
    Function Add-RDVirtualDesktopToCollection 2.0.0.0 RemoteDesktop
    Cmdlet Add-SignerRule 1.0 ConfigCI
    Function Add-StorageFaultDomain 2.0.0.0 Storage
    Function Add-TargetPortToMaskingSet 2.0.0.0 Storage
    Alias Add-TrustedProvisioningCertificate 3.0 Provisioning
    Cmdlet Add-Type 3.1.0.0 Microsoft.PowerShell.Utility
    Function Add-VirtualDiskToMaskingSet 2.0.0.0 Storage
    Cmdlet Add-VMAssignableDevice 2.0.0.0 Hyper-V
    Cmdlet Add-VMDvdDrive 2.0.0.0 Hyper-V
    Cmdlet Add-VMFibreChannelHba 2.0.0.0 Hyper-V
    Cmdlet Add-VMGpuPartitionAdapter 2.0.0.0 Hyper-V
    Cmdlet Add-VMGroupMember 2.0.0.0 Hyper-V
    Cmdlet Add-VMHardDiskDrive 2.0.0.0 Hyper-V
    Cmdlet Add-VMHostAssignableDevice 2.0.0.0 Hyper-V
    Cmdlet Add-VMKeyStorageDrive 2.0.0.0 Hyper-V
    Cmdlet Add-VMMigrationNetwork 2.0.0.0 Hyper-V
    Cmdlet Add-VMNetworkAdapter 2.0.0.0 Hyper-V
    Cmdlet Add-VMNetworkAdapterAcl 2.0.0.0 Hyper-V
    Cmdlet Add-VMNetworkAdapterExtendedAcl 2.0.0.0 Hyper-V
    Cmdlet Add-VMNetworkAdapterRoutingDomainMapping 2.0.0.0 Hyper-V
    Cmdlet Add-VMPmemController 2.0.0.0 Hyper-V
    Cmdlet Add-VMRemoteFx3dVideoAdapter 2.0.0.0 Hyper-V
    Cmdlet Add-VMScsiController 2.0.0.0 Hyper-V
    Cmdlet Add-VMStoragePath 2.0.0.0 Hyper-V
    Cmdlet Add-VMSwitch 2.0.0.0 Hyper-V
    Cmdlet Add-VMSwitchExtensionPortFeature 2.0.0.0 Hyper-V
    Cmdlet Add-VMSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V
    Cmdlet Add-VMSwitchTeamMember 2.0.0.0 Hyper-V
    Function Add-VpnConnection 2.0.0.0 VpnClient
    Function Add-VpnConnectionRoute 2.0.0.0 VpnClient
    Function Add-VpnConnectionTriggerApplication 2.0.0.0 VpnClient
    Function Add-VpnConnectionTriggerDnsConfiguration 2.0.0.0 VpnClient
    Function Add-VpnConnectionTriggerTrustedNetwork 2.0.0.0 VpnClient
    Cmdlet Add-WindowsCapability 3.0 Dism
    Cmdlet Add-WindowsDriver 3.0 Dism
    Alias Add-WindowsFeature 2.0.0.0 ServerManager
    Cmdlet Add-WindowsImage 3.0 Dism
    Cmdlet Add-WindowsPackage 3.0 Dism
    Function AfterAll 3.4.0 Pester
    Function AfterEach 3.4.0 Pester
    Alias Apply-WindowsUnattend 3.0 Dism
    Function Assert-MockCalled 3.4.0 Pester
    Function Assert-VerifiableMocks 3.4.0 Pester
    Function B:    
    Function Backup-BitLockerKeyProtector 1.0.0.0 BitLocker
    Function Backup-DhcpServer 2.0.0.0 DhcpServer
    Cmdlet Backup-GPO 1.0.0.0 GroupPolicy
    Function BackupToAAD-BitLockerKeyProtector 1.0.0.0 BitLocker
    Function BeforeAll 3.4.0 Pester
    Function BeforeEach 3.4.0 Pester
    Function Block-FileShareAccess 2.0.0.0 Storage
    Cmdlet Block-GPInheritance 1.0.0.0 GroupPolicy
    Function Block-SmbShareAccess 2.0.0.0 SmbShare
    Function C:    
    Function cd..    
    Function cd\    
    Cmdlet Checkpoint-Computer 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Checkpoint-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Cmdlet Checkpoint-VM 2.0.0.0 Hyper-V
    Cmdlet Clear-ADAccountExpiration 1.0.1.0 ActiveDirectory
    Cmdlet Clear-ADClaimTransformLink 1.0.1.0 ActiveDirectory
    Function Clear-AssignedAccess 1.0.0.0 AssignedAccess
    Function Clear-BCCache 1.0.0.0 BranchCache
    Function Clear-BitLockerAutoUnlock 1.0.0.0 BitLocker
    Cmdlet Clear-Content 3.1.0.0 Microsoft.PowerShell.Management
    Function Clear-Disk 2.0.0.0 Storage
    Function Clear-DnsClientCache 1.0.0.0 DnsClient
    Function Clear-DnsServerCache 2.0.0.0 DnsServer
    Function Clear-DnsServerStatistics 2.0.0.0 DnsServer
    Cmdlet Clear-EventLog 3.1.0.0 Microsoft.PowerShell.Management
    Function Clear-FileStorageTier 2.0.0.0 Storage
    Cmdlet Clear-History 3.0.0.0 Microsoft.PowerShell.Core
    Function Clear-Host    
    Cmdlet Clear-Item 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Clear-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Clear-KdsCache 1.0.0.0 Kds
    Function Clear-PcsvDeviceLog 1.0.0.0 PcsvDevice
    Cmdlet Clear-RecycleBin 3.1.0.0 Microsoft.PowerShell.Management
    Function Clear-StorageBusDisk 1.0.0.0 StorageBusCache
    Function Clear-StorageDiagnosticInfo 2.0.0.0 Storage
    Cmdlet Clear-Tpm 2.0.0.0 TrustedPlatformModule
    Cmdlet Clear-UevAppxPackage 2.1.639.0 UEV
    Cmdlet Clear-UevConfiguration 2.1.639.0 UEV
    Cmdlet Clear-Variable 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Clear-WindowsCorruptMountPoint 3.0 Dism
    Function Close-SmbOpenFile 2.0.0.0 SmbShare
    Function Close-SmbSession 2.0.0.0 SmbShare
    Cmdlet Compare-Object 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Compare-VM 2.0.0.0 Hyper-V
    Cmdlet Complete-BitsTransfer 2.0.0.0 BitsTransfer
    Cmdlet Complete-DtcDiagnosticTransaction 1.0.0.0 MsDtc
    Cmdlet Complete-Transaction 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Complete-VMFailover 2.0.0.0 Hyper-V
    Function Compress-Archive 1.0.1.0 Microsoft.PowerShell.Archive
    Function Configuration 1.1 PSDesiredStateConfiguration
    Cmdlet Confirm-SecureBootUEFI 2.0.0.0 SecureBoot
    Function Connect-IscsiTarget 1.0.0.0 iSCSI
    Cmdlet Connect-PSSession 3.0.0.0 Microsoft.PowerShell.Core
    Function Connect-VirtualDisk 2.0.0.0 Storage
    Cmdlet Connect-VMNetworkAdapter 2.0.0.0 Hyper-V
    Cmdlet Connect-VMSan 2.0.0.0 Hyper-V
    Cmdlet Connect-WSMan 3.0.0.0 Microsoft.WSMan.Management
    Function Context 3.4.0 Pester
    Cmdlet ConvertFrom-CIPolicy 1.0 ConfigCI
    Cmdlet ConvertFrom-Csv 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet ConvertFrom-Json 3.1.0.0 Microsoft.PowerShell.Utility
    Function ConvertFrom-SddlString 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet ConvertFrom-SecureString 3.0.0.0 Microsoft.PowerShell.Security
    Cmdlet ConvertFrom-String 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet ConvertFrom-StringData 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Convert-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Cmdlet Convert-Path 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Convert-String 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet ConvertTo-Csv 3.1.0.0 Microsoft.PowerShell.Utility
    Function ConvertTo-DnsServerPrimaryZone 2.0.0.0 DnsServer
    Function ConvertTo-DnsServerSecondaryZone 2.0.0.0 DnsServer
    Function ConvertTo-HgsKeyProtector 1.0.0.0 HgsClient
    Cmdlet ConvertTo-Html 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet ConvertTo-Json 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet ConvertTo-ProcessMitigationPolicy 1.0.12 ProcessMitigations
    Cmdlet ConvertTo-SecureString 3.0.0.0 Microsoft.PowerShell.Security
    Cmdlet ConvertTo-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule
    Cmdlet ConvertTo-Xml 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Convert-VHD 2.0.0.0 Hyper-V
    Cmdlet Copy-GPO 1.0.0.0 GroupPolicy
    Cmdlet Copy-Item 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Copy-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management
    Function Copy-NetFirewallRule 2.0.0.0 NetSecurity
    Function Copy-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity
    Function Copy-NetIPsecMainModeRule 2.0.0.0 NetSecurity
    Function Copy-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity
    Function Copy-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity
    Function Copy-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity
    Function Copy-NetIPsecRule 2.0.0.0 NetSecurity
    Cmdlet Copy-VMFile 2.0.0.0 Hyper-V
    Function D:    
    Function Debug-FileShare 2.0.0.0 Storage
    Cmdlet Debug-Job 3.0.0.0 Microsoft.PowerShell.Core
    Function Debug-MMAppPrelaunch 1.0 MMAgent
    Cmdlet Debug-Process 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Debug-Runspace 3.1.0.0 Microsoft.PowerShell.Utility
    Function Debug-StorageSubSystem 2.0.0.0 Storage
    Cmdlet Debug-VM 2.0.0.0 Hyper-V
    Function Debug-Volume 2.0.0.0 Storage
    Cmdlet Delete-DeliveryOptimizationCache 1.0.2.0 DeliveryOptimization
    Function Describe 3.4.0 Pester
    Cmdlet Disable-ADAccount 1.0.1.0 ActiveDirectory
    Cmdlet Disable-ADOptionalFeature 1.0.1.0 ActiveDirectory
    Cmdlet Disable-AppBackgroundTaskDiagnosticLog 1.0.0.0 AppBackgroundTask
    Cmdlet Disable-Appv 1.0.0.0 AppvClient
    Cmdlet Disable-AppvClientConnectionGroup 1.0.0.0 AppvClient
    Function Disable-BC 1.0.0.0 BranchCache
    Function Disable-BCDowngrading 1.0.0.0 BranchCache
    Function Disable-BCServeOnBattery 1.0.0.0 BranchCache
    Function Disable-BitLocker 1.0.0.0 BitLocker
    Function Disable-BitLockerAutoUnlock 1.0.0.0 BitLocker
    Cmdlet Disable-ComputerRestore 3.1.0.0 Microsoft.PowerShell.Management
    Function Disable-DAManualEntryPointSelection 1.0.0.0 DirectAccessClientComponents
    Function Disable-DeliveryOptimizationVerboseLogs 1.0.2.0 DeliveryOptimization
    Function Disable-DnsServerPolicy 2.0.0.0 DnsServer
    Function Disable-DnsServerSigningKeyRollover 2.0.0.0 DnsServer
    Function Disable-DscDebug 1.1 PSDesiredStateConfiguration
    Cmdlet Disable-JobTrigger 1.1.0.0 PSScheduledJob
    Cmdlet Disable-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Function Disable-MMAgent 1.0 MMAgent
    Function Disable-NetAdapter 2.0.0.0 NetAdapter
    Function Disable-NetAdapterBinding 2.0.0.0 NetAdapter
    Function Disable-NetAdapterChecksumOffload 2.0.0.0 NetAdapter
    Function Disable-NetAdapterEncapsulatedPacketTaskOffload 2.0.0.0 NetAdapter
    Function Disable-NetAdapterIPsecOffload 2.0.0.0 NetAdapter
    Function Disable-NetAdapterLso 2.0.0.0 NetAdapter
    Function Disable-NetAdapterPacketDirect 2.0.0.0 NetAdapter
    Function Disable-NetAdapterPowerManagement 2.0.0.0 NetAdapter
    Function Disable-NetAdapterQos 2.0.0.0 NetAdapter
    Function Disable-NetAdapterRdma 2.0.0.0 NetAdapter
    Function Disable-NetAdapterRsc 2.0.0.0 NetAdapter
    Function Disable-NetAdapterRss 2.0.0.0 NetAdapter
    Function Disable-NetAdapterSriov 2.0.0.0 NetAdapter
    Function Disable-NetAdapterUso 2.0.0.0 NetAdapter
    Function Disable-NetAdapterVmq 2.0.0.0 NetAdapter
    Function Disable-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Disable-NetFirewallRule 2.0.0.0 NetSecurity
    Function Disable-NetIPHttpsProfile 1.0.0.0 NetworkTransition
    Function Disable-NetIPsecMainModeRule 2.0.0.0 NetSecurity
    Function Disable-NetIPsecRule 2.0.0.0 NetSecurity
    Function Disable-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Disable-NetworkSwitchEthernetPort 1.0.0.0 NetworkSwitchManager
    Function Disable-NetworkSwitchFeature 1.0.0.0 NetworkSwitchManager
    Function Disable-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager
    Function Disable-OdbcPerfCounter 1.0.0.0 Wdac
    Function Disable-PhysicalDiskIdentification 2.0.0.0 Storage
    Alias Disable-PhysicalDiskIndication 2.0.0.0 Storage
    Function Disable-PnpDevice 1.0.0.0 PnpDevice
    Cmdlet Disable-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Disable-PSRemoting 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Disable-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core
    Function Disable-PSTrace 1.0.0.0 PSDiagnostics
    Function Disable-PSWSManCombinedTrace 1.0.0.0 PSDiagnostics
    Function Disable-RDVirtualDesktopADMachineAccountReuse 2.0.0.0 RemoteDesktop
    Cmdlet Disable-RunspaceDebug 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Disable-ScheduledJob 1.1.0.0 PSScheduledJob
    Function Disable-ScheduledTask 1.0.0.0 ScheduledTasks
    Function Disable-ServerManagerStandardUserRemoting 2.0.0.0 ServerManager
    Function Disable-SmbDelegation 2.0.0.0 SmbShare
    Function Disable-StorageBusCache 1.0.0.0 StorageBusCache
    Function Disable-StorageBusDisk 1.0.0.0 StorageBusCache
    Alias Disable-StorageDiagnosticLog 2.0.0.0 Storage
    Function Disable-StorageEnclosureIdentification 2.0.0.0 Storage
    Function Disable-StorageEnclosurePower 2.0.0.0 Storage
    Function Disable-StorageHighAvailability 2.0.0.0 Storage
    Function Disable-StorageMaintenanceMode 2.0.0.0 Storage
    Cmdlet Disable-TlsCipherSuite 2.0.0.0 TLS
    Cmdlet Disable-TlsEccCurve 2.0.0.0 TLS
    Cmdlet Disable-TlsSessionTicketKey 2.0.0.0 TLS
    Cmdlet Disable-TpmAutoProvisioning 2.0.0.0 TrustedPlatformModule
    Cmdlet Disable-Uev 2.1.639.0 UEV
    Cmdlet Disable-UevAppxPackage 2.1.639.0 UEV
    Cmdlet Disable-UevTemplate 2.1.639.0 UEV
    Cmdlet Disable-VMConsoleSupport 2.0.0.0 Hyper-V
    Cmdlet Disable-VMEventing 2.0.0.0 Hyper-V
    Cmdlet Disable-VMIntegrationService 2.0.0.0 Hyper-V
    Cmdlet Disable-VMMigration 2.0.0.0 Hyper-V
    Cmdlet Disable-VMRemoteFXPhysicalVideoAdapter 2.0.0.0 Hyper-V
    Cmdlet Disable-VMResourceMetering 2.0.0.0 Hyper-V
    Cmdlet Disable-VMSwitchExtension 2.0.0.0 Hyper-V
    Cmdlet Disable-VMTPM 2.0.0.0 Hyper-V
    Function Disable-WdacBidTrace 1.0.0.0 Wdac
    Cmdlet Disable-WindowsErrorReporting 1.0 WindowsErrorReporting
    Cmdlet Disable-WindowsOptionalFeature 3.0 Dism
    Cmdlet Disable-WSManCredSSP 3.0.0.0 Microsoft.WSMan.Management
    Function Disable-WSManTrace 1.0.0.0 PSDiagnostics
    Function Disconnect-IscsiTarget 1.0.0.0 iSCSI
    Function Disconnect-NfsSession 1.0 NFS
    Cmdlet Disconnect-PSSession 3.0.0.0 Microsoft.PowerShell.Core
    Function Disconnect-RDUser 2.0.0.0 RemoteDesktop
    Function Disconnect-VirtualDisk 2.0.0.0 Storage
    Cmdlet Disconnect-VMNetworkAdapter 2.0.0.0 Hyper-V
    Cmdlet Disconnect-VMSan 2.0.0.0 Hyper-V
    Cmdlet Disconnect-WSMan 3.0.0.0 Microsoft.WSMan.Management
    Alias Dismount-AppPackageVolume 2.0.1.0 Appx
    Cmdlet Dismount-AppxVolume 2.0.1.0 Appx
    Function Dismount-DiskImage 2.0.0.0 Storage
    Cmdlet Dismount-IscsiVirtualDiskSnapshot 2.0.0.0 IscsiTarget
    Cmdlet Dismount-VHD 2.0.0.0 Hyper-V
    Cmdlet Dismount-VMHostAssignableDevice 2.0.0.0 Hyper-V
    Cmdlet Dismount-WindowsImage 3.0 Dism
    Function E:    
    Cmdlet Edit-CIPolicyRule 1.0 ConfigCI
    Cmdlet Enable-ADAccount 1.0.1.0 ActiveDirectory
    Cmdlet Enable-ADOptionalFeature 1.0.1.0 ActiveDirectory
    Cmdlet Enable-AppBackgroundTaskDiagnosticLog 1.0.0.0 AppBackgroundTask
    Cmdlet Enable-Appv 1.0.0.0 AppvClient
    Cmdlet Enable-AppvClientConnectionGroup 1.0.0.0 AppvClient
    Function Enable-BCDistributed 1.0.0.0 BranchCache
    Function Enable-BCDowngrading 1.0.0.0 BranchCache
    Function Enable-BCHostedClient 1.0.0.0 BranchCache
    Function Enable-BCHostedServer 1.0.0.0 BranchCache
    Function Enable-BCLocal 1.0.0.0 BranchCache
    Function Enable-BCServeOnBattery 1.0.0.0 BranchCache
    Function Enable-BitLocker 1.0.0.0 BitLocker
    Function Enable-BitLockerAutoUnlock 1.0.0.0 BitLocker
    Cmdlet Enable-ComputerRestore 3.1.0.0 Microsoft.PowerShell.Management
    Function Enable-DAManualEntryPointSelection 1.0.0.0 DirectAccessClientComponents
    Function Enable-DeliveryOptimizationVerboseLogs 1.0.2.0 DeliveryOptimization
    Function Enable-DnsServerPolicy 2.0.0.0 DnsServer
    Function Enable-DnsServerSigningKeyRollover 2.0.0.0 DnsServer
    Function Enable-DscDebug 1.1 PSDesiredStateConfiguration
    Cmdlet Enable-JobTrigger 1.1.0.0 PSScheduledJob
    Cmdlet Enable-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Function Enable-MMAgent 1.0 MMAgent
    Function Enable-NetAdapter 2.0.0.0 NetAdapter
    Function Enable-NetAdapterBinding 2.0.0.0 NetAdapter
    Function Enable-NetAdapterChecksumOffload 2.0.0.0 NetAdapter
    Function Enable-NetAdapterEncapsulatedPacketTaskOffload 2.0.0.0 NetAdapter
    Function Enable-NetAdapterIPsecOffload 2.0.0.0 NetAdapter
    Function Enable-NetAdapterLso 2.0.0.0 NetAdapter
    Function Enable-NetAdapterPacketDirect 2.0.0.0 NetAdapter
    Function Enable-NetAdapterPowerManagement 2.0.0.0 NetAdapter
    Function Enable-NetAdapterQos 2.0.0.0 NetAdapter
    Function Enable-NetAdapterRdma 2.0.0.0 NetAdapter
    Function Enable-NetAdapterRsc 2.0.0.0 NetAdapter
    Function Enable-NetAdapterRss 2.0.0.0 NetAdapter
    Function Enable-NetAdapterSriov 2.0.0.0 NetAdapter
    Function Enable-NetAdapterUso 2.0.0.0 NetAdapter
    Function Enable-NetAdapterVmq 2.0.0.0 NetAdapter
    Function Enable-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Enable-NetFirewallRule 2.0.0.0 NetSecurity
    Function Enable-NetIPHttpsProfile 1.0.0.0 NetworkTransition
    Function Enable-NetIPsecMainModeRule 2.0.0.0 NetSecurity
    Function Enable-NetIPsecRule 2.0.0.0 NetSecurity
    Function Enable-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Enable-NetworkSwitchEthernetPort 1.0.0.0 NetworkSwitchManager
    Function Enable-NetworkSwitchFeature 1.0.0.0 NetworkSwitchManager
    Function Enable-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager
    Function Enable-OdbcPerfCounter 1.0.0.0 Wdac
    Function Enable-PhysicalDiskIdentification 2.0.0.0 Storage
    Alias Enable-PhysicalDiskIndication 2.0.0.0 Storage
    Function Enable-PnpDevice 1.0.0.0 PnpDevice
    Cmdlet Enable-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Enable-PSRemoting 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Enable-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core
    Function Enable-PSTrace 1.0.0.0 PSDiagnostics
    Function Enable-PSWSManCombinedTrace 1.0.0.0 PSDiagnostics
    Function Enable-RDVirtualDesktopADMachineAccountReuse 2.0.0.0 RemoteDesktop
    Cmdlet Enable-RunspaceDebug 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Enable-ScheduledJob 1.1.0.0 PSScheduledJob
    Function Enable-ScheduledTask 1.0.0.0 ScheduledTasks
    Function Enable-ServerManagerStandardUserRemoting 2.0.0.0 ServerManager
    Function Enable-SmbDelegation 2.0.0.0 SmbShare
    Function Enable-StorageBusCache 1.0.0.0 StorageBusCache
    Function Enable-StorageBusDisk 1.0.0.0 StorageBusCache
    Alias Enable-StorageDiagnosticLog 2.0.0.0 Storage
    Function Enable-StorageEnclosureIdentification 2.0.0.0 Storage
    Function Enable-StorageEnclosurePower 2.0.0.0 Storage
    Function Enable-StorageHighAvailability 2.0.0.0 Storage
    Function Enable-StorageMaintenanceMode 2.0.0.0 Storage
    Cmdlet Enable-TlsCipherSuite 2.0.0.0 TLS
    Cmdlet Enable-TlsEccCurve 2.0.0.0 TLS
    Cmdlet Enable-TlsSessionTicketKey 2.0.0.0 TLS
    Cmdlet Enable-TpmAutoProvisioning 2.0.0.0 TrustedPlatformModule
    Cmdlet Enable-Uev 2.1.639.0 UEV
    Cmdlet Enable-UevAppxPackage 2.1.639.0 UEV
    Cmdlet Enable-UevTemplate 2.1.639.0 UEV
    Cmdlet Enable-VMConsoleSupport 2.0.0.0 Hyper-V
    Cmdlet Enable-VMEventing 2.0.0.0 Hyper-V
    Cmdlet Enable-VMIntegrationService 2.0.0.0 Hyper-V
    Cmdlet Enable-VMMigration 2.0.0.0 Hyper-V
    Cmdlet Enable-VMRemoteFXPhysicalVideoAdapter 2.0.0.0 Hyper-V
    Cmdlet Enable-VMReplication 2.0.0.0 Hyper-V
    Cmdlet Enable-VMResourceMetering 2.0.0.0 Hyper-V
    Cmdlet Enable-VMSwitchExtension 2.0.0.0 Hyper-V
    Cmdlet Enable-VMTPM 2.0.0.0 Hyper-V
    Function Enable-WdacBidTrace 1.0.0.0 Wdac
    Cmdlet Enable-WindowsErrorReporting 1.0 WindowsErrorReporting
    Cmdlet Enable-WindowsOptionalFeature 3.0 Dism
    Cmdlet Enable-WSManCredSSP 3.0.0.0 Microsoft.WSMan.Management
    Function Enable-WSManTrace 1.0.0.0 PSDiagnostics
    Cmdlet Enter-PSHostProcess 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Enter-PSSession 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Exit-PSHostProcess 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Exit-PSSession 3.0.0.0 Microsoft.PowerShell.Core
    Function Expand-Archive 1.0.1.0 Microsoft.PowerShell.Archive
    Alias Expand-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Cmdlet Expand-WindowsCustomDataImage 3.0 Dism
    Cmdlet Expand-WindowsImage 3.0 Dism
    Cmdlet Export-Alias 3.1.0.0 Microsoft.PowerShell.Utility
    Function Export-BCCachePackage 1.0.0.0 BranchCache
    Function Export-BCSecretKey 1.0.0.0 BranchCache
    Cmdlet Export-BinaryMiLog 1.0.0.0 CimCmdlets
    Cmdlet Export-Certificate 1.0.0.0 PKI
    Cmdlet Export-Clixml 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Export-Console 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Export-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics
    Cmdlet Export-Csv 3.1.0.0 Microsoft.PowerShell.Utility
    Function Export-DhcpServer 2.0.0.0 DhcpServer
    Function Export-DnsServerDnsSecPublicKey 2.0.0.0 DnsServer
    Alias Export-DnsServerTrustAnchor 2.0.0.0 DnsServer
    Function Export-DnsServerZone 2.0.0.0 DnsServer
    Cmdlet Export-FormatData 3.1.0.0 Microsoft.PowerShell.Utility
    Function Export-HgsGuardian 1.0.0.0 HgsClient
    Function Export-IscsiTargetServerConfiguration 2.0.0.0 IscsiTarget
    Cmdlet Export-IscsiVirtualDiskSnapshot 2.0.0.0 IscsiTarget
    Cmdlet Export-ModuleMember 3.0.0.0 Microsoft.PowerShell.Core
    Function Export-ODataEndpointProxy 1.0 Microsoft.PowerShell.ODataUtils
    Cmdlet Export-PfxCertificate 1.0.0.0 PKI
    Cmdlet Export-ProvisioningPackage 3.0 Provisioning
    Cmdlet Export-PSSession 3.1.0.0 Microsoft.PowerShell.Utility
    Function Export-RDPersonalSessionDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Export-RDPersonalVirtualDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Export-ScheduledTask 1.0.0.0 ScheduledTasks
    Cmdlet Export-StartLayout 1.0.0.2 StartLayout
    Cmdlet Export-StartLayoutEdgeAssets 1.0.0.2 StartLayout
    Cmdlet Export-TlsSessionTicketKey 2.0.0.0 TLS
    Cmdlet Export-Trace 3.0 Provisioning
    Cmdlet Export-UevConfiguration 2.1.639.0 UEV
    Cmdlet Export-UevPackage 2.1.639.0 UEV
    Cmdlet Export-VM 2.0.0.0 Hyper-V
    Alias Export-VMCheckpoint 2.0.0.0 Hyper-V
    Cmdlet Export-VMSnapshot 2.0.0.0 Hyper-V
    Cmdlet Export-WindowsCapabilitySource 3.0 Dism
    Cmdlet Export-WindowsDriver 3.0 Dism
    Cmdlet Export-WindowsImage 3.0 Dism
    Function F:    
    Function Find-Command 1.0.0.1 PowerShellGet
    Function Find-DscResource 1.0.0.1 PowerShellGet
    Function Find-Module 1.0.0.1 PowerShellGet
    Function Find-NetIPsecRule 2.0.0.0 NetSecurity
    Function Find-NetRoute 1.0.0.0 NetTCPIP
    Cmdlet Find-Package 1.0.0.1 PackageManagement
    Cmdlet Find-PackageProvider 1.0.0.1 PackageManagement
    Function Find-RoleCapability 1.0.0.1 PowerShellGet
    Function Find-Script 1.0.0.1 PowerShellGet
    Function Flush-EtwTraceSession 1.0.0.0 EventTracingManagement
    Alias Flush-Volume 2.0.0.0 Storage
    Cmdlet ForEach-Object 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Format-Custom 3.1.0.0 Microsoft.PowerShell.Utility
    Function Format-Hex 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Format-List 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Format-SecureBootUEFI 2.0.0.0 SecureBoot
    Cmdlet Format-Table 3.1.0.0 Microsoft.PowerShell.Utility
    Function Format-Volume 2.0.0.0 Storage
    Cmdlet Format-Wide 3.1.0.0 Microsoft.PowerShell.Utility
    Function G:    
    Cmdlet Get-Acl 3.0.0.0 Microsoft.PowerShell.Security
    Cmdlet Get-ADAccountAuthorizationGroup 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADAccountResultantPasswordReplicationPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADAuthenticationPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADAuthenticationPolicySilo 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADCentralAccessPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADCentralAccessRule 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADClaimTransformPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADClaimType 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADComputer 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADComputerServiceAccount 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADDCCloningExcludedApplicationList 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADDefaultDomainPasswordPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADDomain 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADDomainController 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADDomainControllerPasswordReplicationPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADDomainControllerPasswordReplicationPolicy... 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADFineGrainedPasswordPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADFineGrainedPasswordPolicySubject 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADForest 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADGroup 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADGroupMember 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADObject 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADOptionalFeature 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADOrganizationalUnit 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADPrincipalGroupMembership 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationAttributeMetadata 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationConnection 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationFailure 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationPartnerMetadata 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationQueueOperation 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationSite 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationSiteLink 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationSiteLinkBridge 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationSubnet 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADReplicationUpToDatenessVectorTable 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADResourceProperty 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADResourcePropertyList 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADResourcePropertyValueType 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADRootDSE 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADServiceAccount 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADTrust 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADUser 1.0.1.0 ActiveDirectory
    Cmdlet Get-ADUserResultantPasswordPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Get-Alias 3.1.0.0 Microsoft.PowerShell.Utility
    Function Get-AppBackgroundTask 1.0.0.0 AppBackgroundTask
    Cmdlet Get-AppLockerFileInformation 2.0.0.0 AppLocker
    Cmdlet Get-AppLockerPolicy 2.0.0.0 AppLocker
    Alias Get-AppPackage 2.0.1.0 Appx
    Alias Get-AppPackageDefaultVolume 2.0.1.0 Appx
    Alias Get-AppPackageLastError 2.0.1.0 Appx
    Alias Get-AppPackageLog 2.0.1.0 Appx
    Alias Get-AppPackageManifest 2.0.1.0 Appx
    Alias Get-AppPackageVolume 2.0.1.0 Appx
    Alias Get-AppProvisionedPackage 3.0 Dism
    Cmdlet Get-AppvClientApplication 1.0.0.0 AppvClient
    Cmdlet Get-AppvClientConfiguration 1.0.0.0 AppvClient
    Cmdlet Get-AppvClientConnectionGroup 1.0.0.0 AppvClient
    Cmdlet Get-AppvClientMode 1.0.0.0 AppvClient
    Cmdlet Get-AppvClientPackage 1.0.0.0 AppvClient
    Cmdlet Get-AppvPublishingServer 1.0.0.0 AppvClient
    Cmdlet Get-AppvStatus 1.0.0.0 AppvClient
    Function Get-AppvVirtualProcess 1.0.0.0 AppvClient
    Cmdlet Get-AppxDefaultVolume 2.0.1.0 Appx
    Function Get-AppxLastError 2.0.1.0 Appx
    Function Get-AppxLog 2.0.1.0 Appx
    Cmdlet Get-AppxPackage 2.0.1.0 Appx
    Cmdlet Get-AppxPackageManifest 2.0.1.0 Appx
    Cmdlet Get-AppxProvisionedPackage 3.0 Dism
    Cmdlet Get-AppxVolume 2.0.1.0 Appx
    Function Get-AssignedAccess 1.0.0.0 AssignedAccess
    Cmdlet Get-AuthenticodeSignature 3.0.0.0 Microsoft.PowerShell.Security
    Function Get-AutologgerConfig 1.0.0.0 EventTracingManagement
    Function Get-BCClientConfiguration 1.0.0.0 BranchCache
    Function Get-BCContentServerConfiguration 1.0.0.0 BranchCache
    Function Get-BCDataCache 1.0.0.0 BranchCache
    Function Get-BCDataCacheExtension 1.0.0.0 BranchCache
    Function Get-BCHashCache 1.0.0.0 BranchCache
    Function Get-BCHostedCacheServerConfiguration 1.0.0.0 BranchCache
    Function Get-BCNetworkConfiguration 1.0.0.0 BranchCache
    Function Get-BCStatus 1.0.0.0 BranchCache
    Function Get-BitLockerVolume 1.0.0.0 BitLocker
    Cmdlet Get-BitsTransfer 2.0.0.0 BitsTransfer
    Cmdlet Get-BpaModel 1.0 BestPractices
    Cmdlet Get-BpaResult 1.0 BestPractices
    Cmdlet Get-Certificate 1.0.0.0 PKI
    Cmdlet Get-CertificateAutoEnrollmentPolicy 1.0.0.0 PKI
    Cmdlet Get-CertificateEnrollmentPolicyServer 1.0.0.0 PKI
    Cmdlet Get-CertificateNotificationTask 1.0.0.0 PKI
    Cmdlet Get-ChildItem 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-CimAssociatedInstance 1.0.0.0 CimCmdlets
    Cmdlet Get-CimClass 1.0.0.0 CimCmdlets
    Cmdlet Get-CimInstance 1.0.0.0 CimCmdlets
    Cmdlet Get-CimSession 1.0.0.0 CimCmdlets
    Cmdlet Get-CIPolicy 1.0 ConfigCI
    Cmdlet Get-CIPolicyIdInfo 1.0 ConfigCI
    Cmdlet Get-CIPolicyInfo 1.0 ConfigCI
    Cmdlet Get-Clipboard 3.1.0.0 Microsoft.PowerShell.Management
    Function Get-ClusteredScheduledTask 1.0.0.0 ScheduledTasks
    Cmdlet Get-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security
    Cmdlet Get-Command 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Get-ComputerInfo 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-ComputerRestorePoint 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-Content 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-ControlPanelItem 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics
    Cmdlet Get-Credential 3.0.0.0 Microsoft.PowerShell.Security
    Cmdlet Get-Culture 3.1.0.0 Microsoft.PowerShell.Utility
    Function Get-DAClientExperienceConfiguration 1.0.0.0 DirectAccessClientComponents
    Function Get-DAConnectionStatus 1.0.0.0 NetworkConnectivityStatus
    Function Get-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents
    Cmdlet Get-DAPolicyChange 2.0.0.0 NetSecurity
    Cmdlet Get-Date 3.1.0.0 Microsoft.PowerShell.Utility
    Function Get-DedupProperties 2.0.0.0 Storage
    Cmdlet Get-DeliveryOptimizationLog 1.0.2.0 DeliveryOptimization
    Cmdlet Get-DeliveryOptimizationLogAnalysis 1.0.2.0 DeliveryOptimization
    Function Get-DeliveryOptimizationPerfSnap 1.0.2.0 DeliveryOptimization
    Function Get-DeliveryOptimizationPerfSnapThisMonth 1.0.2.0 DeliveryOptimization
    Function Get-DeliveryOptimizationStatus 1.0.2.0 DeliveryOptimization
    Function Get-DhcpServerAuditLog 2.0.0.0 DhcpServer
    Function Get-DhcpServerDatabase 2.0.0.0 DhcpServer
    Function Get-DhcpServerDnsCredential 2.0.0.0 DhcpServer
    Function Get-DhcpServerInDC 2.0.0.0 DhcpServer
    Function Get-DhcpServerSetting 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Binding 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Class 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4DnsSetting 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4ExclusionRange 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Failover 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Filter 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4FilterList 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4FreeIPAddress 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Lease 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4MulticastExclusionRange 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4MulticastLease 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4MulticastScope 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4MulticastScopeStatistics 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4OptionDefinition 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4OptionValue 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Policy 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4PolicyIPRange 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Reservation 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Scope 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4ScopeStatistics 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Statistics 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4Superscope 2.0.0.0 DhcpServer
    Function Get-DhcpServerv4SuperScopeStatistics 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6Binding 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6Class 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6DnsSetting 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6ExclusionRange 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6FreeIPAddress 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6Lease 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6OptionDefinition 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6OptionValue 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6Reservation 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6Scope 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6ScopeStatistics 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6StatelessStatistics 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6StatelessStore 2.0.0.0 DhcpServer
    Function Get-DhcpServerv6Statistics 2.0.0.0 DhcpServer
    Function Get-DhcpServerVersion 2.0.0.0 DhcpServer
    Function Get-Disk 2.0.0.0 Storage
    Function Get-DiskImage 2.0.0.0 Storage
    Alias Get-DiskSNV 2.0.0.0 Storage
    Function Get-DiskStorageNodeView 2.0.0.0 Storage
    Function Get-DnsClient 1.0.0.0 DnsClient
    Function Get-DnsClientCache 1.0.0.0 DnsClient
    Function Get-DnsClientGlobalSetting 1.0.0.0 DnsClient
    Function Get-DnsClientNrptGlobal 1.0.0.0 DnsClient
    Function Get-DnsClientNrptPolicy 1.0.0.0 DnsClient
    Function Get-DnsClientNrptRule 1.0.0.0 DnsClient
    Function Get-DnsClientServerAddress 1.0.0.0 DnsClient
    Function Get-DnsServer 2.0.0.0 DnsServer
    Function Get-DnsServerCache 2.0.0.0 DnsServer
    Function Get-DnsServerClientSubnet 2.0.0.0 DnsServer
    Function Get-DnsServerDiagnostics 2.0.0.0 DnsServer
    Function Get-DnsServerDirectoryPartition 2.0.0.0 DnsServer
    Function Get-DnsServerDnsSecZoneSetting 2.0.0.0 DnsServer
    Function Get-DnsServerDsSetting 2.0.0.0 DnsServer
    Function Get-DnsServerEDns 2.0.0.0 DnsServer
    Function Get-DnsServerForwarder 2.0.0.0 DnsServer
    Function Get-DnsServerGlobalNameZone 2.0.0.0 DnsServer
    Function Get-DnsServerGlobalQueryBlockList 2.0.0.0 DnsServer
    Function Get-DnsServerQueryResolutionPolicy 2.0.0.0 DnsServer
    Function Get-DnsServerRecursion 2.0.0.0 DnsServer
    Function Get-DnsServerRecursionScope 2.0.0.0 DnsServer
    Function Get-DnsServerResourceRecord 2.0.0.0 DnsServer
    Function Get-DnsServerResponseRateLimiting 2.0.0.0 DnsServer
    Function Get-DnsServerResponseRateLimitingExceptionlist 2.0.0.0 DnsServer
    Function Get-DnsServerRootHint 2.0.0.0 DnsServer
    Alias Get-DnsServerRRL 2.0.0.0 DnsServer
    Function Get-DnsServerScavenging 2.0.0.0 DnsServer
    Function Get-DnsServerSetting 2.0.0.0 DnsServer
    Function Get-DnsServerSigningKey 2.0.0.0 DnsServer
    Function Get-DnsServerStatistics 2.0.0.0 DnsServer
    Function Get-DnsServerTrustAnchor 2.0.0.0 DnsServer
    Function Get-DnsServerTrustPoint 2.0.0.0 DnsServer
    Function Get-DnsServerVirtualizationInstance 2.0.0.0 DnsServer
    Function Get-DnsServerZone 2.0.0.0 DnsServer
    Function Get-DnsServerZoneAging 2.0.0.0 DnsServer
    Function Get-DnsServerZoneDelegation 2.0.0.0 DnsServer
    Function Get-DnsServerZoneScope 2.0.0.0 DnsServer
    Function Get-DnsServerZoneTransferPolicy 2.0.0.0 DnsServer
    Function Get-DOConfig 1.0.2.0 DeliveryOptimization
    Function Get-DODownloadMode 1.0.2.0 DeliveryOptimization
    Function Get-DOPercentageMaxBackgroundBandwidth 1.0.2.0 DeliveryOptimization
    Function Get-DOPercentageMaxForegroundBandwidth 1.0.2.0 DeliveryOptimization
    Function Get-DscConfiguration 1.1 PSDesiredStateConfiguration
    Function Get-DscConfigurationStatus 1.1 PSDesiredStateConfiguration
    Function Get-DscLocalConfigurationManager 1.1 PSDesiredStateConfiguration
    Function Get-DscResource 1.1 PSDesiredStateConfiguration
    Function Get-Dtc 1.0.0.0 MsDtc
    Function Get-DtcAdvancedHostSetting 1.0.0.0 MsDtc
    Function Get-DtcAdvancedSetting 1.0.0.0 MsDtc
    Function Get-DtcClusterDefault 1.0.0.0 MsDtc
    Function Get-DtcClusterTMMapping 1.0.0.0 MsDtc
    Function Get-DtcDefault 1.0.0.0 MsDtc
    Function Get-DtcLog 1.0.0.0 MsDtc
    Function Get-DtcNetworkSetting 1.0.0.0 MsDtc
    Function Get-DtcTransaction 1.0.0.0 MsDtc
    Function Get-DtcTransactionsStatistics 1.0.0.0 MsDtc
    Function Get-DtcTransactionsTraceSession 1.0.0.0 MsDtc
    Function Get-DtcTransactionsTraceSetting 1.0.0.0 MsDtc
    Function Get-EtwTraceProvider 1.0.0.0 EventTracingManagement
    Function Get-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet Get-Event 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-EventLog 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-EventSubscriber 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-ExecutionPolicy 3.0.0.0 Microsoft.PowerShell.Security
    Function Get-FileHash 3.1.0.0 Microsoft.PowerShell.Utility
    Function Get-FileIntegrity 2.0.0.0 Storage
    Function Get-FileShare 2.0.0.0 Storage
    Function Get-FileShareAccessControlEntry 2.0.0.0 Storage
    Function Get-FileStorageTier 2.0.0.0 Storage
    Cmdlet Get-FormatData 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-GPInheritance 1.0.0.0 GroupPolicy
    Cmdlet Get-GPO 1.0.0.0 GroupPolicy
    Cmdlet Get-GPOReport 1.0.0.0 GroupPolicy
    Cmdlet Get-GPPermission 1.0.0.0 GroupPolicy
    Alias Get-GPPermissions 1.0.0.0 GroupPolicy
    Cmdlet Get-GPPrefRegistryValue 1.0.0.0 GroupPolicy
    Cmdlet Get-GPRegistryValue 1.0.0.0 GroupPolicy
    Cmdlet Get-GPResultantSetOfPolicy 1.0.0.0 GroupPolicy
    Cmdlet Get-GPStarterGPO 1.0.0.0 GroupPolicy
    Cmdlet Get-Help 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Get-HgsAttestationBaselinePolicy 1.0.0.0 HgsClient
    Function Get-HgsClientConfiguration 1.0.0.0 HgsClient
    Function Get-HgsClientHostKey 1.0.0.0 HgsClient
    Function Get-HgsGuardian 1.0.0.0 HgsClient
    Cmdlet Get-HgsTrace 1.0.0.0 HgsDiagnostics
    Cmdlet Get-HgsTraceFileData 1.0.0.0 HgsDiagnostics
    Cmdlet Get-History 3.0.0.0 Microsoft.PowerShell.Core
    Function Get-HnsEndpoint 1.0.0.1 HostNetworkingService
    Function Get-HnsNamespace 1.0.0.1 HostNetworkingService
    Function Get-HnsNetwork 1.0.0.1 HostNetworkingService
    Function Get-HnsPolicyList 1.0.0.1 HostNetworkingService
    Cmdlet Get-Host 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-HotFix 3.1.0.0 Microsoft.PowerShell.Management
    Function Get-InitiatorId 2.0.0.0 Storage
    Function Get-InitiatorPort 2.0.0.0 Storage
    Function Get-InstalledModule 1.0.0.1 PowerShellGet
    Function Get-InstalledScript 1.0.0.1 PowerShellGet
    Function Get-IscsiConnection 1.0.0.0 iSCSI
    Cmdlet Get-IscsiServerTarget 2.0.0.0 IscsiTarget
    Function Get-IscsiSession 1.0.0.0 iSCSI
    Function Get-IscsiTarget 1.0.0.0 iSCSI
    Function Get-IscsiTargetPortal 1.0.0.0 iSCSI
    Cmdlet Get-IscsiTargetServerSetting 2.0.0.0 IscsiTarget
    Cmdlet Get-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Cmdlet Get-IscsiVirtualDiskSnapshot 2.0.0.0 IscsiTarget
    Function Get-IseSnippet 1.0.0.0 ISE
    Cmdlet Get-Item 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-ItemPropertyValue 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-Job 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Get-JobTrigger 1.1.0.0 PSScheduledJob
    Cmdlet Get-KdsConfiguration 1.0.0.0 Kds
    Cmdlet Get-KdsRootKey 1.0.0.0 Kds
    Cmdlet Get-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Get-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Get-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Get-Location 3.1.0.0 Microsoft.PowerShell.Management
    Function Get-LogProperties 1.0.0.0 PSDiagnostics
    Function Get-MaskingSet 2.0.0.0 Storage
    Cmdlet Get-Member 3.1.0.0 Microsoft.PowerShell.Utility
    Function Get-MMAgent 1.0 MMAgent
    Function Get-MockDynamicParameters 3.4.0 Pester
    Cmdlet Get-Module 3.0.0.0 Microsoft.PowerShell.Core
    Function Get-MpComputerStatus 1.0 ConfigDefender
    Function Get-MpComputerStatus 1.0 Defender
    Function Get-MpPerformanceReport 1.0 ConfigDefenderPerformance
    Function Get-MpPreference 1.0 ConfigDefender
    Function Get-MpPreference 1.0 Defender
    Function Get-MpThreat 1.0 ConfigDefender
    Function Get-MpThreat 1.0 Defender
    Function Get-MpThreatCatalog 1.0 ConfigDefender
    Function Get-MpThreatCatalog 1.0 Defender
    Function Get-MpThreatDetection 1.0 ConfigDefender
    Function Get-MpThreatDetection 1.0 Defender
    Function Get-NCSIPolicyConfiguration 1.0.0.0 NetworkConnectivityStatus
    Function Get-Net6to4Configuration 1.0.0.0 NetworkTransition
    Function Get-NetAdapter 2.0.0.0 NetAdapter
    Function Get-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter
    Function Get-NetAdapterBinding 2.0.0.0 NetAdapter
    Function Get-NetAdapterChecksumOffload 2.0.0.0 NetAdapter
    Function Get-NetAdapterEncapsulatedPacketTaskOffload 2.0.0.0 NetAdapter
    Function Get-NetAdapterHardwareInfo 2.0.0.0 NetAdapter
    Function Get-NetAdapterIPsecOffload 2.0.0.0 NetAdapter
    Function Get-NetAdapterLso 2.0.0.0 NetAdapter
    Function Get-NetAdapterPacketDirect 2.0.0.0 NetAdapter
    Function Get-NetAdapterPowerManagement 2.0.0.0 NetAdapter
    Function Get-NetAdapterQos 2.0.0.0 NetAdapter
    Function Get-NetAdapterRdma 2.0.0.0 NetAdapter
    Function Get-NetAdapterRsc 2.0.0.0 NetAdapter
    Function Get-NetAdapterRss 2.0.0.0 NetAdapter
    Function Get-NetAdapterSriov 2.0.0.0 NetAdapter
    Function Get-NetAdapterSriovVf 2.0.0.0 NetAdapter
    Function Get-NetAdapterStatistics 2.0.0.0 NetAdapter
    Function Get-NetAdapterUso 2.0.0.0 NetAdapter
    Function Get-NetAdapterVmq 2.0.0.0 NetAdapter
    Function Get-NetAdapterVMQQueue 2.0.0.0 NetAdapter
    Function Get-NetAdapterVPort 2.0.0.0 NetAdapter
    Function Get-NetCompartment 1.0.0.0 NetTCPIP
    Function Get-NetConnectionProfile 1.0.0.0 NetConnection
    Function Get-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Get-NetDnsTransitionMonitoring 1.0.0.0 NetworkTransition
    Function Get-NetEventNetworkAdapter 1.0.0.0 NetEventPacketCapture
    Function Get-NetEventPacketCaptureProvider 1.0.0.0 NetEventPacketCapture
    Function Get-NetEventProvider 1.0.0.0 NetEventPacketCapture
    Function Get-NetEventSession 1.0.0.0 NetEventPacketCapture
    Function Get-NetEventVFPProvider 1.0.0.0 NetEventPacketCapture
    Function Get-NetEventVmNetworkAdapter 1.0.0.0 NetEventPacketCapture
    Function Get-NetEventVmSwitch 1.0.0.0 NetEventPacketCapture
    Function Get-NetEventVmSwitchProvider 1.0.0.0 NetEventPacketCapture
    Function Get-NetEventWFPCaptureProvider 1.0.0.0 NetEventPacketCapture
    Function Get-NetFirewallAddressFilter 2.0.0.0 NetSecurity
    Function Get-NetFirewallApplicationFilter 2.0.0.0 NetSecurity
    Function Get-NetFirewallInterfaceFilter 2.0.0.0 NetSecurity
    Function Get-NetFirewallInterfaceTypeFilter 2.0.0.0 NetSecurity
    Function Get-NetFirewallPortFilter 2.0.0.0 NetSecurity
    Function Get-NetFirewallProfile 2.0.0.0 NetSecurity
    Function Get-NetFirewallRule 2.0.0.0 NetSecurity
    Function Get-NetFirewallSecurityFilter 2.0.0.0 NetSecurity
    Function Get-NetFirewallServiceFilter 2.0.0.0 NetSecurity
    Function Get-NetFirewallSetting 2.0.0.0 NetSecurity
    Function Get-NetIPAddress 1.0.0.0 NetTCPIP
    Function Get-NetIPConfiguration 1.0.0.0 NetTCPIP
    Function Get-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition
    Function Get-NetIPHttpsState 1.0.0.0 NetworkTransition
    Function Get-NetIPInterface 1.0.0.0 NetTCPIP
    Function Get-NetIPsecDospSetting 2.0.0.0 NetSecurity
    Function Get-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity
    Function Get-NetIPsecMainModeRule 2.0.0.0 NetSecurity
    Function Get-NetIPsecMainModeSA 2.0.0.0 NetSecurity
    Function Get-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity
    Function Get-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity
    Function Get-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity
    Function Get-NetIPsecQuickModeSA 2.0.0.0 NetSecurity
    Function Get-NetIPsecRule 2.0.0.0 NetSecurity
    Function Get-NetIPv4Protocol 1.0.0.0 NetTCPIP
    Function Get-NetIPv6Protocol 1.0.0.0 NetTCPIP
    Function Get-NetIsatapConfiguration 1.0.0.0 NetworkTransition
    Function Get-NetLbfoTeam 2.0.0.0 NetLbfo
    Function Get-NetLbfoTeamMember 2.0.0.0 NetLbfo
    Function Get-NetLbfoTeamNic 2.0.0.0 NetLbfo
    Function Get-NetNat 1.0.0.0 NetNat
    Function Get-NetNatExternalAddress 1.0.0.0 NetNat
    Function Get-NetNatGlobal 1.0.0.0 NetNat
    Function Get-NetNatSession 1.0.0.0 NetNat
    Function Get-NetNatStaticMapping 1.0.0.0 NetNat
    Function Get-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Get-NetNatTransitionMonitoring 1.0.0.0 NetworkTransition
    Function Get-NetNeighbor 1.0.0.0 NetTCPIP
    Function Get-NetOffloadGlobalSetting 1.0.0.0 NetTCPIP
    Function Get-NetPrefixPolicy 1.0.0.0 NetTCPIP
    Function Get-NetQosPolicy 2.0.0.0 NetQos
    Function Get-NetRoute 1.0.0.0 NetTCPIP
    Function Get-NetSwitchTeam 1.0.0.0 NetSwitchTeam
    Function Get-NetSwitchTeamMember 1.0.0.0 NetSwitchTeam
    Function Get-NetTCPConnection 1.0.0.0 NetTCPIP
    Function Get-NetTCPSetting 1.0.0.0 NetTCPIP
    Function Get-NetTeredoConfiguration 1.0.0.0 NetworkTransition
    Function Get-NetTeredoState 1.0.0.0 NetworkTransition
    Function Get-NetTransportFilter 1.0.0.0 NetTCPIP
    Function Get-NetUDPEndpoint 1.0.0.0 NetTCPIP
    Function Get-NetUDPSetting 1.0.0.0 NetTCPIP
    Function Get-NetworkSwitchEthernetPort 1.0.0.0 NetworkSwitchManager
    Function Get-NetworkSwitchFeature 1.0.0.0 NetworkSwitchManager
    Function Get-NetworkSwitchGlobalData 1.0.0.0 NetworkSwitchManager
    Function Get-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager
    Function Get-NfsClientConfiguration 1.0 NFS
    Function Get-NfsClientgroup 1.0 NFS
    Function Get-NfsClientLock 1.0 NFS
    Cmdlet Get-NfsMappedIdentity 1.0 NFS
    Function Get-NfsMappingStore 1.0 NFS
    Function Get-NfsMountedClient 1.0 NFS
    Cmdlet Get-NfsNetgroup 1.0 NFS
    Function Get-NfsNetgroupStore 1.0 NFS
    Function Get-NfsOpenFile 1.0 NFS
    Function Get-NfsServerConfiguration 1.0 NFS
    Function Get-NfsSession 1.0 NFS
    Function Get-NfsShare 1.0 NFS
    Function Get-NfsSharePermission 1.0 NFS
    Function Get-NfsStatistics 1.0 NFS
    Cmdlet Get-NonRemovableAppsPolicy 3.0 Dism
    Function Get-OdbcDriver 1.0.0.0 Wdac
    Function Get-OdbcDsn 1.0.0.0 Wdac
    Function Get-OdbcPerfCounter 1.0.0.0 Wdac
    Function Get-OffloadDataTransferSetting 2.0.0.0 Storage
    Function Get-OperationValidation 1.0.1 Microsoft.PowerShell.Operation.Validation
    Cmdlet Get-Package 1.0.0.1 PackageManagement
    Cmdlet Get-PackageProvider 1.0.0.1 PackageManagement
    Cmdlet Get-PackageSource 1.0.0.1 PackageManagement
    Function Get-Partition 2.0.0.0 Storage
    Function Get-PartitionSupportedSize 2.0.0.0 Storage
    Function Get-PcsvDevice 1.0.0.0 PcsvDevice
    Function Get-PcsvDeviceLog 1.0.0.0 PcsvDevice
    Cmdlet Get-PfxCertificate 3.0.0.0 Microsoft.PowerShell.Security
    Cmdlet Get-PfxData 1.0.0.0 PKI
    Function Get-PhysicalDisk 2.0.0.0 Storage
    Alias Get-PhysicalDiskSNV 2.0.0.0 Storage
    Function Get-PhysicalDiskStorageNodeView 2.0.0.0 Storage
    Function Get-PhysicalExtent 2.0.0.0 Storage
    Function Get-PhysicalExtentAssociation 2.0.0.0 Storage
    Cmdlet Get-PmemDisk 1.0.0.0 PersistentMemory
    Cmdlet Get-PmemPhysicalDevice 1.0.0.0 PersistentMemory
    Cmdlet Get-PmemUnusedRegion 1.0.0.0 PersistentMemory
    Function Get-PnpDevice 1.0.0.0 PnpDevice
    Function Get-PnpDeviceProperty 1.0.0.0 PnpDevice
    Function Get-PrintConfiguration 1.1 PrintManagement
    Function Get-Printer 1.1 PrintManagement
    Function Get-PrinterDriver 1.1 PrintManagement
    Function Get-PrinterPort 1.1 PrintManagement
    Function Get-PrinterProperty 1.1 PrintManagement
    Function Get-PrintJob 1.1 PrintManagement
    Cmdlet Get-Process 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-ProcessMitigation 1.0.12 ProcessMitigations
    Alias Get-ProvisionedAppPackage 3.0 Dism
    Alias Get-ProvisionedAppxPackage 3.0 Dism
    Cmdlet Get-ProvisioningPackage 3.0 Provisioning
    Cmdlet Get-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-PSCallStack 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-PSDrive 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-PSHostProcessInfo 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Get-PSProvider 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-PSReadLineKeyHandler 2.0.0 PSReadline
    Cmdlet Get-PSReadLineOption 2.0.0 PSReadline
    Function Get-PSRepository 1.0.0.1 PowerShellGet
    Cmdlet Get-PSSession 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Get-PSSessionCapability 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Get-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Get-PSSnapin 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Get-Random 3.1.0.0 Microsoft.PowerShell.Utility
    Function Get-RDAvailableApp 2.0.0.0 RemoteDesktop
    Function Get-RDCertificate 2.0.0.0 RemoteDesktop
    Function Get-RDConnectionBrokerHighAvailability 2.0.0.0 RemoteDesktop
    Function Get-RDDeploymentGatewayConfiguration 2.0.0.0 RemoteDesktop
    Function Get-RDFileTypeAssociation 2.0.0.0 RemoteDesktop
    Function Get-RDLicenseConfiguration 2.0.0.0 RemoteDesktop
    Function Get-RDPersonalSessionDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Get-RDPersonalVirtualDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Get-RDPersonalVirtualDesktopPatchSchedule 2.0.0.0 RemoteDesktop
    Function Get-RDRemoteApp 2.0.0.0 RemoteDesktop
    Function Get-RDRemoteDesktop 2.0.0.0 RemoteDesktop
    Function Get-RDServer 2.0.0.0 RemoteDesktop
    Function Get-RDSessionCollection 2.0.0.0 RemoteDesktop
    Function Get-RDSessionCollectionConfiguration 2.0.0.0 RemoteDesktop
    Function Get-RDSessionHost 2.0.0.0 RemoteDesktop
    Function Get-RDUserSession 2.0.0.0 RemoteDesktop
    Function Get-RDVirtualDesktop 2.0.0.0 RemoteDesktop
    Function Get-RDVirtualDesktopCollection 2.0.0.0 RemoteDesktop
    Function Get-RDVirtualDesktopCollectionConfiguration 2.0.0.0 RemoteDesktop
    Function Get-RDVirtualDesktopCollectionJobStatus 2.0.0.0 RemoteDesktop
    Function Get-RDVirtualDesktopConcurrency 2.0.0.0 RemoteDesktop
    Function Get-RDVirtualDesktopIdleCount 2.0.0.0 RemoteDesktop
    Function Get-RDVirtualDesktopTemplateExportPath 2.0.0.0 RemoteDesktop
    Function Get-RDWorkspace 2.0.0.0 RemoteDesktop
    Function Get-ResiliencySetting 2.0.0.0 Storage
    Cmdlet Get-Runspace 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-RunspaceDebug 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-ScheduledJob 1.1.0.0 PSScheduledJob
    Cmdlet Get-ScheduledJobOption 1.1.0.0 PSScheduledJob
    Function Get-ScheduledTask 1.0.0.0 ScheduledTasks
    Function Get-ScheduledTaskInfo 1.0.0.0 ScheduledTasks
    Cmdlet Get-SecureBootPolicy 2.0.0.0 SecureBoot
    Cmdlet Get-SecureBootUEFI 2.0.0.0 SecureBoot
    Cmdlet Get-Service 3.1.0.0 Microsoft.PowerShell.Management
    Function Get-SmbBandWidthLimit 2.0.0.0 SmbShare
    Function Get-SmbClientConfiguration 2.0.0.0 SmbShare
    Function Get-SmbClientNetworkInterface 2.0.0.0 SmbShare
    Function Get-SmbConnection 2.0.0.0 SmbShare
    Function Get-SmbDelegation 2.0.0.0 SmbShare
    Function Get-SmbGlobalMapping 2.0.0.0 SmbShare
    Function Get-SmbMapping 2.0.0.0 SmbShare
    Function Get-SmbMultichannelConnection 2.0.0.0 SmbShare
    Function Get-SmbMultichannelConstraint 2.0.0.0 SmbShare
    Function Get-SmbOpenFile 2.0.0.0 SmbShare
    Function Get-SmbServerCertificateMapping 2.0.0.0 SmbShare
    Function Get-SmbServerConfiguration 2.0.0.0 SmbShare
    Function Get-SmbServerNetworkInterface 2.0.0.0 SmbShare
    Function Get-SmbSession 2.0.0.0 SmbShare
    Function Get-SmbShare 2.0.0.0 SmbShare
    Function Get-SmbShareAccess 2.0.0.0 SmbShare
    Function Get-SmbWitnessClient 2.0.0.0 SmbWitness
    Function Get-SMCounterSample 1.0.0.0 ServerManagerTasks
    Function Get-SMPerformanceCollector 1.0.0.0 ServerManagerTasks
    Function Get-SMServerBpaResult 1.0.0.0 ServerManagerTasks
    Function Get-SMServerClusterName 1.0.0.0 ServerManagerTasks
    Function Get-SMServerEvent 1.0.0.0 ServerManagerTasks
    Function Get-SMServerFeature 1.0.0.0 ServerManagerTasks
    Function Get-SMServerInventory 1.0.0.0 ServerManagerTasks
    Function Get-SMServerService 1.0.0.0 ServerManagerTasks
    Function Get-StartApps 1.0.0.2 StartLayout
    Function Get-StorageAdvancedProperty 2.0.0.0 Storage
    Function Get-StorageBusBinding 1.0.0.0 StorageBusCache
    Function Get-StorageBusDisk 1.0.0.0 StorageBusCache
    Function Get-StorageChassis 2.0.0.0 Storage
    Function Get-StorageDiagnosticInfo 2.0.0.0 Storage
    Function Get-StorageEnclosure 2.0.0.0 Storage
    Alias Get-StorageEnclosureSNV 2.0.0.0 Storage
    Function Get-StorageEnclosureStorageNodeView 2.0.0.0 Storage
    Function Get-StorageEnclosureVendorData 2.0.0.0 Storage
    Function Get-StorageExtendedStatus 2.0.0.0 Storage
    Function Get-StorageFaultDomain 2.0.0.0 Storage
    Function Get-StorageFileServer 2.0.0.0 Storage
    Function Get-StorageFirmwareInformation 2.0.0.0 Storage
    Function Get-StorageHealthAction 2.0.0.0 Storage
    Function Get-StorageHealthReport 2.0.0.0 Storage
    Function Get-StorageHealthSetting 2.0.0.0 Storage
    Function Get-StorageHistory 2.0.0.0 Storage
    Function Get-StorageJob 2.0.0.0 Storage
    Function Get-StorageNode 2.0.0.0 Storage
    Function Get-StoragePool 2.0.0.0 Storage
    Function Get-StorageProvider 2.0.0.0 Storage
    Function Get-StorageRack 2.0.0.0 Storage
    Function Get-StorageReliabilityCounter 2.0.0.0 Storage
    Function Get-StorageScaleUnit 2.0.0.0 Storage
    Function Get-StorageSetting 2.0.0.0 Storage
    Function Get-StorageSite 2.0.0.0 Storage
    Function Get-StorageSubSystem 2.0.0.0 Storage
    Function Get-StorageTier 2.0.0.0 Storage
    Function Get-StorageTierSupportedSize 2.0.0.0 Storage
    Function Get-SupportedClusterSizes 2.0.0.0 Storage
    Function Get-SupportedFileSystems 2.0.0.0 Storage
    Cmdlet Get-SystemDriver 1.0 ConfigCI
    Function Get-TargetPort 2.0.0.0 Storage
    Function Get-TargetPortal 2.0.0.0 Storage
    Function Get-TestDriveItem 3.4.0 Pester
    Cmdlet Get-TimeZone 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-TlsCipherSuite 2.0.0.0 TLS
    Cmdlet Get-TlsEccCurve 2.0.0.0 TLS
    Cmdlet Get-Tpm 2.0.0.0 TrustedPlatformModule
    Cmdlet Get-TpmEndorsementKeyInfo 2.0.0.0 TrustedPlatformModule
    Cmdlet Get-TpmSupportedFeature 2.0.0.0 TrustedPlatformModule
    Cmdlet Get-TraceSource 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-Transaction 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-TroubleshootingPack 1.0.0.0 TroubleshootingPack
    Cmdlet Get-TrustedProvisioningCertificate 3.0 Provisioning
    Cmdlet Get-TypeData 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-UevAppxPackage 2.1.639.0 UEV
    Cmdlet Get-UevConfiguration 2.1.639.0 UEV
    Cmdlet Get-UevStatus 2.1.639.0 UEV
    Cmdlet Get-UevTemplate 2.1.639.0 UEV
    Cmdlet Get-UevTemplateProgram 2.1.639.0 UEV
    Cmdlet Get-UICulture 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-Unique 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Get-Variable 3.1.0.0 Microsoft.PowerShell.Utility
    Function Get-Verb    
    Cmdlet Get-VHD 2.0.0.0 Hyper-V
    Cmdlet Get-VHDSet 2.0.0.0 Hyper-V
    Cmdlet Get-VHDSnapshot 2.0.0.0 Hyper-V
    Function Get-VirtualDisk 2.0.0.0 Storage
    Function Get-VirtualDiskSupportedSize 2.0.0.0 Storage
    Cmdlet Get-VM 2.0.0.0 Hyper-V
    Cmdlet Get-VMAssignableDevice 2.0.0.0 Hyper-V
    Cmdlet Get-VMBios 2.0.0.0 Hyper-V
    Alias Get-VMCheckpoint 2.0.0.0 Hyper-V
    Cmdlet Get-VMComPort 2.0.0.0 Hyper-V
    Cmdlet Get-VMConnectAccess 2.0.0.0 Hyper-V
    Cmdlet Get-VMDvdDrive 2.0.0.0 Hyper-V
    Cmdlet Get-VMFibreChannelHba 2.0.0.0 Hyper-V
    Cmdlet Get-VMFirmware 2.0.0.0 Hyper-V
    Cmdlet Get-VMFloppyDiskDrive 2.0.0.0 Hyper-V
    Cmdlet Get-VMGpuPartitionAdapter 2.0.0.0 Hyper-V
    Cmdlet Get-VMGroup 2.0.0.0 Hyper-V
    Cmdlet Get-VMHardDiskDrive 2.0.0.0 Hyper-V
    Cmdlet Get-VMHost 2.0.0.0 Hyper-V
    Cmdlet Get-VMHostAssignableDevice 2.0.0.0 Hyper-V
    Cmdlet Get-VMHostCluster 2.0.0.0 Hyper-V
    Cmdlet Get-VMHostNumaNode 2.0.0.0 Hyper-V
    Cmdlet Get-VMHostNumaNodeStatus 2.0.0.0 Hyper-V
    Cmdlet Get-VMHostSupportedVersion 2.0.0.0 Hyper-V
    Cmdlet Get-VMIdeController 2.0.0.0 Hyper-V
    Cmdlet Get-VMIntegrationService 2.0.0.0 Hyper-V
    Cmdlet Get-VMKeyProtector 2.0.0.0 Hyper-V
    Cmdlet Get-VMKeyStorageDrive 2.0.0.0 Hyper-V
    Cmdlet Get-VMMemory 2.0.0.0 Hyper-V
    Cmdlet Get-VMMigrationNetwork 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapter 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapterAcl 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapterExtendedAcl 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapterFailoverConfiguration 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapterIsolation 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapterRdma 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapterRoutingDomainMapping 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapterTeamMapping 2.0.0.0 Hyper-V
    Cmdlet Get-VMNetworkAdapterVlan 2.0.0.0 Hyper-V
    Cmdlet Get-VMPartitionableGpu 2.0.0.0 Hyper-V
    Cmdlet Get-VMPmemController 2.0.0.0 Hyper-V
    Cmdlet Get-VMProcessor 2.0.0.0 Hyper-V
    Cmdlet Get-VMRemoteFx3dVideoAdapter 2.0.0.0 Hyper-V
    Cmdlet Get-VMRemoteFXPhysicalVideoAdapter 2.0.0.0 Hyper-V
    Cmdlet Get-VMReplication 2.0.0.0 Hyper-V
    Cmdlet Get-VMReplicationAuthorizationEntry 2.0.0.0 Hyper-V
    Cmdlet Get-VMReplicationServer 2.0.0.0 Hyper-V
    Cmdlet Get-VMResourcePool 2.0.0.0 Hyper-V
    Cmdlet Get-VMSan 2.0.0.0 Hyper-V
    Cmdlet Get-VMScsiController 2.0.0.0 Hyper-V
    Cmdlet Get-VMSecurity 2.0.0.0 Hyper-V
    Cmdlet Get-VMSnapshot 2.0.0.0 Hyper-V
    Cmdlet Get-VMStoragePath 2.0.0.0 Hyper-V
    Cmdlet Get-VMStorageSettings 2.0.0.0 Hyper-V
    Cmdlet Get-VMSwitch 2.0.0.0 Hyper-V
    Cmdlet Get-VMSwitchExtension 2.0.0.0 Hyper-V
    Cmdlet Get-VMSwitchExtensionPortData 2.0.0.0 Hyper-V
    Cmdlet Get-VMSwitchExtensionPortFeature 2.0.0.0 Hyper-V
    Cmdlet Get-VMSwitchExtensionSwitchData 2.0.0.0 Hyper-V
    Cmdlet Get-VMSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V
    Cmdlet Get-VMSwitchTeam 2.0.0.0 Hyper-V
    Cmdlet Get-VMSystemSwitchExtension 2.0.0.0 Hyper-V
    Cmdlet Get-VMSystemSwitchExtensionPortFeature 2.0.0.0 Hyper-V
    Cmdlet Get-VMSystemSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V
    Cmdlet Get-VMVideo 2.0.0.0 Hyper-V
    Function Get-Volume 2.0.0.0 Storage
    Function Get-VolumeCorruptionCount 2.0.0.0 Storage
    Function Get-VolumeScrubPolicy 2.0.0.0 Storage
    Function Get-VpnConnection 2.0.0.0 VpnClient
    Function Get-VpnConnectionTrigger 2.0.0.0 VpnClient
    Function Get-WdacBidTrace 1.0.0.0 Wdac
    Cmdlet Get-WheaMemoryPolicy 2.0.0.0 Whea
    Cmdlet Get-WIMBootEntry 3.0 Dism
    Cmdlet Get-WinAcceptLanguageFromLanguageListOptOut 2.0.0.0 International
    Cmdlet Get-WinCultureFromLanguageListOptOut 2.0.0.0 International
    Cmdlet Get-WinDefaultInputMethodOverride 2.0.0.0 International
    Cmdlet Get-WindowsCapability 3.0 Dism
    Cmdlet Get-WindowsDeveloperLicense 1.0.0.0 WindowsDeveloperLicense
    Cmdlet Get-WindowsDriver 3.0 Dism
    Cmdlet Get-WindowsEdition 3.0 Dism
    Cmdlet Get-WindowsErrorReporting 1.0 WindowsErrorReporting
    Function Get-WindowsFeature 2.0.0.0 ServerManager
    Cmdlet Get-WindowsImage 3.0 Dism
    Cmdlet Get-WindowsImageContent 3.0 Dism
    Cmdlet Get-WindowsOptionalFeature 3.0 Dism
    Cmdlet Get-WindowsPackage 3.0 Dism
    Cmdlet Get-WindowsReservedStorageState 3.0 Dism
    Cmdlet Get-WindowsSearchSetting 1.0.0.0 WindowsSearch
    Function Get-WindowsUpdateLog 1.0.0.0 WindowsUpdate
    Cmdlet Get-WinEvent 3.0.0.0 Microsoft.PowerShell.Diagnostics
    Cmdlet Get-WinHomeLocation 2.0.0.0 International
    Cmdlet Get-WinLanguageBarOption 2.0.0.0 International
    Cmdlet Get-WinSystemLocale 2.0.0.0 International
    Cmdlet Get-WinUILanguageOverride 2.0.0.0 International
    Cmdlet Get-WinUserLanguageList 2.0.0.0 International
    Cmdlet Get-WmiObject 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Get-WSManCredSSP 3.0.0.0 Microsoft.WSMan.Management
    Cmdlet Get-WSManInstance 3.0.0.0 Microsoft.WSMan.Management
    Cmdlet Grant-ADAuthenticationPolicySiloAccess 1.0.1.0 ActiveDirectory
    Function Grant-FileShareAccess 2.0.0.0 Storage
    Function Grant-HgsKeyProtectorAccess 1.0.0.0 HgsClient
    Function Grant-NfsSharePermission 1.0 NFS
    Function Grant-RDOUAccess 2.0.0.0 RemoteDesktop
    Function Grant-SmbShareAccess 2.0.0.0 SmbShare
    Cmdlet Grant-VMConnectAccess 2.0.0.0 Hyper-V
    Cmdlet Group-Object 3.1.0.0 Microsoft.PowerShell.Utility
    Function H:    
    Function help    
    Function Hide-VirtualDisk 2.0.0.0 Storage
    Function I:    
    Cmdlet Import-Alias 3.1.0.0 Microsoft.PowerShell.Utility
    Function Import-BCCachePackage 1.0.0.0 BranchCache
    Function Import-BCSecretKey 1.0.0.0 BranchCache
    Cmdlet Import-BinaryMiLog 1.0.0.0 CimCmdlets
    Cmdlet Import-Certificate 1.0.0.0 PKI
    Cmdlet Import-Clixml 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Import-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics
    Cmdlet Import-Csv 3.1.0.0 Microsoft.PowerShell.Utility
    Function Import-DhcpServer 2.0.0.0 DhcpServer
    Function Import-DnsServerResourceRecordDS 2.0.0.0 DnsServer
    Function Import-DnsServerRootHint 2.0.0.0 DnsServer
    Function Import-DnsServerTrustAnchor 2.0.0.0 DnsServer
    Cmdlet Import-GPO 1.0.0.0 GroupPolicy
    Function Import-HgsGuardian 1.0.0.0 HgsClient
    Function Import-IscsiTargetServerConfiguration 2.0.0.0 IscsiTarget
    Cmdlet Import-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Function Import-IseSnippet 1.0.0.0 ISE
    Cmdlet Import-LocalizedData 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Import-Module 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Import-PackageProvider 1.0.0.1 PackageManagement
    Cmdlet Import-PfxCertificate 1.0.0.0 PKI
    Function Import-PowerShellDataFile 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Import-PSSession 3.1.0.0 Microsoft.PowerShell.Utility
    Function Import-RDPersonalSessionDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Import-RDPersonalVirtualDesktopAssignment 2.0.0.0 RemoteDesktop
    Cmdlet Import-StartLayout 1.0.0.2 StartLayout
    Function ImportSystemModules    
    Cmdlet Import-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule
    Cmdlet Import-UevConfiguration 2.1.639.0 UEV
    Cmdlet Import-VM 2.0.0.0 Hyper-V
    Cmdlet Import-VMInitialReplication 2.0.0.0 Hyper-V
    Function In 3.4.0 Pester
    Function Initialize-Disk 2.0.0.0 Storage
    Cmdlet Initialize-PmemPhysicalDevice 1.0.0.0 PersistentMemory
    Cmdlet Initialize-Tpm 2.0.0.0 TrustedPlatformModule
    Alias Initialize-Volume 2.0.0.0 Storage
    Function InModuleScope 3.4.0 Pester
    Cmdlet Install-ADServiceAccount 1.0.1.0 ActiveDirectory
    Function Install-Dtc 1.0.0.0 MsDtc
    Function Install-Module 1.0.0.1 PowerShellGet
    Cmdlet Install-NfsMappingStore 1.0 NFS
    Cmdlet Install-Package 1.0.0.1 PackageManagement
    Cmdlet Install-PackageProvider 1.0.0.1 PackageManagement
    Cmdlet Install-ProvisioningPackage 3.0 Provisioning
    Function Install-Script 1.0.0.1 PowerShellGet
    Cmdlet Install-TrustedProvisioningCertificate 3.0 Provisioning
    Function Install-WindowsFeature 2.0.0.0 ServerManager
    Function Invoke-AsWorkflow 1.0.0.0 PSWorkflowUtility
    Cmdlet Invoke-BpaModel 1.0 BestPractices
    Cmdlet Invoke-CimMethod 1.0.0.0 CimCmdlets
    Cmdlet Invoke-Command 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Invoke-CommandInDesktopPackage 2.0.1.0 Appx
    Function Invoke-DhcpServerv4FailoverReplication 2.0.0.0 DhcpServer
    Function Invoke-DnsServerSigningKeyRollover 2.0.0.0 DnsServer
    Function Invoke-DnsServerZoneSign 2.0.0.0 DnsServer
    Function Invoke-DnsServerZoneUnsign 2.0.0.0 DnsServer
    Cmdlet Invoke-DscResource 1.1 PSDesiredStateConfiguration
    Cmdlet Invoke-Expression 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Invoke-GPUpdate 1.0.0.0 GroupPolicy
    Cmdlet Invoke-History 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Invoke-Item 3.1.0.0 Microsoft.PowerShell.Management
    Function Invoke-Mock 3.4.0 Pester
    Function Invoke-OperationValidation 1.0.1 Microsoft.PowerShell.Operation.Validation
    Function Invoke-Pester 3.4.0 Pester
    Function Invoke-RDUserLogoff 2.0.0.0 RemoteDesktop
    Cmdlet Invoke-RestMethod 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Invoke-TroubleshootingPack 1.0.0.0 TroubleshootingPack
    Cmdlet Invoke-WebRequest 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Invoke-WmiMethod 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Invoke-WSManAction 3.0.0.0 Microsoft.WSMan.Management
    Function It 3.4.0 Pester
    Function J:    
    Cmdlet Join-DtcDiagnosticResourceManager 1.0.0.0 MsDtc
    Cmdlet Join-Path 3.1.0.0 Microsoft.PowerShell.Management
    Function K:    
    Function L:    
    Cmdlet Limit-EventLog 3.1.0.0 Microsoft.PowerShell.Management
    Function Lock-BitLocker 1.0.0.0 BitLocker
    Function M:    
    Cmdlet Measure-Command 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Measure-Object 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Measure-VM 2.0.0.0 Hyper-V
    Cmdlet Measure-VMReplication 2.0.0.0 Hyper-V
    Cmdlet Measure-VMResourcePool 2.0.0.0 Hyper-V
    Cmdlet Merge-CIPolicy 1.0 ConfigCI
    Cmdlet Merge-VHD 2.0.0.0 Hyper-V
    Function mkdir    
    Function Mock 3.4.0 Pester
    Filter more    
    Alias Mount-AppPackageVolume 2.0.1.0 Appx
    Cmdlet Mount-AppvClientConnectionGroup 1.0.0.0 AppvClient
    Cmdlet Mount-AppvClientPackage 1.0.0.0 AppvClient
    Cmdlet Mount-AppxVolume 2.0.1.0 Appx
    Function Mount-DiskImage 2.0.0.0 Storage
    Cmdlet Mount-IscsiVirtualDiskSnapshot 2.0.0.0 IscsiTarget
    Cmdlet Mount-VHD 2.0.0.0 Hyper-V
    Cmdlet Mount-VMHostAssignableDevice 2.0.0.0 Hyper-V
    Cmdlet Mount-WindowsImage 3.0 Dism
    Cmdlet Move-ADDirectoryServer 1.0.1.0 ActiveDirectory
    Cmdlet Move-ADDirectoryServerOperationMasterRole 1.0.1.0 ActiveDirectory
    Cmdlet Move-ADObject 1.0.1.0 ActiveDirectory
    Alias Move-AppPackage 2.0.1.0 Appx
    Cmdlet Move-AppxPackage 2.0.1.0 Appx
    Cmdlet Move-Item 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Move-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management
    Function Move-RDVirtualDesktop 2.0.0.0 RemoteDesktop
    Alias Move-SmbClient 2.0.0.0 SmbWitness
    Function Move-SmbWitnessClient 2.0.0.0 SmbWitness
    Cmdlet Move-VM 2.0.0.0 Hyper-V
    Cmdlet Move-VMStorage 2.0.0.0 Hyper-V
    Function N:    
    Cmdlet New-ADAuthenticationPolicy 1.0.1.0 ActiveDirectory
    Cmdlet New-ADAuthenticationPolicySilo 1.0.1.0 ActiveDirectory
    Cmdlet New-ADCentralAccessPolicy 1.0.1.0 ActiveDirectory
    Cmdlet New-ADCentralAccessRule 1.0.1.0 ActiveDirectory
    Cmdlet New-ADClaimTransformPolicy 1.0.1.0 ActiveDirectory
    Cmdlet New-ADClaimType 1.0.1.0 ActiveDirectory
    Cmdlet New-ADComputer 1.0.1.0 ActiveDirectory
    Cmdlet New-ADDCCloneConfigFile 1.0.1.0 ActiveDirectory
    Cmdlet New-ADFineGrainedPasswordPolicy 1.0.1.0 ActiveDirectory
    Cmdlet New-ADGroup 1.0.1.0 ActiveDirectory
    Cmdlet New-ADObject 1.0.1.0 ActiveDirectory
    Cmdlet New-ADOrganizationalUnit 1.0.1.0 ActiveDirectory
    Cmdlet New-ADReplicationSite 1.0.1.0 ActiveDirectory
    Cmdlet New-ADReplicationSiteLink 1.0.1.0 ActiveDirectory
    Cmdlet New-ADReplicationSiteLinkBridge 1.0.1.0 ActiveDirectory
    Cmdlet New-ADReplicationSubnet 1.0.1.0 ActiveDirectory
    Cmdlet New-ADResourceProperty 1.0.1.0 ActiveDirectory
    Cmdlet New-ADResourcePropertyList 1.0.1.0 ActiveDirectory
    Cmdlet New-ADServiceAccount 1.0.1.0 ActiveDirectory
    Cmdlet New-ADUser 1.0.1.0 ActiveDirectory
    Cmdlet New-Alias 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet New-AppLockerPolicy 2.0.0.0 AppLocker
    Function New-AutologgerConfig 1.0.0.0 EventTracingManagement
    Cmdlet New-CertificateNotificationTask 1.0.0.0 PKI
    Cmdlet New-CimInstance 1.0.0.0 CimCmdlets
    Cmdlet New-CimSession 1.0.0.0 CimCmdlets
    Cmdlet New-CimSessionOption 1.0.0.0 CimCmdlets
    Cmdlet New-CIPolicy 1.0 ConfigCI
    Cmdlet New-CIPolicyRule 1.0 ConfigCI
    Function New-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents
    Function New-DscChecksum 1.1 PSDesiredStateConfiguration
    Cmdlet New-DtcDiagnosticTransaction 1.0.0.0 MsDtc
    Function New-EapConfiguration 2.0.0.0 VpnClient
    Function New-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet New-Event 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet New-EventLog 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet New-FileCatalog 3.0.0.0 Microsoft.PowerShell.Security
    Function New-FileShare 2.0.0.0 Storage
    Function New-Fixture 3.4.0 Pester
    Cmdlet New-GPLink 1.0.0.0 GroupPolicy
    Cmdlet New-GPO 1.0.0.0 GroupPolicy
    Cmdlet New-GPStarterGPO 1.0.0.0 GroupPolicy
    Function New-Guid 3.1.0.0 Microsoft.PowerShell.Utility
    Function New-HgsGuardian 1.0.0.0 HgsClient
    Function New-HgsKeyProtector 1.0.0.0 HgsClient
    Cmdlet New-HgsTraceTarget 1.0.0.0 HgsDiagnostics
    Cmdlet New-IscsiServerTarget 2.0.0.0 IscsiTarget
    Function New-IscsiTargetPortal 1.0.0.0 iSCSI
    Cmdlet New-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Function New-IseSnippet 1.0.0.0 ISE
    Cmdlet New-Item 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet New-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet New-JobTrigger 1.1.0.0 PSScheduledJob
    Cmdlet New-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet New-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Function New-MaskingSet 2.0.0.0 Storage
    Cmdlet New-Module 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet New-ModuleManifest 3.0.0.0 Microsoft.PowerShell.Core
    Function New-MpPerformanceRecording 1.0 ConfigDefenderPerformance
    Function New-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter
    Function New-NetEventSession 1.0.0.0 NetEventPacketCapture
    Function New-NetFirewallRule 2.0.0.0 NetSecurity
    Function New-NetIPAddress 1.0.0.0 NetTCPIP
    Function New-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition
    Cmdlet New-NetIPsecAuthProposal 2.0.0.0 NetSecurity
    Function New-NetIPsecDospSetting 2.0.0.0 NetSecurity
    Cmdlet New-NetIPsecMainModeCryptoProposal 2.0.0.0 NetSecurity
    Function New-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity
    Function New-NetIPsecMainModeRule 2.0.0.0 NetSecurity
    Function New-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity
    Function New-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity
    Cmdlet New-NetIPsecQuickModeCryptoProposal 2.0.0.0 NetSecurity
    Function New-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity
    Function New-NetIPsecRule 2.0.0.0 NetSecurity
    Function New-NetLbfoTeam 2.0.0.0 NetLbfo
    Function New-NetNat 1.0.0.0 NetNat
    Function New-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition
    Function New-NetNeighbor 1.0.0.0 NetTCPIP
    Function New-NetQosPolicy 2.0.0.0 NetQos
    Function New-NetRoute 1.0.0.0 NetTCPIP
    Function New-NetSwitchTeam 1.0.0.0 NetSwitchTeam
    Function New-NetTransportFilter 1.0.0.0 NetTCPIP
    Function New-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager
    Function New-NfsClientgroup 1.0 NFS
    Cmdlet New-NfsMappedIdentity 1.0 NFS
    Cmdlet New-NfsNetgroup 1.0 NFS
    Function New-NfsShare 1.0 NFS
    Cmdlet New-Object 3.1.0.0 Microsoft.PowerShell.Utility
    Function New-Partition 2.0.0.0 Storage
    Function New-PesterOption 3.4.0 Pester
    Cmdlet New-PmemDisk 1.0.0.0 PersistentMemory
    Cmdlet New-ProvisioningRepro 3.0 Provisioning
    Cmdlet New-PSDrive 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet New-PSRoleCapabilityFile 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet New-PSSession 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet New-PSSessionConfigurationFile 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet New-PSSessionOption 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet New-PSTransportOption 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet New-PSWorkflowExecutionOption 2.0.0.0 PSWorkflow
    Function New-PSWorkflowSession 2.0.0.0 PSWorkflow
    Function New-RDCertificate 2.0.0.0 RemoteDesktop
    Function New-RDPersonalVirtualDesktopPatchSchedule 2.0.0.0 RemoteDesktop
    Function New-RDRemoteApp 2.0.0.0 RemoteDesktop
    Function New-RDSessionCollection 2.0.0.0 RemoteDesktop
    Function New-RDSessionDeployment 2.0.0.0 RemoteDesktop
    Function New-RDVirtualDesktopCollection 2.0.0.0 RemoteDesktop
    Function New-RDVirtualDesktopDeployment 2.0.0.0 RemoteDesktop
    Cmdlet New-ScheduledJobOption 1.1.0.0 PSScheduledJob
    Function New-ScheduledTask 1.0.0.0 ScheduledTasks
    Function New-ScheduledTaskAction 1.0.0.0 ScheduledTasks
    Function New-ScheduledTaskPrincipal 1.0.0.0 ScheduledTasks
    Function New-ScheduledTaskSettingsSet 1.0.0.0 ScheduledTasks
    Function New-ScheduledTaskTrigger 1.0.0.0 ScheduledTasks
    Function New-ScriptFileInfo 1.0.0.1 PowerShellGet
    Cmdlet New-SelfSignedCertificate 1.0.0.0 PKI
    Cmdlet New-Service 3.1.0.0 Microsoft.PowerShell.Management
    Function New-SmbGlobalMapping 2.0.0.0 SmbShare
    Function New-SmbMapping 2.0.0.0 SmbShare
    Function New-SmbMultichannelConstraint 2.0.0.0 SmbShare
    Function New-SmbServerCertificateMapping 2.0.0.0 SmbShare
    Function New-SmbShare 2.0.0.0 SmbShare
    Function New-StorageBusBinding 1.0.0.0 StorageBusCache
    Function New-StorageBusCacheStore 1.0.0.0 StorageBusCache
    Function New-StorageFileServer 2.0.0.0 Storage
    Function New-StoragePool 2.0.0.0 Storage
    Function New-StorageSubsystemVirtualDisk 2.0.0.0 Storage
    Function New-StorageTier 2.0.0.0 Storage
    Function New-TemporaryFile 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet New-TimeSpan 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet New-TlsSessionTicketKey 2.0.0.0 TLS
    Cmdlet New-Variable 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet New-VFD 2.0.0.0 Hyper-V
    Cmdlet New-VHD 2.0.0.0 Hyper-V
    Function New-VirtualDisk 2.0.0.0 Storage
    Function New-VirtualDiskClone 2.0.0.0 Storage
    Function New-VirtualDiskSnapshot 2.0.0.0 Storage
    Cmdlet New-VM 2.0.0.0 Hyper-V
    Cmdlet New-VMGroup 2.0.0.0 Hyper-V
    Cmdlet New-VMReplicationAuthorizationEntry 2.0.0.0 Hyper-V
    Cmdlet New-VMResourcePool 2.0.0.0 Hyper-V
    Cmdlet New-VMSan 2.0.0.0 Hyper-V
    Cmdlet New-VMSwitch 2.0.0.0 Hyper-V
    Function New-Volume 2.0.0.0 Storage
    Function New-VpnServerAddress 2.0.0.0 VpnClient
    Cmdlet New-WebServiceProxy 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet New-WindowsCustomImage 3.0 Dism
    Cmdlet New-WindowsImage 3.0 Dism
    Cmdlet New-WinEvent 3.0.0.0 Microsoft.PowerShell.Diagnostics
    Cmdlet New-WinUserLanguageList 2.0.0.0 International
    Cmdlet New-WSManInstance 3.0.0.0 Microsoft.WSMan.Management
    Cmdlet New-WSManSessionOption 3.0.0.0 Microsoft.WSMan.Management
    Function O:    
    Function Open-NetGPO 2.0.0.0 NetSecurity
    Alias Optimize-AppProvisionedPackages 3.0 Dism
    Cmdlet Optimize-AppxProvisionedPackages 3.0 Dism
    Alias Optimize-ProvisionedAppPackages 3.0 Dism
    Alias Optimize-ProvisionedAppxPackages 3.0 Dism
    Function Optimize-StoragePool 2.0.0.0 Storage
    Cmdlet Optimize-VHD 2.0.0.0 Hyper-V
    Cmdlet Optimize-VHDSet 2.0.0.0 Hyper-V
    Function Optimize-Volume 2.0.0.0 Storage
    Cmdlet Optimize-WindowsImage 3.0 Dism
    Function oss    
    Cmdlet Out-Default 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Out-File 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Out-GridView 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Out-Host 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Out-Null 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Out-Printer 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Out-String 3.1.0.0 Microsoft.PowerShell.Utility
    Function P:    
    Function Pause    
    Cmdlet Pop-Location 3.1.0.0 Microsoft.PowerShell.Management
    Function prompt    
    Cmdlet Protect-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security
    Function PSConsoleHostReadLine 2.0.0 PSReadline
    Function psEdit    
    Cmdlet Publish-AppvClientPackage 1.0.0.0 AppvClient
    Function Publish-BCFileContent 1.0.0.0 BranchCache
    Function Publish-BCWebContent 1.0.0.0 BranchCache
    Cmdlet Publish-DscConfiguration 1.1 PSDesiredStateConfiguration
    Function Publish-Module 1.0.0.1 PowerShellGet
    Function Publish-Script 1.0.0.1 PowerShellGet
    Cmdlet Push-Location 3.1.0.0 Microsoft.PowerShell.Management
    Function Q:    
    Function R:    
    Cmdlet Read-Host 3.1.0.0 Microsoft.PowerShell.Utility
    Function Read-PrinterNfcTag 1.1 PrintManagement
    Cmdlet Receive-DtcDiagnosticTransaction 1.0.0.0 MsDtc
    Cmdlet Receive-Job 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Receive-PSSession 3.0.0.0 Microsoft.PowerShell.Core
    Alias Reconcile-DhcpServerv4IPRecord 2.0.0.0 DhcpServer
    Cmdlet Register-ArgumentCompleter 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Register-CimIndicationEvent 1.0.0.0 CimCmdlets
    Function Register-ClusteredScheduledTask 1.0.0.0 ScheduledTasks
    Function Register-DnsClient 1.0.0.0 DnsClient
    Function Register-DnsServerDirectoryPartition 2.0.0.0 DnsServer
    Cmdlet Register-EngineEvent 3.1.0.0 Microsoft.PowerShell.Utility
    Function Register-IscsiSession 1.0.0.0 iSCSI
    Cmdlet Register-ObjectEvent 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Register-PackageSource 1.0.0.1 PackageManagement
    Function Register-PSRepository 1.0.0.1 PowerShellGet
    Cmdlet Register-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Register-ScheduledJob 1.1.0.0 PSScheduledJob
    Function Register-ScheduledTask 1.0.0.0 ScheduledTasks
    Function Register-StorageSubsystem 2.0.0.0 Storage
    Cmdlet Register-UevTemplate 2.1.639.0 UEV
    Cmdlet Register-WmiEvent 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Remove-ADAuthenticationPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADAuthenticationPolicySilo 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADCentralAccessPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADCentralAccessPolicyMember 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADCentralAccessRule 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADClaimTransformPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADClaimType 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADComputer 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADComputerServiceAccount 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADDomainControllerPasswordReplicationPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADFineGrainedPasswordPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADFineGrainedPasswordPolicySubject 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADGroup 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADGroupMember 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADObject 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADOrganizationalUnit 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADPrincipalGroupMembership 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADReplicationSite 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADReplicationSiteLink 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADReplicationSiteLinkBridge 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADReplicationSubnet 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADResourceProperty 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADResourcePropertyList 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADResourcePropertyListMember 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADServiceAccount 1.0.1.0 ActiveDirectory
    Cmdlet Remove-ADUser 1.0.1.0 ActiveDirectory
    Alias Remove-AppPackage 2.0.1.0 Appx
    Alias Remove-AppPackageVolume 2.0.1.0 Appx
    Alias Remove-AppProvisionedPackage 3.0 Dism
    Cmdlet Remove-AppvClientConnectionGroup 1.0.0.0 AppvClient
    Cmdlet Remove-AppvClientPackage 1.0.0.0 AppvClient
    Cmdlet Remove-AppvPublishingServer 1.0.0.0 AppvClient
    Cmdlet Remove-AppxPackage 2.0.1.0 Appx
    Cmdlet Remove-AppxProvisionedPackage 3.0 Dism
    Cmdlet Remove-AppxVolume 2.0.1.0 Appx
    Function Remove-AutologgerConfig 1.0.0.0 EventTracingManagement
    Function Remove-BCDataCacheExtension 1.0.0.0 BranchCache
    Function Remove-BitLockerKeyProtector 1.0.0.0 BitLocker
    Cmdlet Remove-BitsTransfer 2.0.0.0 BitsTransfer
    Cmdlet Remove-CertificateEnrollmentPolicyServer 1.0.0.0 PKI
    Cmdlet Remove-CertificateNotificationTask 1.0.0.0 PKI
    Cmdlet Remove-CimInstance 1.0.0.0 CimCmdlets
    Cmdlet Remove-CimSession 1.0.0.0 CimCmdlets
    Cmdlet Remove-CIPolicyRule 1.0 ConfigCI
    Cmdlet Remove-Computer 3.1.0.0 Microsoft.PowerShell.Management
    Function Remove-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents
    Function Remove-DhcpServerDnsCredential 2.0.0.0 DhcpServer
    Function Remove-DhcpServerInDC 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4Class 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4ExclusionRange 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4Failover 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4FailoverScope 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4Filter 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4Lease 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4MulticastExclusionRange 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4MulticastLease 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4MulticastScope 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4OptionDefinition 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4OptionValue 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4Policy 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4PolicyIPRange 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4Reservation 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4Scope 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv4Superscope 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv6Class 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv6ExclusionRange 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv6Lease 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv6OptionDefinition 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv6OptionValue 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv6Reservation 2.0.0.0 DhcpServer
    Function Remove-DhcpServerv6Scope 2.0.0.0 DhcpServer
    Function Remove-DnsClientNrptRule 1.0.0.0 DnsClient
    Function Remove-DnsServerClientSubnet 2.0.0.0 DnsServer
    Function Remove-DnsServerDirectoryPartition 2.0.0.0 DnsServer
    Function Remove-DnsServerForwarder 2.0.0.0 DnsServer
    Function Remove-DnsServerQueryResolutionPolicy 2.0.0.0 DnsServer
    Function Remove-DnsServerRecursionScope 2.0.0.0 DnsServer
    Function Remove-DnsServerResourceRecord 2.0.0.0 DnsServer
    Function Remove-DnsServerResponseRateLimitingExceptionlist 2.0.0.0 DnsServer
    Function Remove-DnsServerRootHint 2.0.0.0 DnsServer
    Function Remove-DnsServerSigningKey 2.0.0.0 DnsServer
    Function Remove-DnsServerTrustAnchor 2.0.0.0 DnsServer
    Function Remove-DnsServerVirtualizationInstance 2.0.0.0 DnsServer
    Function Remove-DnsServerZone 2.0.0.0 DnsServer
    Function Remove-DnsServerZoneDelegation 2.0.0.0 DnsServer
    Function Remove-DnsServerZoneScope 2.0.0.0 DnsServer
    Function Remove-DnsServerZoneTransferPolicy 2.0.0.0 DnsServer
    Function Remove-DscConfigurationDocument 1.1 PSDesiredStateConfiguration
    Function Remove-DtcClusterTMMapping 1.0.0.0 MsDtc
    Function Remove-EtwTraceProvider 1.0.0.0 EventTracingManagement
    Alias Remove-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet Remove-Event 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Remove-EventLog 3.1.0.0 Microsoft.PowerShell.Management
    Function Remove-FileShare 2.0.0.0 Storage
    Cmdlet Remove-GPLink 1.0.0.0 GroupPolicy
    Cmdlet Remove-GPO 1.0.0.0 GroupPolicy
    Cmdlet Remove-GPPrefRegistryValue 1.0.0.0 GroupPolicy
    Cmdlet Remove-GPRegistryValue 1.0.0.0 GroupPolicy
    Function Remove-HgsClientHostKey 1.0.0.0 HgsClient
    Function Remove-HgsGuardian 1.0.0.0 HgsClient
    Function Remove-HnsEndpoint 1.0.0.1 HostNetworkingService
    Function Remove-HnsNamespace 1.0.0.1 HostNetworkingService
    Function Remove-HnsNetwork 1.0.0.1 HostNetworkingService
    Function Remove-HnsPolicyList 1.0.0.1 HostNetworkingService
    Function Remove-InitiatorId 2.0.0.0 Storage
    Function Remove-InitiatorIdFromMaskingSet 2.0.0.0 Storage
    Cmdlet Remove-IscsiServerTarget 2.0.0.0 IscsiTarget
    Function Remove-IscsiTargetPortal 1.0.0.0 iSCSI
    Cmdlet Remove-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Cmdlet Remove-IscsiVirtualDiskSnapshot 2.0.0.0 IscsiTarget
    Cmdlet Remove-IscsiVirtualDiskTargetMapping 2.0.0.0 IscsiTarget
    Cmdlet Remove-Item 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Remove-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Remove-Job 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Remove-JobTrigger 1.1.0.0 PSScheduledJob
    Cmdlet Remove-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Remove-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Remove-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Function Remove-MaskingSet 2.0.0.0 Storage
    Cmdlet Remove-Module 3.0.0.0 Microsoft.PowerShell.Core
    Function Remove-MpPreference 1.0 ConfigDefender
    Function Remove-MpPreference 1.0 Defender
    Function Remove-MpThreat 1.0 ConfigDefender
    Function Remove-MpThreat 1.0 Defender
    Function Remove-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter
    Function Remove-NetEventNetworkAdapter 1.0.0.0 NetEventPacketCapture
    Function Remove-NetEventPacketCaptureProvider 1.0.0.0 NetEventPacketCapture
    Function Remove-NetEventProvider 1.0.0.0 NetEventPacketCapture
    Function Remove-NetEventSession 1.0.0.0 NetEventPacketCapture
    Function Remove-NetEventVFPProvider 1.0.0.0 NetEventPacketCapture
    Function Remove-NetEventVmNetworkAdapter 1.0.0.0 NetEventPacketCapture
    Function Remove-NetEventVmSwitch 1.0.0.0 NetEventPacketCapture
    Function Remove-NetEventVmSwitchProvider 1.0.0.0 NetEventPacketCapture
    Function Remove-NetEventWFPCaptureProvider 1.0.0.0 NetEventPacketCapture
    Function Remove-NetFirewallRule 2.0.0.0 NetSecurity
    Function Remove-NetIPAddress 1.0.0.0 NetTCPIP
    Function Remove-NetIPHttpsCertBinding 1.0.0.0 NetworkTransition
    Function Remove-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition
    Function Remove-NetIPsecDospSetting 2.0.0.0 NetSecurity
    Function Remove-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity
    Function Remove-NetIPsecMainModeRule 2.0.0.0 NetSecurity
    Function Remove-NetIPsecMainModeSA 2.0.0.0 NetSecurity
    Function Remove-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity
    Function Remove-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity
    Function Remove-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity
    Function Remove-NetIPsecQuickModeSA 2.0.0.0 NetSecurity
    Function Remove-NetIPsecRule 2.0.0.0 NetSecurity
    Function Remove-NetLbfoTeam 2.0.0.0 NetLbfo
    Function Remove-NetLbfoTeamMember 2.0.0.0 NetLbfo
    Function Remove-NetLbfoTeamNic 2.0.0.0 NetLbfo
    Function Remove-NetNat 1.0.0.0 NetNat
    Function Remove-NetNatExternalAddress 1.0.0.0 NetNat
    Function Remove-NetNatStaticMapping 1.0.0.0 NetNat
    Function Remove-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Remove-NetNeighbor 1.0.0.0 NetTCPIP
    Function Remove-NetQosPolicy 2.0.0.0 NetQos
    Function Remove-NetRoute 1.0.0.0 NetTCPIP
    Function Remove-NetSwitchTeam 1.0.0.0 NetSwitchTeam
    Function Remove-NetSwitchTeamMember 1.0.0.0 NetSwitchTeam
    Function Remove-NetTransportFilter 1.0.0.0 NetTCPIP
    Function Remove-NetworkSwitchEthernetPortIPAddress 1.0.0.0 NetworkSwitchManager
    Function Remove-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager
    Function Remove-NfsClientgroup 1.0 NFS
    Cmdlet Remove-NfsMappedIdentity 1.0 NFS
    Cmdlet Remove-NfsNetgroup 1.0 NFS
    Function Remove-NfsShare 1.0 NFS
    Function Remove-OdbcDsn 1.0.0.0 Wdac
    Function Remove-Partition 2.0.0.0 Storage
    Function Remove-PartitionAccessPath 2.0.0.0 Storage
    Function Remove-PhysicalDisk 2.0.0.0 Storage
    Cmdlet Remove-PmemDisk 1.0.0.0 PersistentMemory
    Function Remove-Printer 1.1 PrintManagement
    Function Remove-PrinterDriver 1.1 PrintManagement
    Function Remove-PrinterPort 1.1 PrintManagement
    Function Remove-PrintJob 1.1 PrintManagement
    Alias Remove-ProvisionedAppPackage 3.0 Dism
    Alias Remove-ProvisionedAppxPackage 3.0 Dism
    Alias Remove-ProvisioningPackage 3.0 Provisioning
    Cmdlet Remove-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Remove-PSDrive 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Remove-PSReadLineKeyHandler 2.0.0 PSReadline
    Cmdlet Remove-PSSession 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Remove-PSSnapin 3.0.0.0 Microsoft.PowerShell.Core
    Function Remove-RDDatabaseConnectionString 2.0.0.0 RemoteDesktop
    Function Remove-RDPersonalSessionDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Remove-RDPersonalVirtualDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Remove-RDPersonalVirtualDesktopPatchSchedule 2.0.0.0 RemoteDesktop
    Function Remove-RDRemoteApp 2.0.0.0 RemoteDesktop
    Function Remove-RDServer 2.0.0.0 RemoteDesktop
    Function Remove-RDSessionCollection 2.0.0.0 RemoteDesktop
    Function Remove-RDSessionHost 2.0.0.0 RemoteDesktop
    Function Remove-RDVirtualDesktopCollection 2.0.0.0 RemoteDesktop
    Function Remove-RDVirtualDesktopFromCollection 2.0.0.0 RemoteDesktop
    Function Remove-SmbBandwidthLimit 2.0.0.0 SmbShare
    Function Remove-SMBComponent 2.0.0.0 SmbShare
    Function Remove-SmbGlobalMapping 2.0.0.0 SmbShare
    Function Remove-SmbMapping 2.0.0.0 SmbShare
    Function Remove-SmbMultichannelConstraint 2.0.0.0 SmbShare
    Function Remove-SmbServerCertificateMapping 2.0.0.0 SmbShare
    Function Remove-SmbShare 2.0.0.0 SmbShare
    Function Remove-SMServerPerformanceLog 1.0.0.0 ServerManagerTasks
    Function Remove-StorageBusBinding 1.0.0.0 StorageBusCache
    Function Remove-StorageFaultDomain 2.0.0.0 Storage
    Function Remove-StorageFileServer 2.0.0.0 Storage
    Function Remove-StorageHealthIntent 2.0.0.0 Storage
    Function Remove-StorageHealthSetting 2.0.0.0 Storage
    Function Remove-StoragePool 2.0.0.0 Storage
    Function Remove-StorageTier 2.0.0.0 Storage
    Function Remove-TargetPortFromMaskingSet 2.0.0.0 Storage
    Alias Remove-TrustedProvisioningCertificate 3.0 Provisioning
    Cmdlet Remove-TypeData 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Remove-Variable 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Remove-VHDSnapshot 2.0.0.0 Hyper-V
    Function Remove-VirtualDisk 2.0.0.0 Storage
    Function Remove-VirtualDiskFromMaskingSet 2.0.0.0 Storage
    Cmdlet Remove-VM 2.0.0.0 Hyper-V
    Cmdlet Remove-VMAssignableDevice 2.0.0.0 Hyper-V
    Alias Remove-VMCheckpoint 2.0.0.0 Hyper-V
    Cmdlet Remove-VMDvdDrive 2.0.0.0 Hyper-V
    Cmdlet Remove-VMFibreChannelHba 2.0.0.0 Hyper-V
    Cmdlet Remove-VMGpuPartitionAdapter 2.0.0.0 Hyper-V
    Cmdlet Remove-VMGroup 2.0.0.0 Hyper-V
    Cmdlet Remove-VMGroupMember 2.0.0.0 Hyper-V
    Cmdlet Remove-VMHardDiskDrive 2.0.0.0 Hyper-V
    Cmdlet Remove-VMHostAssignableDevice 2.0.0.0 Hyper-V
    Cmdlet Remove-VMKeyStorageDrive 2.0.0.0 Hyper-V
    Cmdlet Remove-VMMigrationNetwork 2.0.0.0 Hyper-V
    Cmdlet Remove-VMNetworkAdapter 2.0.0.0 Hyper-V
    Cmdlet Remove-VMNetworkAdapterAcl 2.0.0.0 Hyper-V
    Cmdlet Remove-VMNetworkAdapterExtendedAcl 2.0.0.0 Hyper-V
    Cmdlet Remove-VMNetworkAdapterRoutingDomainMapping 2.0.0.0 Hyper-V
    Cmdlet Remove-VMNetworkAdapterTeamMapping 2.0.0.0 Hyper-V
    Cmdlet Remove-VMPmemController 2.0.0.0 Hyper-V
    Cmdlet Remove-VMRemoteFx3dVideoAdapter 2.0.0.0 Hyper-V
    Cmdlet Remove-VMReplication 2.0.0.0 Hyper-V
    Cmdlet Remove-VMReplicationAuthorizationEntry 2.0.0.0 Hyper-V
    Cmdlet Remove-VMResourcePool 2.0.0.0 Hyper-V
    Cmdlet Remove-VMSan 2.0.0.0 Hyper-V
    Cmdlet Remove-VMSavedState 2.0.0.0 Hyper-V
    Cmdlet Remove-VMScsiController 2.0.0.0 Hyper-V
    Cmdlet Remove-VMSnapshot 2.0.0.0 Hyper-V
    Cmdlet Remove-VMStoragePath 2.0.0.0 Hyper-V
    Cmdlet Remove-VMSwitch 2.0.0.0 Hyper-V
    Cmdlet Remove-VMSwitchExtensionPortFeature 2.0.0.0 Hyper-V
    Cmdlet Remove-VMSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V
    Cmdlet Remove-VMSwitchTeamMember 2.0.0.0 Hyper-V
    Function Remove-VpnConnection 2.0.0.0 VpnClient
    Function Remove-VpnConnectionRoute 2.0.0.0 VpnClient
    Function Remove-VpnConnectionTriggerApplication 2.0.0.0 VpnClient
    Function Remove-VpnConnectionTriggerDnsConfiguration 2.0.0.0 VpnClient
    Function Remove-VpnConnectionTriggerTrustedNetwork 2.0.0.0 VpnClient
    Cmdlet Remove-WindowsCapability 3.0 Dism
    Cmdlet Remove-WindowsDriver 3.0 Dism
    Alias Remove-WindowsFeature 2.0.0.0 ServerManager
    Cmdlet Remove-WindowsImage 3.0 Dism
    Cmdlet Remove-WindowsPackage 3.0 Dism
    Cmdlet Remove-WmiObject 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Remove-WSManInstance 3.0.0.0 Microsoft.WSMan.Management
    Cmdlet Rename-ADObject 1.0.1.0 ActiveDirectory
    Cmdlet Rename-Computer 3.1.0.0 Microsoft.PowerShell.Management
    Function Rename-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents
    Function Rename-DhcpServerv4Superscope 2.0.0.0 DhcpServer
    Cmdlet Rename-GPO 1.0.0.0 GroupPolicy
    Cmdlet Rename-Item 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Rename-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Rename-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Rename-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Function Rename-MaskingSet 2.0.0.0 Storage
    Function Rename-NetAdapter 2.0.0.0 NetAdapter
    Function Rename-NetFirewallRule 2.0.0.0 NetSecurity
    Function Rename-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition
    Function Rename-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity
    Function Rename-NetIPsecMainModeRule 2.0.0.0 NetSecurity
    Function Rename-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity
    Function Rename-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity
    Function Rename-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity
    Function Rename-NetIPsecRule 2.0.0.0 NetSecurity
    Function Rename-NetLbfoTeam 2.0.0.0 NetLbfo
    Function Rename-NetSwitchTeam 1.0.0.0 NetSwitchTeam
    Function Rename-NfsClientgroup 1.0 NFS
    Function Rename-Printer 1.1 PrintManagement
    Cmdlet Rename-VM 2.0.0.0 Hyper-V
    Alias Rename-VMCheckpoint 2.0.0.0 Hyper-V
    Cmdlet Rename-VMGroup 2.0.0.0 Hyper-V
    Cmdlet Rename-VMNetworkAdapter 2.0.0.0 Hyper-V
    Cmdlet Rename-VMResourcePool 2.0.0.0 Hyper-V
    Cmdlet Rename-VMSan 2.0.0.0 Hyper-V
    Cmdlet Rename-VMSnapshot 2.0.0.0 Hyper-V
    Cmdlet Rename-VMSwitch 2.0.0.0 Hyper-V
    Cmdlet Repair-AppvClientConnectionGroup 1.0.0.0 AppvClient
    Cmdlet Repair-AppvClientPackage 1.0.0.0 AppvClient
    Function Repair-DhcpServerv4IPRecord 2.0.0.0 DhcpServer
    Function Repair-FileIntegrity 2.0.0.0 Storage
    Cmdlet Repair-UevTemplateIndex 2.1.639.0 UEV
    Function Repair-VirtualDisk 2.0.0.0 Storage
    Cmdlet Repair-VM 2.0.0.0 Hyper-V
    Function Repair-Volume 2.0.0.0 Storage
    Cmdlet Repair-WindowsImage 3.0 Dism
    Cmdlet Reset-ADServiceAccountPassword 1.0.1.0 ActiveDirectory
    Function Reset-BC 1.0.0.0 BranchCache
    Cmdlet Reset-ComputerMachinePassword 3.1.0.0 Microsoft.PowerShell.Management
    Function Reset-DAClientExperienceConfiguration 1.0.0.0 DirectAccessClientComponents
    Function Reset-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents
    Function Reset-DnsServerZoneKeyMasterRole 2.0.0.0 DnsServer
    Function Reset-DtcLog 1.0.0.0 MsDtc
    Function Reset-NCSIPolicyConfiguration 1.0.0.0 NetworkConnectivityStatus
    Function Reset-Net6to4Configuration 1.0.0.0 NetworkTransition
    Function Reset-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter
    Function Reset-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Reset-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition
    Function Reset-NetIsatapConfiguration 1.0.0.0 NetworkTransition
    Function Reset-NetTeredoConfiguration 1.0.0.0 NetworkTransition
    Function Reset-NfsStatistics 1.0 NFS
    Function Reset-PhysicalDisk 2.0.0.0 Storage
    Function Reset-StorageReliabilityCounter 2.0.0.0 Storage
    Cmdlet Reset-VMReplicationStatistics 2.0.0.0 Hyper-V
    Cmdlet Reset-VMResourceMetering 2.0.0.0 Hyper-V
    Cmdlet Resize-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Function Resize-Partition 2.0.0.0 Storage
    Function Resize-StorageTier 2.0.0.0 Storage
    Cmdlet Resize-VHD 2.0.0.0 Hyper-V
    Function Resize-VirtualDisk 2.0.0.0 Storage
    Cmdlet Resolve-DnsName 1.0.0.0 DnsClient
    Function Resolve-NfsMappedIdentity 1.0 NFS
    Cmdlet Resolve-Path 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Restart-Computer 3.1.0.0 Microsoft.PowerShell.Management
    Function Restart-NetAdapter 2.0.0.0 NetAdapter
    Function Restart-PcsvDevice 1.0.0.0 PcsvDevice
    Function Restart-PrintJob 1.1 PrintManagement
    Cmdlet Restart-Service 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Restart-VM 2.0.0.0 Hyper-V
    Cmdlet Restore-ADObject 1.0.1.0 ActiveDirectory
    Cmdlet Restore-Computer 3.1.0.0 Microsoft.PowerShell.Management
    Function Restore-DhcpServer 2.0.0.0 DhcpServer
    Function Restore-DnsServerPrimaryZone 2.0.0.0 DnsServer
    Function Restore-DnsServerSecondaryZone 2.0.0.0 DnsServer
    Function Restore-DscConfiguration 1.1 PSDesiredStateConfiguration
    Cmdlet Restore-GPO 1.0.0.0 GroupPolicy
    Cmdlet Restore-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Function Restore-NetworkSwitchConfiguration 1.0.0.0 NetworkSwitchManager
    Cmdlet Restore-UevBackup 2.1.639.0 UEV
    Cmdlet Restore-UevUserSetting 2.1.639.0 UEV
    Alias Restore-VMCheckpoint 2.0.0.0 Hyper-V
    Cmdlet Restore-VMSnapshot 2.0.0.0 Hyper-V
    Function Resume-BitLocker 1.0.0.0 BitLocker
    Cmdlet Resume-BitsTransfer 2.0.0.0 BitsTransfer
    Function Resume-DnsServerZone 2.0.0.0 DnsServer
    Cmdlet Resume-Job 3.0.0.0 Microsoft.PowerShell.Core
    Function Resume-PrintJob 1.1 PrintManagement
    Cmdlet Resume-ProvisioningSession 3.0 Provisioning
    Cmdlet Resume-Service 3.1.0.0 Microsoft.PowerShell.Management
    Function Resume-StorageBusDisk 1.0.0.0 StorageBusCache
    Cmdlet Resume-VM 2.0.0.0 Hyper-V
    Cmdlet Resume-VMReplication 2.0.0.0 Hyper-V
    Cmdlet Revoke-ADAuthenticationPolicySiloAccess 1.0.1.0 ActiveDirectory
    Function Revoke-FileShareAccess 2.0.0.0 Storage
    Function Revoke-HgsKeyProtectorAccess 1.0.0.0 HgsClient
    Function Revoke-NfsClientLock 1.0 NFS
    Function Revoke-NfsMountedClient 1.0 NFS
    Function Revoke-NfsOpenFile 1.0 NFS
    Function Revoke-NfsSharePermission 1.0 NFS
    Function Revoke-SmbShareAccess 2.0.0.0 SmbShare
    Cmdlet Revoke-VMConnectAccess 2.0.0.0 Hyper-V
    Function S:    
    Function SafeGetCommand 3.4.0 Pester
    Function Save-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet Save-Help 3.0.0.0 Microsoft.PowerShell.Core
    Function Save-Module 1.0.0.1 PowerShellGet
    Function Save-NetGPO 2.0.0.0 NetSecurity
    Function Save-NetworkSwitchConfiguration 1.0.0.0 NetworkSwitchManager
    Cmdlet Save-Package 1.0.0.1 PackageManagement
    Function Save-Script 1.0.0.1 PowerShellGet
    Cmdlet Save-VM 2.0.0.0 Hyper-V
    Cmdlet Save-WindowsImage 3.0 Dism
    Cmdlet Search-ADAccount 1.0.1.0 ActiveDirectory
    Cmdlet Select-Object 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Select-String 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Select-Xml 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Send-AppvClientReport 1.0.0.0 AppvClient
    Cmdlet Send-DtcDiagnosticTransaction 1.0.0.0 MsDtc
    Function Send-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet Send-MailMessage 3.1.0.0 Microsoft.PowerShell.Utility
    Function Send-RDUserMessage 2.0.0.0 RemoteDesktop
    Cmdlet Set-Acl 3.0.0.0 Microsoft.PowerShell.Security
    Cmdlet Set-ADAccountAuthenticationPolicySilo 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADAccountControl 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADAccountExpiration 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADAccountPassword 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADAuthenticationPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADAuthenticationPolicySilo 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADCentralAccessPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADCentralAccessRule 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADClaimTransformLink 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADClaimTransformPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADClaimType 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADComputer 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADDefaultDomainPasswordPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADDomain 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADDomainMode 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADFineGrainedPasswordPolicy 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADForest 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADForestMode 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADGroup 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADObject 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADOrganizationalUnit 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADReplicationConnection 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADReplicationSite 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADReplicationSiteLink 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADReplicationSiteLinkBridge 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADReplicationSubnet 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADResourceProperty 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADResourcePropertyList 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADServiceAccount 1.0.1.0 ActiveDirectory
    Cmdlet Set-ADUser 1.0.1.0 ActiveDirectory
    Cmdlet Set-Alias 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Set-AppBackgroundTaskResourcePolicy 1.0.0.0 AppBackgroundTask
    Cmdlet Set-AppLockerPolicy 2.0.0.0 AppLocker
    Alias Set-AppPackageDefaultVolume 2.0.1.0 Appx
    Alias Set-AppPackageProvisionedDataFile 3.0 Dism
    Cmdlet Set-AppvClientConfiguration 1.0.0.0 AppvClient
    Cmdlet Set-AppvClientMode 1.0.0.0 AppvClient
    Cmdlet Set-AppvClientPackage 1.0.0.0 AppvClient
    Cmdlet Set-AppvPublishingServer 1.0.0.0 AppvClient
    Cmdlet Set-AppxDefaultVolume 2.0.1.0 Appx
    Cmdlet Set-AppXProvisionedDataFile 3.0 Dism
    Function Set-AssignedAccess 1.0.0.0 AssignedAccess
    Cmdlet Set-AuthenticodeSignature 3.0.0.0 Microsoft.PowerShell.Security
    Alias Set-AutologgerConfig 1.0.0.0 EventTracingManagement
    Function Set-BCAuthentication 1.0.0.0 BranchCache
    Function Set-BCCache 1.0.0.0 BranchCache
    Function Set-BCDataCacheEntryMaxAge 1.0.0.0 BranchCache
    Function Set-BCMinSMBLatency 1.0.0.0 BranchCache
    Function Set-BCSecretKey 1.0.0.0 BranchCache
    Cmdlet Set-BitsTransfer 2.0.0.0 BitsTransfer
    Cmdlet Set-BpaResult 1.0 BestPractices
    Cmdlet Set-CertificateAutoEnrollmentPolicy 1.0.0.0 PKI
    Cmdlet Set-CimInstance 1.0.0.0 CimCmdlets
    Cmdlet Set-CIPolicyIdInfo 1.0 ConfigCI
    Cmdlet Set-CIPolicySetting 1.0 ConfigCI
    Cmdlet Set-CIPolicyVersion 1.0 ConfigCI
    Cmdlet Set-Clipboard 3.1.0.0 Microsoft.PowerShell.Management
    Function Set-ClusteredScheduledTask 1.0.0.0 ScheduledTasks
    Cmdlet Set-Content 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Set-Culture 2.0.0.0 International
    Function Set-DAClientExperienceConfiguration 1.0.0.0 DirectAccessClientComponents
    Function Set-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents
    Cmdlet Set-Date 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Set-DeliveryOptimizationStatus 1.0.2.0 DeliveryOptimization
    Function Set-DhcpServerAuditLog 2.0.0.0 DhcpServer
    Function Set-DhcpServerDatabase 2.0.0.0 DhcpServer
    Function Set-DhcpServerDnsCredential 2.0.0.0 DhcpServer
    Function Set-DhcpServerSetting 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4Binding 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4Class 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4DnsSetting 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4Failover 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4FilterList 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4MulticastScope 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4OptionDefinition 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4OptionValue 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4Policy 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4Reservation 2.0.0.0 DhcpServer
    Function Set-DhcpServerv4Scope 2.0.0.0 DhcpServer
    Function Set-DhcpServerv6Binding 2.0.0.0 DhcpServer
    Function Set-DhcpServerv6Class 2.0.0.0 DhcpServer
    Function Set-DhcpServerv6DnsSetting 2.0.0.0 DhcpServer
    Function Set-DhcpServerv6OptionDefinition 2.0.0.0 DhcpServer
    Function Set-DhcpServerv6OptionValue 2.0.0.0 DhcpServer
    Function Set-DhcpServerv6Reservation 2.0.0.0 DhcpServer
    Function Set-DhcpServerv6Scope 2.0.0.0 DhcpServer
    Function Set-DhcpServerv6StatelessStore 2.0.0.0 DhcpServer
    Function Set-Disk 2.0.0.0 Storage
    Function Set-DnsClient 1.0.0.0 DnsClient
    Function Set-DnsClientGlobalSetting 1.0.0.0 DnsClient
    Function Set-DnsClientNrptGlobal 1.0.0.0 DnsClient
    Function Set-DnsClientNrptRule 1.0.0.0 DnsClient
    Function Set-DnsClientServerAddress 1.0.0.0 DnsClient
    Function Set-DnsServer 2.0.0.0 DnsServer
    Function Set-DnsServerCache 2.0.0.0 DnsServer
    Function Set-DnsServerClientSubnet 2.0.0.0 DnsServer
    Function Set-DnsServerConditionalForwarderZone 2.0.0.0 DnsServer
    Function Set-DnsServerDiagnostics 2.0.0.0 DnsServer
    Function Set-DnsServerDnsSecZoneSetting 2.0.0.0 DnsServer
    Function Set-DnsServerDsSetting 2.0.0.0 DnsServer
    Function Set-DnsServerEDns 2.0.0.0 DnsServer
    Function Set-DnsServerForwarder 2.0.0.0 DnsServer
    Function Set-DnsServerGlobalNameZone 2.0.0.0 DnsServer
    Function Set-DnsServerGlobalQueryBlockList 2.0.0.0 DnsServer
    Function Set-DnsServerPrimaryZone 2.0.0.0 DnsServer
    Function Set-DnsServerQueryResolutionPolicy 2.0.0.0 DnsServer
    Function Set-DnsServerRecursion 2.0.0.0 DnsServer
    Function Set-DnsServerRecursionScope 2.0.0.0 DnsServer
    Function Set-DnsServerResourceRecord 2.0.0.0 DnsServer
    Function Set-DnsServerResourceRecordAging 2.0.0.0 DnsServer
    Function Set-DnsServerResponseRateLimiting 2.0.0.0 DnsServer
    Function Set-DnsServerResponseRateLimitingExceptionlist 2.0.0.0 DnsServer
    Function Set-DnsServerRootHint 2.0.0.0 DnsServer
    Alias Set-DnsServerRRL 2.0.0.0 DnsServer
    Function Set-DnsServerScavenging 2.0.0.0 DnsServer
    Function Set-DnsServerSecondaryZone 2.0.0.0 DnsServer
    Function Set-DnsServerSetting 2.0.0.0 DnsServer
    Function Set-DnsServerSigningKey 2.0.0.0 DnsServer
    Function Set-DnsServerStubZone 2.0.0.0 DnsServer
    Function Set-DnsServerVirtualizationInstance 2.0.0.0 DnsServer
    Function Set-DnsServerZoneAging 2.0.0.0 DnsServer
    Function Set-DnsServerZoneDelegation 2.0.0.0 DnsServer
    Function Set-DnsServerZoneTransferPolicy 2.0.0.0 DnsServer
    Cmdlet Set-DODownloadMode 1.0.2.0 DeliveryOptimization
    Cmdlet Set-DOPercentageMaxBackgroundBandwidth 1.0.2.0 DeliveryOptimization
    Cmdlet Set-DOPercentageMaxForegroundBandwidth 1.0.2.0 DeliveryOptimization
    Cmdlet Set-DscLocalConfigurationManager 1.1 PSDesiredStateConfiguration
    Function Set-DtcAdvancedHostSetting 1.0.0.0 MsDtc
    Function Set-DtcAdvancedSetting 1.0.0.0 MsDtc
    Function Set-DtcClusterDefault 1.0.0.0 MsDtc
    Function Set-DtcClusterTMMapping 1.0.0.0 MsDtc
    Function Set-DtcDefault 1.0.0.0 MsDtc
    Function Set-DtcLog 1.0.0.0 MsDtc
    Function Set-DtcNetworkSetting 1.0.0.0 MsDtc
    Function Set-DtcTransaction 1.0.0.0 MsDtc
    Function Set-DtcTransactionsTraceSession 1.0.0.0 MsDtc
    Function Set-DtcTransactionsTraceSetting 1.0.0.0 MsDtc
    Function Set-DynamicParameterVariables 3.4.0 Pester
    Function Set-EtwTraceProvider 1.0.0.0 EventTracingManagement
    Alias Set-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet Set-ExecutionPolicy 3.0.0.0 Microsoft.PowerShell.Security
    Function Set-FileIntegrity 2.0.0.0 Storage
    Function Set-FileShare 2.0.0.0 Storage
    Function Set-FileStorageTier 2.0.0.0 Storage
    Cmdlet Set-GPInheritance 1.0.0.0 GroupPolicy
    Cmdlet Set-GPLink 1.0.0.0 GroupPolicy
    Cmdlet Set-GPPermission 1.0.0.0 GroupPolicy
    Alias Set-GPPermissions 1.0.0.0 GroupPolicy
    Cmdlet Set-GPPrefRegistryValue 1.0.0.0 GroupPolicy
    Cmdlet Set-GPRegistryValue 1.0.0.0 GroupPolicy
    Function Set-HgsClientConfiguration 1.0.0.0 HgsClient
    Function Set-HgsClientHostKey 1.0.0.0 HgsClient
    Cmdlet Set-HVCIOptions 1.0 ConfigCI
    Function Set-InitiatorPort 2.0.0.0 Storage
    Function Set-IscsiChapSecret 1.0.0.0 iSCSI
    Cmdlet Set-IscsiServerTarget 2.0.0.0 IscsiTarget
    Cmdlet Set-IscsiTargetServerSetting 2.0.0.0 IscsiTarget
    Cmdlet Set-IscsiVirtualDisk 2.0.0.0 IscsiTarget
    Cmdlet Set-IscsiVirtualDiskSnapshot 2.0.0.0 IscsiTarget
    Cmdlet Set-Item 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Set-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Set-JobTrigger 1.1.0.0 PSScheduledJob
    Cmdlet Set-KdsConfiguration 1.0.0.0 Kds
    Cmdlet Set-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Set-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts
    Cmdlet Set-Location 3.1.0.0 Microsoft.PowerShell.Management
    Function Set-LogProperties 1.0.0.0 PSDiagnostics
    Function Set-MMAgent 1.0 MMAgent
    Function Set-MpPreference 1.0 ConfigDefender
    Function Set-MpPreference 1.0 Defender
    Function Set-NCSIPolicyConfiguration 1.0.0.0 NetworkConnectivityStatus
    Function Set-Net6to4Configuration 1.0.0.0 NetworkTransition
    Function Set-NetAdapter 2.0.0.0 NetAdapter
    Function Set-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter
    Function Set-NetAdapterBinding 2.0.0.0 NetAdapter
    Function Set-NetAdapterChecksumOffload 2.0.0.0 NetAdapter
    Function Set-NetAdapterEncapsulatedPacketTaskOffload 2.0.0.0 NetAdapter
    Function Set-NetAdapterIPsecOffload 2.0.0.0 NetAdapter
    Function Set-NetAdapterLso 2.0.0.0 NetAdapter
    Function Set-NetAdapterPacketDirect 2.0.0.0 NetAdapter
    Function Set-NetAdapterPowerManagement 2.0.0.0 NetAdapter
    Function Set-NetAdapterQos 2.0.0.0 NetAdapter
    Function Set-NetAdapterRdma 2.0.0.0 NetAdapter
    Function Set-NetAdapterRsc 2.0.0.0 NetAdapter
    Function Set-NetAdapterRss 2.0.0.0 NetAdapter
    Function Set-NetAdapterSriov 2.0.0.0 NetAdapter
    Function Set-NetAdapterUso 2.0.0.0 NetAdapter
    Function Set-NetAdapterVmq 2.0.0.0 NetAdapter
    Function Set-NetConnectionProfile 1.0.0.0 NetConnection
    Function Set-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Set-NetEventPacketCaptureProvider 1.0.0.0 NetEventPacketCapture
    Function Set-NetEventProvider 1.0.0.0 NetEventPacketCapture
    Function Set-NetEventSession 1.0.0.0 NetEventPacketCapture
    Function Set-NetEventVFPProvider 1.0.0.0 NetEventPacketCapture
    Function Set-NetEventVmSwitchProvider 1.0.0.0 NetEventPacketCapture
    Function Set-NetEventWFPCaptureProvider 1.0.0.0 NetEventPacketCapture
    Function Set-NetFirewallAddressFilter 2.0.0.0 NetSecurity
    Function Set-NetFirewallApplicationFilter 2.0.0.0 NetSecurity
    Function Set-NetFirewallInterfaceFilter 2.0.0.0 NetSecurity
    Function Set-NetFirewallInterfaceTypeFilter 2.0.0.0 NetSecurity
    Function Set-NetFirewallPortFilter 2.0.0.0 NetSecurity
    Function Set-NetFirewallProfile 2.0.0.0 NetSecurity
    Function Set-NetFirewallRule 2.0.0.0 NetSecurity
    Function Set-NetFirewallSecurityFilter 2.0.0.0 NetSecurity
    Function Set-NetFirewallServiceFilter 2.0.0.0 NetSecurity
    Function Set-NetFirewallSetting 2.0.0.0 NetSecurity
    Function Set-NetIPAddress 1.0.0.0 NetTCPIP
    Function Set-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition
    Function Set-NetIPInterface 1.0.0.0 NetTCPIP
    Function Set-NetIPsecDospSetting 2.0.0.0 NetSecurity
    Function Set-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity
    Function Set-NetIPsecMainModeRule 2.0.0.0 NetSecurity
    Function Set-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity
    Function Set-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity
    Function Set-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity
    Function Set-NetIPsecRule 2.0.0.0 NetSecurity
    Function Set-NetIPv4Protocol 1.0.0.0 NetTCPIP
    Function Set-NetIPv6Protocol 1.0.0.0 NetTCPIP
    Function Set-NetIsatapConfiguration 1.0.0.0 NetworkTransition
    Function Set-NetLbfoTeam 2.0.0.0 NetLbfo
    Function Set-NetLbfoTeamMember 2.0.0.0 NetLbfo
    Function Set-NetLbfoTeamNic 2.0.0.0 NetLbfo
    Function Set-NetNat 1.0.0.0 NetNat
    Function Set-NetNatGlobal 1.0.0.0 NetNat
    Function Set-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition
    Function Set-NetNeighbor 1.0.0.0 NetTCPIP
    Function Set-NetOffloadGlobalSetting 1.0.0.0 NetTCPIP
    Function Set-NetQosPolicy 2.0.0.0 NetQos
    Function Set-NetRoute 1.0.0.0 NetTCPIP
    Function Set-NetTCPSetting 1.0.0.0 NetTCPIP
    Function Set-NetTeredoConfiguration 1.0.0.0 NetworkTransition
    Function Set-NetUDPSetting 1.0.0.0 NetTCPIP
    Function Set-NetworkSwitchEthernetPortIPAddress 1.0.0.0 NetworkSwitchManager
    Function Set-NetworkSwitchPortMode 1.0.0.0 NetworkSwitchManager
    Function Set-NetworkSwitchPortProperty 1.0.0.0 NetworkSwitchManager
    Function Set-NetworkSwitchVlanProperty 1.0.0.0 NetworkSwitchManager
    Function Set-NfsClientConfiguration 1.0 NFS
    Function Set-NfsClientgroup 1.0 NFS
    Cmdlet Set-NfsMappedIdentity 1.0 NFS
    Function Set-NfsMappingStore 1.0 NFS
    Cmdlet Set-NfsNetgroup 1.0 NFS
    Function Set-NfsNetgroupStore 1.0 NFS
    Function Set-NfsServerConfiguration 1.0 NFS
    Function Set-NfsShare 1.0 NFS
    Cmdlet Set-NonRemovableAppsPolicy 3.0 Dism
    Function Set-OdbcDriver 1.0.0.0 Wdac
    Function Set-OdbcDsn 1.0.0.0 Wdac
    Cmdlet Set-PackageSource 1.0.0.1 PackageManagement
    Function Set-Partition 2.0.0.0 Storage
    Function Set-PcsvDeviceBootConfiguration 1.0.0.0 PcsvDevice
    Function Set-PcsvDeviceNetworkConfiguration 1.0.0.0 PcsvDevice
    Function Set-PcsvDeviceUserPassword 1.0.0.0 PcsvDevice
    Function Set-PhysicalDisk 2.0.0.0 Storage
    Function Set-PrintConfiguration 1.1 PrintManagement
    Function Set-Printer 1.1 PrintManagement
    Function Set-PrinterProperty 1.1 PrintManagement
    Cmdlet Set-ProcessMitigation 1.0.12 ProcessMitigations
    Alias Set-ProvisionedAppPackageDataFile 3.0 Dism
    Alias Set-ProvisionedAppXDataFile 3.0 Dism
    Cmdlet Set-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Set-PSDebug 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Set-PSReadLineKeyHandler 2.0.0 PSReadline
    Cmdlet Set-PSReadLineOption 2.0.0 PSReadline
    Function Set-PSRepository 1.0.0.1 PowerShellGet
    Cmdlet Set-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core
    Function Set-RDActiveManagementServer 2.0.0.0 RemoteDesktop
    Function Set-RDCertificate 2.0.0.0 RemoteDesktop
    Function Set-RDClientAccessName 2.0.0.0 RemoteDesktop
    Function Set-RDConnectionBrokerHighAvailability 2.0.0.0 RemoteDesktop
    Function Set-RDDatabaseConnectionString 2.0.0.0 RemoteDesktop
    Function Set-RDDeploymentGatewayConfiguration 2.0.0.0 RemoteDesktop
    Function Set-RDFileTypeAssociation 2.0.0.0 RemoteDesktop
    Function Set-RDLicenseConfiguration 2.0.0.0 RemoteDesktop
    Function Set-RDPersonalSessionDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Set-RDPersonalVirtualDesktopAssignment 2.0.0.0 RemoteDesktop
    Function Set-RDPersonalVirtualDesktopPatchSchedule 2.0.0.0 RemoteDesktop
    Function Set-RDRemoteApp 2.0.0.0 RemoteDesktop
    Function Set-RDRemoteDesktop 2.0.0.0 RemoteDesktop
    Function Set-RDSessionCollectionConfiguration 2.0.0.0 RemoteDesktop
    Function Set-RDSessionHost 2.0.0.0 RemoteDesktop
    Function Set-RDVirtualDesktopCollectionConfiguration 2.0.0.0 RemoteDesktop
    Function Set-RDVirtualDesktopConcurrency 2.0.0.0 RemoteDesktop
    Function Set-RDVirtualDesktopIdleCount 2.0.0.0 RemoteDesktop
    Function Set-RDVirtualDesktopTemplateExportPath 2.0.0.0 RemoteDesktop
    Function Set-RDWorkspace 2.0.0.0 RemoteDesktop
    Function Set-ResiliencySetting 2.0.0.0 Storage
    Cmdlet Set-RuleOption 1.0 ConfigCI
    Cmdlet Set-ScheduledJob 1.1.0.0 PSScheduledJob
    Cmdlet Set-ScheduledJobOption 1.1.0.0 PSScheduledJob
    Function Set-ScheduledTask 1.0.0.0 ScheduledTasks
    Cmdlet Set-SecureBootUEFI 2.0.0.0 SecureBoot
    Cmdlet Set-Service 3.1.0.0 Microsoft.PowerShell.Management
    Function Set-SmbBandwidthLimit 2.0.0.0 SmbShare
    Function Set-SmbClientConfiguration 2.0.0.0 SmbShare
    Function Set-SmbPathAcl 2.0.0.0 SmbShare
    Function Set-SmbServerConfiguration 2.0.0.0 SmbShare
    Function Set-SmbShare 2.0.0.0 SmbShare
    Function Set-StorageBusProfile 1.0.0.0 StorageBusCache
    Function Set-StorageFileServer 2.0.0.0 Storage
    Function Set-StorageHealthSetting 2.0.0.0 Storage
    Function Set-StoragePool 2.0.0.0 Storage
    Function Set-StorageProvider 2.0.0.0 Storage
    Function Set-StorageSetting 2.0.0.0 Storage
    Function Set-StorageSubSystem 2.0.0.0 Storage
    Function Set-StorageTier 2.0.0.0 Storage
    Cmdlet Set-StrictMode 3.0.0.0 Microsoft.PowerShell.Core
    Function Set-TestInconclusive 3.4.0 Pester
    Cmdlet Set-TimeZone 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Set-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule
    Cmdlet Set-TraceSource 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Set-UevConfiguration 2.1.639.0 UEV
    Cmdlet Set-UevTemplateProfile 2.1.639.0 UEV
    Function Setup 3.4.0 Pester
    Cmdlet Set-Variable 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Set-VHD 2.0.0.0 Hyper-V
    Function Set-VirtualDisk 2.0.0.0 Storage
    Cmdlet Set-VM 2.0.0.0 Hyper-V
    Cmdlet Set-VMBios 2.0.0.0 Hyper-V
    Cmdlet Set-VMComPort 2.0.0.0 Hyper-V
    Cmdlet Set-VMDvdDrive 2.0.0.0 Hyper-V
    Cmdlet Set-VMFibreChannelHba 2.0.0.0 Hyper-V
    Cmdlet Set-VMFirmware 2.0.0.0 Hyper-V
    Cmdlet Set-VMFloppyDiskDrive 2.0.0.0 Hyper-V
    Cmdlet Set-VMGpuPartitionAdapter 2.0.0.0 Hyper-V
    Cmdlet Set-VMHardDiskDrive 2.0.0.0 Hyper-V
    Cmdlet Set-VMHost 2.0.0.0 Hyper-V
    Cmdlet Set-VMHostCluster 2.0.0.0 Hyper-V
    Cmdlet Set-VMKeyProtector 2.0.0.0 Hyper-V
    Cmdlet Set-VMKeyStorageDrive 2.0.0.0 Hyper-V
    Cmdlet Set-VMMemory 2.0.0.0 Hyper-V
    Cmdlet Set-VMMigrationNetwork 2.0.0.0 Hyper-V
    Cmdlet Set-VMNetworkAdapter 2.0.0.0 Hyper-V
    Cmdlet Set-VMNetworkAdapterFailoverConfiguration 2.0.0.0 Hyper-V
    Cmdlet Set-VMNetworkAdapterIsolation 2.0.0.0 Hyper-V
    Cmdlet Set-VMNetworkAdapterRdma 2.0.0.0 Hyper-V
    Cmdlet Set-VMNetworkAdapterRoutingDomainMapping 2.0.0.0 Hyper-V
    Cmdlet Set-VMNetworkAdapterTeamMapping 2.0.0.0 Hyper-V
    Cmdlet Set-VMNetworkAdapterVlan 2.0.0.0 Hyper-V
    Cmdlet Set-VMPartitionableGpu 2.0.0.0 Hyper-V
    Cmdlet Set-VMProcessor 2.0.0.0 Hyper-V
    Cmdlet Set-VMRemoteFx3dVideoAdapter 2.0.0.0 Hyper-V
    Cmdlet Set-VMReplication 2.0.0.0 Hyper-V
    Cmdlet Set-VMReplicationAuthorizationEntry 2.0.0.0 Hyper-V
    Cmdlet Set-VMReplicationServer 2.0.0.0 Hyper-V
    Cmdlet Set-VMResourcePool 2.0.0.0 Hyper-V
    Cmdlet Set-VMSan 2.0.0.0 Hyper-V
    Cmdlet Set-VMSecurity 2.0.0.0 Hyper-V
    Cmdlet Set-VMSecurityPolicy 2.0.0.0 Hyper-V
    Cmdlet Set-VMStorageSettings 2.0.0.0 Hyper-V
    Cmdlet Set-VMSwitch 2.0.0.0 Hyper-V
    Cmdlet Set-VMSwitchExtensionPortFeature 2.0.0.0 Hyper-V
    Cmdlet Set-VMSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V
    Cmdlet Set-VMSwitchTeam 2.0.0.0 Hyper-V
    Cmdlet Set-VMVideo 2.0.0.0 Hyper-V
    Function Set-Volume 2.0.0.0 Storage
    Function Set-VolumeScrubPolicy 2.0.0.0 Storage
    Function Set-VpnConnection 2.0.0.0 VpnClient
    Function Set-VpnConnectionIPsecConfiguration 2.0.0.0 VpnClient
    Function Set-VpnConnectionProxy 2.0.0.0 VpnClient
    Function Set-VpnConnectionTriggerDnsConfiguration 2.0.0.0 VpnClient
    Function Set-VpnConnectionTriggerTrustedNetwork 2.0.0.0 VpnClient
    Cmdlet Set-WheaMemoryPolicy 2.0.0.0 Whea
    Cmdlet Set-WinAcceptLanguageFromLanguageListOptOut 2.0.0.0 International
    Cmdlet Set-WinCultureFromLanguageListOptOut 2.0.0.0 International
    Cmdlet Set-WinDefaultInputMethodOverride 2.0.0.0 International
    Cmdlet Set-WindowsEdition 3.0 Dism
    Cmdlet Set-WindowsProductKey 3.0 Dism
    Cmdlet Set-WindowsReservedStorageState 3.0 Dism
    Cmdlet Set-WindowsSearchSetting 1.0.0.0 WindowsSearch
    Cmdlet Set-WinHomeLocation 2.0.0.0 International
    Cmdlet Set-WinLanguageBarOption 2.0.0.0 International
    Cmdlet Set-WinSystemLocale 2.0.0.0 International
    Cmdlet Set-WinUILanguageOverride 2.0.0.0 International
    Cmdlet Set-WinUserLanguageList 2.0.0.0 International
    Cmdlet Set-WmiInstance 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Set-WSManInstance 3.0.0.0 Microsoft.WSMan.Management
    Cmdlet Set-WSManQuickConfig 3.0.0.0 Microsoft.WSMan.Management
    Function Should 3.4.0 Pester
    Cmdlet Show-ADAuthenticationPolicyExpression 1.0.1.0 ActiveDirectory
    Cmdlet Show-Command 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Show-ControlPanelItem 3.1.0.0 Microsoft.PowerShell.Management
    Function Show-DnsServerCache 2.0.0.0 DnsServer
    Function Show-DnsServerKeyStorageProvider 2.0.0.0 DnsServer
    Cmdlet Show-EventLog 3.1.0.0 Microsoft.PowerShell.Management
    Function Show-NetFirewallRule 2.0.0.0 NetSecurity
    Function Show-NetIPsecRule 2.0.0.0 NetSecurity
    Function Show-StorageHistory 2.0.0.0 Storage
    Function Show-VirtualDisk 2.0.0.0 Storage
    Cmdlet Show-WindowsDeveloperLicenseRegistration 1.0.0.0 WindowsDeveloperLicense
    Cmdlet Sort-Object 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Split-Path 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Split-WindowsImage 3.0 Dism
    Function Start-AppBackgroundTask 1.0.0.0 AppBackgroundTask
    Function Start-AppvVirtualProcess 1.0.0.0 AppvClient
    Function Start-AutologgerConfig 1.0.0.0 EventTracingManagement
    Cmdlet Start-BitsTransfer 2.0.0.0 BitsTransfer
    Function Start-DnsServerScavenging 2.0.0.0 DnsServer
    Function Start-DnsServerZoneTransfer 2.0.0.0 DnsServer
    Cmdlet Start-DscConfiguration 1.1 PSDesiredStateConfiguration
    Function Start-Dtc 1.0.0.0 MsDtc
    Cmdlet Start-DtcDiagnosticResourceManager 1.0.0.0 MsDtc
    Function Start-DtcTransactionsTraceSession 1.0.0.0 MsDtc
    Function Start-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet Start-Job 3.0.0.0 Microsoft.PowerShell.Core
    Function Start-MpRollback 1.0 ConfigDefender
    Function Start-MpScan 1.0 ConfigDefender
    Function Start-MpScan 1.0 Defender
    Function Start-MpWDOScan 1.0 ConfigDefender
    Function Start-MpWDOScan 1.0 Defender
    Function Start-NetEventSession 1.0.0.0 NetEventPacketCapture
    Cmdlet Start-OSUninstall 3.0 Dism
    Function Start-PcsvDevice 1.0.0.0 PcsvDevice
    Cmdlet Start-Process 3.1.0.0 Microsoft.PowerShell.Management
    Function Start-ScheduledTask 1.0.0.0 ScheduledTasks
    Cmdlet Start-Service 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Start-Sleep 3.1.0.0 Microsoft.PowerShell.Utility
    Function Start-SMPerformanceCollector 1.0.0.0 ServerManagerTasks
    Function Start-StorageDiagnosticLog 2.0.0.0 Storage
    Function Start-Trace 1.0.0.0 PSDiagnostics
    Cmdlet Start-Transaction 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Start-Transcript 3.0.0.0 Microsoft.PowerShell.Host
    Cmdlet Start-VM 2.0.0.0 Hyper-V
    Cmdlet Start-VMFailover 2.0.0.0 Hyper-V
    Cmdlet Start-VMInitialReplication 2.0.0.0 Hyper-V
    Cmdlet Start-VMTrace 2.0.0.0 Hyper-V
    Function Step-DnsServerSigningKeyRollover 2.0.0.0 DnsServer
    Cmdlet Stop-AppvClientConnectionGroup 1.0.0.0 AppvClient
    Cmdlet Stop-AppvClientPackage 1.0.0.0 AppvClient
    Cmdlet Stop-Computer 3.1.0.0 Microsoft.PowerShell.Management
    Function Stop-DscConfiguration 1.1 PSDesiredStateConfiguration
    Function Stop-Dtc 1.0.0.0 MsDtc
    Cmdlet Stop-DtcDiagnosticResourceManager 1.0.0.0 MsDtc
    Function Stop-DtcTransactionsTraceSession 1.0.0.0 MsDtc
    Function Stop-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet Stop-IscsiVirtualDiskOperation 2.0.0.0 IscsiTarget
    Cmdlet Stop-Job 3.0.0.0 Microsoft.PowerShell.Core
    Function Stop-NetEventSession 1.0.0.0 NetEventPacketCapture
    Function Stop-PcsvDevice 1.0.0.0 PcsvDevice
    Cmdlet Stop-Process 3.1.0.0 Microsoft.PowerShell.Management
    Function Stop-RDVirtualDesktopCollectionJob 2.0.0.0 RemoteDesktop
    Function Stop-ScheduledTask 1.0.0.0 ScheduledTasks
    Cmdlet Stop-Service 3.1.0.0 Microsoft.PowerShell.Management
    Function Stop-SMPerformanceCollector 1.0.0.0 ServerManagerTasks
    Function Stop-StorageDiagnosticLog 2.0.0.0 Storage
    Function Stop-StorageJob 2.0.0.0 Storage
    Function Stop-Trace 1.0.0.0 PSDiagnostics
    Cmdlet Stop-Transcript 3.0.0.0 Microsoft.PowerShell.Host
    Cmdlet Stop-VM 2.0.0.0 Hyper-V
    Cmdlet Stop-VMFailover 2.0.0.0 Hyper-V
    Cmdlet Stop-VMInitialReplication 2.0.0.0 Hyper-V
    Cmdlet Stop-VMReplication 2.0.0.0 Hyper-V
    Cmdlet Stop-VMTrace 2.0.0.0 Hyper-V
    Function Suspend-BitLocker 1.0.0.0 BitLocker
    Cmdlet Suspend-BitsTransfer 2.0.0.0 BitsTransfer
    Function Suspend-DnsServerZone 2.0.0.0 DnsServer
    Cmdlet Suspend-Job 3.0.0.0 Microsoft.PowerShell.Core
    Function Suspend-PrintJob 1.1 PrintManagement
    Cmdlet Suspend-Service 3.1.0.0 Microsoft.PowerShell.Management
    Function Suspend-StorageBusDisk 1.0.0.0 StorageBusCache
    Cmdlet Suspend-VM 2.0.0.0 Hyper-V
    Cmdlet Suspend-VMReplication 2.0.0.0 Hyper-V
    Cmdlet Switch-Certificate 1.0.0.0 PKI
    Cmdlet Sync-ADObject 1.0.1.0 ActiveDirectory
    Cmdlet Sync-AppvPublishingServer 1.0.0.0 AppvClient
    Function Sync-DnsServerZone 2.0.0.0 DnsServer
    Function Sync-NetIPsecRule 2.0.0.0 NetSecurity
    Function T:    
    Function TabExpansion2    
    Cmdlet Tee-Object 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Test-ADServiceAccount 1.0.1.0 ActiveDirectory
    Cmdlet Test-AppLockerPolicy 2.0.0.0 AppLocker
    Cmdlet Test-Certificate 1.0.0.0 PKI
    Cmdlet Test-ComputerSecureChannel 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Test-Connection 3.1.0.0 Microsoft.PowerShell.Management
    Function Test-DnsServer 2.0.0.0 DnsServer
    Function Test-DnsServerDnsSecZoneSetting 2.0.0.0 DnsServer
    Cmdlet Test-DscConfiguration 1.1 PSDesiredStateConfiguration
    Function Test-Dtc 1.0.0.0 MsDtc
    Cmdlet Test-FileCatalog 3.0.0.0 Microsoft.PowerShell.Security
    Function Test-HgsClientConfiguration 1.0.0.0 HgsClient
    Cmdlet Test-HgsTraceTarget 1.0.0.0 HgsDiagnostics
    Cmdlet Test-KdsRootKey 1.0.0.0 Kds
    Cmdlet Test-ModuleManifest 3.0.0.0 Microsoft.PowerShell.Core
    Function Test-NetConnection 1.0.0.0 NetTCPIP
    Cmdlet Test-NfsMappedIdentity 1.0 NFS
    Function Test-NfsMappingStore 1.0 NFS
    Cmdlet Test-Path 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Test-PSSessionConfigurationFile 3.0.0.0 Microsoft.PowerShell.Core
    Function Test-RDOUAccess 2.0.0.0 RemoteDesktop
    Function Test-RDVirtualDesktopADMachineAccountReuse 2.0.0.0 RemoteDesktop
    Function Test-ScriptFileInfo 1.0.0.1 PowerShellGet
    Cmdlet Test-UevTemplate 2.1.639.0 UEV
    Cmdlet Test-VHD 2.0.0.0 Hyper-V
    Cmdlet Test-VMNetworkAdapter 2.0.0.0 Hyper-V
    Cmdlet Test-VMReplicationConnection 2.0.0.0 Hyper-V
    Cmdlet Test-WSMan 3.0.0.0 Microsoft.WSMan.Management
    Cmdlet Trace-Command 3.1.0.0 Microsoft.PowerShell.Utility
    Function U:    
    Cmdlet Unblock-File 3.1.0.0 Microsoft.PowerShell.Utility
    Function Unblock-FileShareAccess 2.0.0.0 Storage
    Function Unblock-SmbShareAccess 2.0.0.0 SmbShare
    Cmdlet Unblock-Tpm 2.0.0.0 TrustedPlatformModule
    Cmdlet Undo-DtcDiagnosticTransaction 1.0.0.0 MsDtc
    Cmdlet Undo-Transaction 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Uninstall-ADServiceAccount 1.0.1.0 ActiveDirectory
    Function Uninstall-Dtc 1.0.0.0 MsDtc
    Function Uninstall-Module 1.0.0.1 PowerShellGet
    Cmdlet Uninstall-Package 1.0.0.1 PackageManagement
    Cmdlet Uninstall-ProvisioningPackage 3.0 Provisioning
    Function Uninstall-Script 1.0.0.1 PowerShellGet
    Cmdlet Uninstall-TrustedProvisioningCertificate 3.0 Provisioning
    Function Uninstall-WindowsFeature 2.0.0.0 ServerManager
    Cmdlet Unlock-ADAccount 1.0.1.0 ActiveDirectory
    Function Unlock-BitLocker 1.0.0.0 BitLocker
    Cmdlet Unprotect-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security
    Cmdlet Unpublish-AppvClientPackage 1.0.0.0 AppvClient
    Function Unregister-AppBackgroundTask 1.0.0.0 AppBackgroundTask
    Function Unregister-ClusteredScheduledTask 1.0.0.0 ScheduledTasks
    Function Unregister-DnsServerDirectoryPartition 2.0.0.0 DnsServer
    Cmdlet Unregister-Event 3.1.0.0 Microsoft.PowerShell.Utility
    Function Unregister-IscsiSession 1.0.0.0 iSCSI
    Cmdlet Unregister-PackageSource 1.0.0.1 PackageManagement
    Function Unregister-PSRepository 1.0.0.1 PowerShellGet
    Cmdlet Unregister-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Unregister-ScheduledJob 1.1.0.0 PSScheduledJob
    Function Unregister-ScheduledTask 1.0.0.0 ScheduledTasks
    Function Unregister-StorageSubsystem 2.0.0.0 Storage
    Cmdlet Unregister-UevTemplate 2.1.639.0 UEV
    Cmdlet Unregister-WindowsDeveloperLicense 1.0.0.0 WindowsDeveloperLicense
    Function Update-AutologgerConfig 1.0.0.0 EventTracingManagement
    Function Update-Disk 2.0.0.0 Storage
    Function Update-DnsServerTrustPoint 2.0.0.0 DnsServer
    Function Update-DscConfiguration 1.1 PSDesiredStateConfiguration
    Function Update-EtwTraceSession 1.0.0.0 EventTracingManagement
    Cmdlet Update-FormatData 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Update-Help 3.0.0.0 Microsoft.PowerShell.Core
    Function Update-HostStorageCache 2.0.0.0 Storage
    Function Update-IscsiTarget 1.0.0.0 iSCSI
    Function Update-IscsiTargetPortal 1.0.0.0 iSCSI
    Cmdlet Update-List 3.1.0.0 Microsoft.PowerShell.Utility
    Function Update-Module 1.0.0.1 PowerShellGet
    Function Update-ModuleManifest 1.0.0.1 PowerShellGet
    Function Update-MpSignature 1.0 ConfigDefender
    Function Update-MpSignature 1.0 Defender
    Function Update-NetIPsecRule 2.0.0.0 NetSecurity
    Function Update-RDVirtualDesktopCollection 2.0.0.0 RemoteDesktop
    Function Update-Script 1.0.0.1 PowerShellGet
    Function Update-ScriptFileInfo 1.0.0.1 PowerShellGet
    Function Update-SmbMultichannelConnection 2.0.0.0 SmbShare
    Function Update-StorageFirmware 2.0.0.0 Storage
    Function Update-StoragePool 2.0.0.0 Storage
    Function Update-StorageProviderCache 2.0.0.0 Storage
    Cmdlet Update-TypeData 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Update-UevTemplate 2.1.639.0 UEV
    Cmdlet Update-VMVersion 2.0.0.0 Hyper-V
    Cmdlet Update-WIMBootEntry 3.0 Dism
    Cmdlet Use-Transaction 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Use-WindowsUnattend 3.0 Dism
    Function V:    
    Function W:    
    Cmdlet Wait-Debugger 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Wait-Event 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Wait-Job 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Wait-Process 3.1.0.0 Microsoft.PowerShell.Management
    Cmdlet Wait-VM 2.0.0.0 Hyper-V
    Cmdlet Where-Object 3.0.0.0 Microsoft.PowerShell.Core
    Cmdlet Write-Debug 3.1.0.0 Microsoft.PowerShell.Utility
    Function Write-DtcTransactionsTraceSession 1.0.0.0 MsDtc
    Cmdlet Write-Error 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Write-EventLog 3.1.0.0 Microsoft.PowerShell.Management
    Alias Write-FileSystemCache 2.0.0.0 Storage
    Cmdlet Write-Host 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Write-Information 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Write-Output 3.1.0.0 Microsoft.PowerShell.Utility
    Function Write-PrinterNfcTag 1.1 PrintManagement
    Cmdlet Write-Progress 3.1.0.0 Microsoft.PowerShell.Utility
    Cmdlet Write-Verbose 3.1.0.0 Microsoft.PowerShell.Utility
    Function Write-VolumeCache 2.0.0.0 Storage
    Cmdlet Write-Warning 3.1.0.0 Microsoft.PowerShell.Utility
    Function X:    
    Function Y:    
    Function Z:    

    votre commentaire
  • Add Common
    Approve Lifecycle
    Assert Lifecycle
    Backup Data
    Block Security
    Checkpoint Data
    Clear Common
    Close Common
    Compare Data
    Complete Lifecycle
    Compress Data
    Confirm Lifecycle
    Connect Communications
    Convert Data
    ConvertFrom Data
    ConvertTo Data
    Copy Common
    Debug Diagnostic
    Deny Lifecycle
    Disable Lifecycle
    Disconnect Communications
    Dismount Data
    Edit Data
    Enable Lifecycle
    Enter Common
    Exit Common
    Expand Data
    Export Data
    Find Common
    Format Common
    Get Common
    Grant Security
    Group Data
    Hide Common
    Import Data
    Initialize Data
    Install Lifecycle
    Invoke Lifecycle
    Join Common
    Limit Data
    Lock Common
    Measure Diagnostic
    Merge Data
    Mount Data
    Move Common
    New Common
    Open Common
    Optimize Common
    Out Data
    Ping Diagnostic
    Pop Common
    Protect Security
    Publish Data
    Push Common
    Read Communications
    Receive Communications
    Redo Common
    Register Lifecycle
    Remove Common
    Rename Common
    Repair Diagnostic
    Request Lifecycle
    Reset Common
    Resize Common
    Resolve Diagnostic
    Restart Lifecycle
    Restore Data
    Resume Lifecycle
    Revoke Security
    Save Data
    Search Common
    Select Common
    Send Communications
    Set Common
    Show Common
    Skip Common
    Split Common
    Start Lifecycle
    Step Common
    Stop Lifecycle
    Submit Lifecycle
    Suspend Lifecycle
    Switch Common
    Sync Data
    Test Diagnostic
    Trace Diagnostic
    Unblock Security
    Undo Common
    Uninstall Lifecycle
    Unlock Common
    Unprotect Security
    Unpublish Data
    Unregister Lifecycle
    Update Data
    Use Other
    Wait Lifecycle
    Watch Common
    Write Communications

    votre commentaire


    Suivre le flux RSS des articles de cette rubrique
    Suivre le flux RSS des commentaires de cette rubrique