Skip to main content

More examples

Practical recipes that show common ways to use Nebula.Tools.

Convert CSV delimiters in bulk

Get-ChildItem 'C:\Exports' -Filter *.csv |
ForEach-Object {
Update-CSVDelimiter -FilePath $_.FullName -ToComma
}

Discover updates with previews only

Find-ModulesUpdates -Scope User -Provider Auto |
Sort-Object Name |
Format-Table Name, InstalledVersion, LatestVersion, Scope

Export AD expirations to CSV

Find-ADAccountExpirations -TargetDate "2027-01-01" -ExportCsv -ExportPath 'C:\Reports'

Generate multiple passwords and copy them

New-RandomPassword -Count 5 -PasswordLength 16 -Clipboard

Keep PowerShell 7 current

Update-PS7   # launches the official MSI-based installer

Remove old versions for one module

Remove-OldModuleVersions -Name 'Az' -Keep 1 -WhatIf

Update modules and clean superseded versions

Update-Modules -Scope User -Provider Auto -CleanupOld