Site Tools


informatique:windows:powershell

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
informatique:windows:powershell [2025/01/13 13:53] yahikoinformatique:windows:powershell [2025/01/23 14:58] (current) yahiko
Line 119: Line 119:
 # En minuscule # En minuscule
 CHAINE.ToLower() CHAINE.ToLower()
 +</code>
 +
 +===== Remplacer un caractère ou un espace =====
 +
 +C'est pas beau.
 +
 +<code powershell>
 +# Un espace
 +$string = $string -replace " ",""
 +
 +# Un apostrophe
 +$string = $string -replace "'",""
 +</code>
 +
 +===== Lister les membres d'un groupe AD =====
 +<code powershell>
 +Get-ADGroupMember -Identity "Communication" | Format-Table Name, DistinguishedName
 </code> </code>
  
informatique/windows/powershell.1736776411.txt.gz · Last modified: 2025/01/13 13:53 by yahiko