8
0

Anlage des Repos

This commit is contained in:
2024-01-24 16:42:38 +01:00
commit 38d6a271c4
1785 changed files with 3051496 additions and 0 deletions

12
test/Get-Drives.ps1 Normal file
View File

@@ -0,0 +1,12 @@
#[System.IO.DriveInfo]::getdrives() | Where-Object {$_.DriveType -eq 'Fixed'} | Select Name
New-Variable -Name lw -Value $null
$lw = [System.IO.DriveInfo]::getdrives() | Where-Object {$_.DriveType -eq 'Fixed'} #| DESC #| Select-object Name # | Out-GridView
foreach ($dr in $lw)
{
Write-Host "Laufwerk: " $dr
}
#Get-Command -CommandType cmdlet | Out-GridView