help _topic_
or
man _topic_
$lines = Get-Content -Path 'C:\USER\Documents\Collections\collection.txt'
$lines | foreach-object {$_ -replace '^\d+\)\s+\"(.+?):.*\"$', '$1'} | Tee-Object -Variable keys
$values | Group-Object
Get-Command | Out-GridView
cd $Env:TEMP
$j = Get-Content -Raw -Path <file-path> | ConvertFrom-Json
$arr = @(Foreach ($e in $j.data.entries) { $e.columns[3].message})
$arr | Out-File <filename>
Get-ChildItem -Filter '*.data' -Name
(gci -filter *.data) |%{ $_ -replace '.data',""} | %{Echo "certutil -decode $_.data $_.zip"}
foreach ($file in (gci *.data)) {
$content = get-content $file;
$decoded = [System.Convert]::FromBase64String($content);
$name = $file.Name -replace ".data",".bzip2"
set-content $name -Value $decoded -Encoding Byte
}
[System.Reflection.Assembly]::LoadFrom("c:\\dinoch\\bin\\Ionic.Zip.dll");
$zipfile = new-object Ionic.Zip.ZipFile;
$zipfile.GetType();
[System.io.FileStream]::New