IT Command LibraryIT technician command center
Practical command reference library

IT Command Library

Search copy-ready commands, practical examples, requirements, permissions, common errors, and production warnings across the platforms IT teams use every day.

Microsoft change intelligence

Microsoft Cmdlet Changes

Approved deprecations, removals, breaking changes, replacements, and migration guidance are shown without replacing the existing command catalog.

No approved Microsoft cmdlet changes have been published yet. The existing command library remains available below. Administrators can publish updates from the Admin Center.
Active Directory

Active Directory

Back to top ↑
PowerShell
Get-ADUser

List Active Directory users and selected properties.

Get-ADUser -Filter * -Properties mail,Enabled
Open →
PowerShell
New-ADUser

Create an Active Directory user.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true
Open →
PowerShell
Set-ADUser

Update Active Directory user attributes.

Set-ADUser jsmith -Department "IT"
Open →
PowerShell
Disable-ADAccount

Disable an Active Directory account.

Disable-ADAccount jsmith
Open →
PowerShell
Enable-ADAccount

Enable an Active Directory account.

Enable-ADAccount jsmith
Open →
PowerShell
Unlock-ADAccount

Unlock a locked Active Directory account.

Unlock-ADAccount jsmith
Open →
PowerShell
Search-ADAccount

Find locked, disabled, inactive, or expired accounts.

Search-ADAccount -LockedOut
Open →
PowerShell
Get-ADGroup

List Active Directory groups.

Get-ADGroup -Filter *
Open →
PowerShell
Get-ADGroupMember

List members of an Active Directory group.

Get-ADGroupMember "Domain Admins"
Open →
PowerShell
Add-ADGroupMember

Add an account to an Active Directory group.

Add-ADGroupMember "Help Desk" -Members jsmith
Open →
PowerShell
Remove-ADGroupMember

Remove an account from an Active Directory group.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false
Open →
PowerShell
Get-ADComputer

List Active Directory computer objects.

Get-ADComputer -Filter * -Properties OperatingSystem
Open →
PowerShell
Get-ADOrganizationalUnit

List Active Directory organizational units.

Get-ADOrganizationalUnit -Filter *
Open →
PowerShell
Move-ADObject

Move an Active Directory object to another OU.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com"
Open →
PowerShell
Get-ADDomain

Display Active Directory domain information.

Get-ADDomain
Open →
PowerShell
Get-ADForest

Display Active Directory forest information.

Get-ADForest
Open →
PowerShell
Get-ADDomainController

List domain controllers.

Get-ADDomainController -Filter *
Open →
PowerShell
Get-ADReplicationFailure

Display Active Directory replication failures.

Get-ADReplicationFailure -Target * -Scope Forest
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy

Display the default domain password policy.

Get-ADDefaultDomainPasswordPolicy
Open →
PowerShell
Set-ADAccountPassword

Reset an Active Directory password.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString)
Open →
PowerShell
Get-ADUser — Basic Usage

Use Get-ADUser for a standard administrative task.

Get-ADUser -Filter * -Properties mail,Enabled
Open →
PowerShell
New-ADUser — Basic Usage

Use New-ADUser for a standard administrative task.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true
Open →
PowerShell
Set-ADUser — Basic Usage

Use Set-ADUser for a standard administrative task.

Set-ADUser jsmith -Department "IT"
Open →
PowerShell
Disable-ADAccount — Basic Usage

Use Disable-ADAccount for a standard administrative task.

Disable-ADAccount jsmith
Open →
PowerShell
Enable-ADAccount — Basic Usage

Use Enable-ADAccount for a standard administrative task.

Enable-ADAccount jsmith
Open →
PowerShell
Unlock-ADAccount — Basic Usage

Use Unlock-ADAccount for a standard administrative task.

Unlock-ADAccount jsmith
Open →
PowerShell
Search-ADAccount — Basic Usage

Use Search-ADAccount for a standard administrative task.

Search-ADAccount -LockedOut
Open →
PowerShell
Get-ADGroup — Basic Usage

Use Get-ADGroup for a standard administrative task.

Get-ADGroup -Filter *
Open →
PowerShell
Get-ADGroupMember — Basic Usage

Use Get-ADGroupMember for a standard administrative task.

Get-ADGroupMember "Domain Admins"
Open →
PowerShell
Add-ADGroupMember — Basic Usage

Use Add-ADGroupMember for a standard administrative task.

Add-ADGroupMember "Help Desk" -Members jsmith
Open →
PowerShell
Remove-ADGroupMember — Basic Usage

Use Remove-ADGroupMember for a standard administrative task.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false
Open →
PowerShell
Get-ADComputer — Basic Usage

Use Get-ADComputer for a standard administrative task.

Get-ADComputer -Filter * -Properties OperatingSystem
Open →
PowerShell
Get-ADOrganizationalUnit — Basic Usage

Use Get-ADOrganizationalUnit for a standard administrative task.

Get-ADOrganizationalUnit -Filter *
Open →
PowerShell
Move-ADObject — Basic Usage

Use Move-ADObject for a standard administrative task.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com"
Open →
PowerShell
Get-ADDomain — Basic Usage

Use Get-ADDomain for a standard administrative task.

Get-ADDomain
Open →
PowerShell
Get-ADForest — Basic Usage

Use Get-ADForest for a standard administrative task.

Get-ADForest
Open →
PowerShell
Get-ADDomainController — Basic Usage

Use Get-ADDomainController for a standard administrative task.

Get-ADDomainController -Filter *
Open →
PowerShell
Get-ADReplicationFailure — Basic Usage

Use Get-ADReplicationFailure for a standard administrative task.

Get-ADReplicationFailure -Target * -Scope Forest
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Basic Usage

Use Get-ADDefaultDomainPasswordPolicy for a standard administrative task.

Get-ADDefaultDomainPasswordPolicy
Open →
PowerShell
Set-ADAccountPassword — Basic Usage

Use Set-ADAccountPassword for a standard administrative task.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString)
Open →
PowerShell
Get-ADUser — Export Results

Export the output of Get-ADUser for documentation or review.

Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
New-ADUser — Export Results

Export the output of New-ADUser for documentation or review.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Set-ADUser — Export Results

Export the output of Set-ADUser for documentation or review.

Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Disable-ADAccount — Export Results

Export the output of Disable-ADAccount for documentation or review.

Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Enable-ADAccount — Export Results

Export the output of Enable-ADAccount for documentation or review.

Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Unlock-ADAccount — Export Results

Export the output of Unlock-ADAccount for documentation or review.

Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Search-ADAccount — Export Results

Export the output of Search-ADAccount for documentation or review.

Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADGroup — Export Results

Export the output of Get-ADGroup for documentation or review.

Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADGroupMember — Export Results

Export the output of Get-ADGroupMember for documentation or review.

Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Add-ADGroupMember — Export Results

Export the output of Add-ADGroupMember for documentation or review.

Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Remove-ADGroupMember — Export Results

Export the output of Remove-ADGroupMember for documentation or review.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADComputer — Export Results

Export the output of Get-ADComputer for documentation or review.

Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results

Export the output of Get-ADOrganizationalUnit for documentation or review.

Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Move-ADObject — Export Results

Export the output of Move-ADObject for documentation or review.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADDomain — Export Results

Export the output of Get-ADDomain for documentation or review.

Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADForest — Export Results

Export the output of Get-ADForest for documentation or review.

Get-ADForest | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADDomainController — Export Results

Export the output of Get-ADDomainController for documentation or review.

Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADReplicationFailure — Export Results

Export the output of Get-ADReplicationFailure for documentation or review.

Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results

Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Set-ADAccountPassword — Export Results

Export the output of Set-ADAccountPassword for documentation or review.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ADUser Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADUser.

Get-Help Get-ADUser -Full
Open →
PowerShell
New-ADUser Help and Syntax

Display complete syntax, parameter details, and examples for New-ADUser.

Get-Help New-ADUser -Full
Open →
PowerShell
Set-ADUser Help and Syntax

Display complete syntax, parameter details, and examples for Set-ADUser.

Get-Help Set-ADUser -Full
Open →
PowerShell
Disable-ADAccount Help and Syntax

Display complete syntax, parameter details, and examples for Disable-ADAccount.

Get-Help Disable-ADAccount -Full
Open →
PowerShell
Enable-ADAccount Help and Syntax

Display complete syntax, parameter details, and examples for Enable-ADAccount.

Get-Help Enable-ADAccount -Full
Open →
PowerShell
Unlock-ADAccount Help and Syntax

Display complete syntax, parameter details, and examples for Unlock-ADAccount.

Get-Help Unlock-ADAccount -Full
Open →
PowerShell
Search-ADAccount Help and Syntax

Display complete syntax, parameter details, and examples for Search-ADAccount.

Get-Help Search-ADAccount -Full
Open →
PowerShell
Get-ADGroup Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADGroup.

Get-Help Get-ADGroup -Full
Open →
PowerShell
Get-ADGroupMember Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADGroupMember.

Get-Help Get-ADGroupMember -Full
Open →
PowerShell
Add-ADGroupMember Help and Syntax

Display complete syntax, parameter details, and examples for Add-ADGroupMember.

Get-Help Add-ADGroupMember -Full
Open →
PowerShell
Remove-ADGroupMember Help and Syntax

Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

Get-Help Remove-ADGroupMember -Full
Open →
PowerShell
Get-ADComputer Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADComputer.

Get-Help Get-ADComputer -Full
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

Get-Help Get-ADOrganizationalUnit -Full
Open →
PowerShell
Move-ADObject Help and Syntax

Display complete syntax, parameter details, and examples for Move-ADObject.

Get-Help Move-ADObject -Full
Open →
PowerShell
Get-ADDomain Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDomain.

Get-Help Get-ADDomain -Full
Open →
PowerShell
Get-ADForest Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADForest.

Get-Help Get-ADForest -Full
Open →
PowerShell
Get-ADDomainController Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDomainController.

Get-Help Get-ADDomainController -Full
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

Get-Help Get-ADReplicationFailure -Full
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

Get-Help Get-ADDefaultDomainPasswordPolicy -Full
Open →
PowerShell
Set-ADAccountPassword Help and Syntax

Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

Get-Help Set-ADAccountPassword -Full
Open →
PowerShell
Get-ADUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADUser — Basic Usage.

Get-Help Get-ADUser -Full
Open →
PowerShell
New-ADUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for New-ADUser — Basic Usage.

Get-Help New-ADUser -Full
Open →
PowerShell
Set-ADUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Set-ADUser — Basic Usage.

Get-Help Set-ADUser -Full
Open →
PowerShell
Disable-ADAccount — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Disable-ADAccount — Basic Usage.

Get-Help Disable-ADAccount -Full
Open →
PowerShell
Enable-ADAccount — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Enable-ADAccount — Basic Usage.

Get-Help Enable-ADAccount -Full
Open →
PowerShell
Unlock-ADAccount — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Unlock-ADAccount — Basic Usage.

Get-Help Unlock-ADAccount -Full
Open →
PowerShell
Search-ADAccount — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Search-ADAccount — Basic Usage.

Get-Help Search-ADAccount -Full
Open →
PowerShell
Get-ADGroup — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADGroup — Basic Usage.

Get-Help Get-ADGroup -Full
Open →
PowerShell
Get-ADGroupMember — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADGroupMember — Basic Usage.

Get-Help Get-ADGroupMember -Full
Open →
PowerShell
Add-ADGroupMember — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Add-ADGroupMember — Basic Usage.

Get-Help Add-ADGroupMember -Full
Open →
PowerShell
Remove-ADGroupMember — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Remove-ADGroupMember — Basic Usage.

Get-Help Remove-ADGroupMember -Full
Open →
PowerShell
Get-ADComputer — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADComputer — Basic Usage.

Get-Help Get-ADComputer -Full
Open →
PowerShell
Get-ADOrganizationalUnit — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit — Basic Usage.

Get-Help Get-ADOrganizationalUnit -Full
Open →
PowerShell
Move-ADObject — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Move-ADObject — Basic Usage.

Get-Help Move-ADObject -Full
Open →
PowerShell
Get-ADDomain — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDomain — Basic Usage.

Get-Help Get-ADDomain -Full
Open →
PowerShell
Get-ADForest — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADForest — Basic Usage.

Get-Help Get-ADForest -Full
Open →
PowerShell
Get-ADDomainController — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDomainController — Basic Usage.

Get-Help Get-ADDomainController -Full
Open →
PowerShell
Get-ADReplicationFailure — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADReplicationFailure — Basic Usage.

Get-Help Get-ADReplicationFailure -Full
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy — Basic Usage.

Get-Help Get-ADDefaultDomainPasswordPolicy -Full
Open →
PowerShell
Set-ADAccountPassword — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Set-ADAccountPassword — Basic Usage.

Get-Help Set-ADAccountPassword -Full
Open →
PowerShell
Get-ADUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADUser — Export Results.

Get-Help Get-ADUser -Full
Open →
PowerShell
New-ADUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for New-ADUser — Export Results.

Get-Help New-ADUser -Full
Open →
PowerShell
Set-ADUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Set-ADUser — Export Results.

Get-Help Set-ADUser -Full
Open →
PowerShell
Disable-ADAccount — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Disable-ADAccount — Export Results.

Get-Help Disable-ADAccount -Full
Open →
PowerShell
Enable-ADAccount — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Enable-ADAccount — Export Results.

Get-Help Enable-ADAccount -Full
Open →
PowerShell
Unlock-ADAccount — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Unlock-ADAccount — Export Results.

Get-Help Unlock-ADAccount -Full
Open →
PowerShell
Search-ADAccount — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Search-ADAccount — Export Results.

Get-Help Search-ADAccount -Full
Open →
PowerShell
Get-ADGroup — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADGroup — Export Results.

Get-Help Get-ADGroup -Full
Open →
PowerShell
Get-ADGroupMember — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADGroupMember — Export Results.

Get-Help Get-ADGroupMember -Full
Open →
PowerShell
Add-ADGroupMember — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Add-ADGroupMember — Export Results.

Get-Help Add-ADGroupMember -Full
Open →
PowerShell
Remove-ADGroupMember — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Remove-ADGroupMember — Export Results.

Get-Help Remove-ADGroupMember -Full
Open →
PowerShell
Get-ADComputer — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADComputer — Export Results.

Get-Help Get-ADComputer -Full
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit — Export Results.

Get-Help Get-ADOrganizationalUnit -Full
Open →
PowerShell
Move-ADObject — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Move-ADObject — Export Results.

Get-Help Move-ADObject -Full
Open →
PowerShell
Get-ADDomain — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDomain — Export Results.

Get-Help Get-ADDomain -Full
Open →
PowerShell
Get-ADForest — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADForest — Export Results.

Get-Help Get-ADForest -Full
Open →
PowerShell
Get-ADDomainController — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDomainController — Export Results.

Get-Help Get-ADDomainController -Full
Open →
PowerShell
Get-ADReplicationFailure — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADReplicationFailure — Export Results.

Get-Help Get-ADReplicationFailure -Full
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy — Export Results.

Get-Help Get-ADDefaultDomainPasswordPolicy -Full
Open →
PowerShell
Set-ADAccountPassword — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Set-ADAccountPassword — Export Results.

Get-Help Set-ADAccountPassword -Full
Open →
PowerShell
Get-ADUser — Formatted details

Display all returned properties in a readable list. Base task: List Active Directory users and selected properties.

Get-ADUser -Filter * -Properties mail,Enabled | Format-List *
Open →
PowerShell
Get-ADUser — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List Active Directory users and selected properties.

Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADUser — Measure execution time

Measure how long the command takes to complete. Base task: List Active Directory users and selected properties.

Measure-Command { Get-ADUser -Filter * -Properties mail,Enabled }
Open →
PowerShell
Get-ADUser — Stop on error

Run the command with terminating error handling. Base task: List Active Directory users and selected properties.

try { Get-ADUser -Filter * -Properties mail,Enabled -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADUser — Save transcript output

Capture the command and console output in a transcript log. Base task: List Active Directory users and selected properties.

Start-Transcript -Path .\command-session.log; Get-ADUser -Filter * -Properties mail,Enabled; Stop-Transcript
Open →
PowerShell
Get-ADUser — Select common properties

Return all available object properties for inspection. Base task: List Active Directory users and selected properties.

Get-ADUser -Filter * -Properties mail,Enabled | Select-Object *
Open →
PowerShell
Get-ADUser — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List Active Directory users and selected properties.

Get-ADUser -Filter * -Properties mail,Enabled | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADUser — Write results to text

Save formatted output to a UTF-8 text file. Base task: List Active Directory users and selected properties.

Get-ADUser -Filter * -Properties mail,Enabled | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-ADUser — Formatted details

Display all returned properties in a readable list. Base task: Create an Active Directory user.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Format-List *
Open →
PowerShell
New-ADUser — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Create an Active Directory user.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-ADUser — Measure execution time

Measure how long the command takes to complete. Base task: Create an Active Directory user.

Measure-Command { New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true }
Open →
PowerShell
New-ADUser — Stop on error

Run the command with terminating error handling. Base task: Create an Active Directory user.

try { New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-ADUser — Save transcript output

Capture the command and console output in a transcript log. Base task: Create an Active Directory user.

Start-Transcript -Path .\command-session.log; New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true; Stop-Transcript
Open →
PowerShell
New-ADUser — Select common properties

Return all available object properties for inspection. Base task: Create an Active Directory user.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Select-Object *
Open →
PowerShell
New-ADUser — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Create an Active Directory user.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | ConvertTo-Json -Depth 6
Open →
PowerShell
New-ADUser — Write results to text

Save formatted output to a UTF-8 text file. Base task: Create an Active Directory user.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ADUser — Formatted details

Display all returned properties in a readable list. Base task: Update Active Directory user attributes.

Set-ADUser jsmith -Department "IT" | Format-List *
Open →
PowerShell
Set-ADUser — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Update Active Directory user attributes.

Set-ADUser jsmith -Department "IT" | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ADUser — Measure execution time

Measure how long the command takes to complete. Base task: Update Active Directory user attributes.

Measure-Command { Set-ADUser jsmith -Department "IT" }
Open →
PowerShell
Set-ADUser — Stop on error

Run the command with terminating error handling. Base task: Update Active Directory user attributes.

try { Set-ADUser jsmith -Department "IT" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ADUser — Save transcript output

Capture the command and console output in a transcript log. Base task: Update Active Directory user attributes.

Start-Transcript -Path .\command-session.log; Set-ADUser jsmith -Department "IT"; Stop-Transcript
Open →
PowerShell
Set-ADUser — Select common properties

Return all available object properties for inspection. Base task: Update Active Directory user attributes.

Set-ADUser jsmith -Department "IT" | Select-Object *
Open →
PowerShell
Set-ADUser — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Update Active Directory user attributes.

Set-ADUser jsmith -Department "IT" | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ADUser — Write results to text

Save formatted output to a UTF-8 text file. Base task: Update Active Directory user attributes.

Set-ADUser jsmith -Department "IT" | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Disable-ADAccount — Formatted details

Display all returned properties in a readable list. Base task: Disable an Active Directory account.

Disable-ADAccount jsmith | Format-List *
Open →
PowerShell
Disable-ADAccount — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Disable an Active Directory account.

Disable-ADAccount jsmith | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Disable-ADAccount — Measure execution time

Measure how long the command takes to complete. Base task: Disable an Active Directory account.

Measure-Command { Disable-ADAccount jsmith }
Open →
PowerShell
Disable-ADAccount — Stop on error

Run the command with terminating error handling. Base task: Disable an Active Directory account.

try { Disable-ADAccount jsmith -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Disable-ADAccount — Save transcript output

Capture the command and console output in a transcript log. Base task: Disable an Active Directory account.

Start-Transcript -Path .\command-session.log; Disable-ADAccount jsmith; Stop-Transcript
Open →
PowerShell
Disable-ADAccount — Select common properties

Return all available object properties for inspection. Base task: Disable an Active Directory account.

Disable-ADAccount jsmith | Select-Object *
Open →
PowerShell
Disable-ADAccount — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Disable an Active Directory account.

Disable-ADAccount jsmith | ConvertTo-Json -Depth 6
Open →
PowerShell
Disable-ADAccount — Write results to text

Save formatted output to a UTF-8 text file. Base task: Disable an Active Directory account.

Disable-ADAccount jsmith | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Enable-ADAccount — Formatted details

Display all returned properties in a readable list. Base task: Enable an Active Directory account.

Enable-ADAccount jsmith | Format-List *
Open →
PowerShell
Enable-ADAccount — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Enable an Active Directory account.

Enable-ADAccount jsmith | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Enable-ADAccount — Measure execution time

Measure how long the command takes to complete. Base task: Enable an Active Directory account.

Measure-Command { Enable-ADAccount jsmith }
Open →
PowerShell
Enable-ADAccount — Stop on error

Run the command with terminating error handling. Base task: Enable an Active Directory account.

try { Enable-ADAccount jsmith -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Enable-ADAccount — Save transcript output

Capture the command and console output in a transcript log. Base task: Enable an Active Directory account.

Start-Transcript -Path .\command-session.log; Enable-ADAccount jsmith; Stop-Transcript
Open →
PowerShell
Enable-ADAccount — Select common properties

Return all available object properties for inspection. Base task: Enable an Active Directory account.

Enable-ADAccount jsmith | Select-Object *
Open →
PowerShell
Enable-ADAccount — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Enable an Active Directory account.

Enable-ADAccount jsmith | ConvertTo-Json -Depth 6
Open →
PowerShell
Enable-ADAccount — Write results to text

Save formatted output to a UTF-8 text file. Base task: Enable an Active Directory account.

Enable-ADAccount jsmith | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Unlock-ADAccount — Formatted details

Display all returned properties in a readable list. Base task: Unlock a locked Active Directory account.

Unlock-ADAccount jsmith | Format-List *
Open →
PowerShell
Unlock-ADAccount — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Unlock a locked Active Directory account.

Unlock-ADAccount jsmith | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Unlock-ADAccount — Measure execution time

Measure how long the command takes to complete. Base task: Unlock a locked Active Directory account.

Measure-Command { Unlock-ADAccount jsmith }
Open →
PowerShell
Unlock-ADAccount — Stop on error

Run the command with terminating error handling. Base task: Unlock a locked Active Directory account.

try { Unlock-ADAccount jsmith -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Unlock-ADAccount — Save transcript output

Capture the command and console output in a transcript log. Base task: Unlock a locked Active Directory account.

Start-Transcript -Path .\command-session.log; Unlock-ADAccount jsmith; Stop-Transcript
Open →
PowerShell
Unlock-ADAccount — Select common properties

Return all available object properties for inspection. Base task: Unlock a locked Active Directory account.

Unlock-ADAccount jsmith | Select-Object *
Open →
PowerShell
Unlock-ADAccount — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Unlock a locked Active Directory account.

Unlock-ADAccount jsmith | ConvertTo-Json -Depth 6
Open →
PowerShell
Unlock-ADAccount — Write results to text

Save formatted output to a UTF-8 text file. Base task: Unlock a locked Active Directory account.

Unlock-ADAccount jsmith | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Search-ADAccount — Formatted details

Display all returned properties in a readable list. Base task: Find locked, disabled, inactive, or expired accounts.

Search-ADAccount -LockedOut | Format-List *
Open →
PowerShell
Search-ADAccount — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Find locked, disabled, inactive, or expired accounts.

Search-ADAccount -LockedOut | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Search-ADAccount — Measure execution time

Measure how long the command takes to complete. Base task: Find locked, disabled, inactive, or expired accounts.

Measure-Command { Search-ADAccount -LockedOut }
Open →
PowerShell
Search-ADAccount — Stop on error

Run the command with terminating error handling. Base task: Find locked, disabled, inactive, or expired accounts.

try { Search-ADAccount -LockedOut -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Search-ADAccount — Save transcript output

Capture the command and console output in a transcript log. Base task: Find locked, disabled, inactive, or expired accounts.

Start-Transcript -Path .\command-session.log; Search-ADAccount -LockedOut; Stop-Transcript
Open →
PowerShell
Search-ADAccount — Select common properties

Return all available object properties for inspection. Base task: Find locked, disabled, inactive, or expired accounts.

Search-ADAccount -LockedOut | Select-Object *
Open →
PowerShell
Search-ADAccount — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Find locked, disabled, inactive, or expired accounts.

Search-ADAccount -LockedOut | ConvertTo-Json -Depth 6
Open →
PowerShell
Search-ADAccount — Write results to text

Save formatted output to a UTF-8 text file. Base task: Find locked, disabled, inactive, or expired accounts.

Search-ADAccount -LockedOut | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADGroup — Formatted details

Display all returned properties in a readable list. Base task: List Active Directory groups.

Get-ADGroup -Filter * | Format-List *
Open →
PowerShell
Get-ADGroup — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List Active Directory groups.

Get-ADGroup -Filter * | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADGroup — Measure execution time

Measure how long the command takes to complete. Base task: List Active Directory groups.

Measure-Command { Get-ADGroup -Filter * }
Open →
PowerShell
Get-ADGroup — Stop on error

Run the command with terminating error handling. Base task: List Active Directory groups.

try { Get-ADGroup -Filter * -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADGroup — Save transcript output

Capture the command and console output in a transcript log. Base task: List Active Directory groups.

Start-Transcript -Path .\command-session.log; Get-ADGroup -Filter *; Stop-Transcript
Open →
PowerShell
Get-ADGroup — Select common properties

Return all available object properties for inspection. Base task: List Active Directory groups.

Get-ADGroup -Filter * | Select-Object *
Open →
PowerShell
Get-ADGroup — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List Active Directory groups.

Get-ADGroup -Filter * | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADGroup — Write results to text

Save formatted output to a UTF-8 text file. Base task: List Active Directory groups.

Get-ADGroup -Filter * | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADGroupMember — Formatted details

Display all returned properties in a readable list. Base task: List members of an Active Directory group.

Get-ADGroupMember "Domain Admins" | Format-List *
Open →
PowerShell
Get-ADGroupMember — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List members of an Active Directory group.

Get-ADGroupMember "Domain Admins" | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADGroupMember — Measure execution time

Measure how long the command takes to complete. Base task: List members of an Active Directory group.

Measure-Command { Get-ADGroupMember "Domain Admins" }
Open →
PowerShell
Get-ADGroupMember — Stop on error

Run the command with terminating error handling. Base task: List members of an Active Directory group.

try { Get-ADGroupMember "Domain Admins" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADGroupMember — Save transcript output

Capture the command and console output in a transcript log. Base task: List members of an Active Directory group.

Start-Transcript -Path .\command-session.log; Get-ADGroupMember "Domain Admins"; Stop-Transcript
Open →
PowerShell
Get-ADGroupMember — Select common properties

Return all available object properties for inspection. Base task: List members of an Active Directory group.

Get-ADGroupMember "Domain Admins" | Select-Object *
Open →
PowerShell
Get-ADGroupMember — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List members of an Active Directory group.

Get-ADGroupMember "Domain Admins" | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADGroupMember — Write results to text

Save formatted output to a UTF-8 text file. Base task: List members of an Active Directory group.

Get-ADGroupMember "Domain Admins" | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-ADGroupMember — Formatted details

Display all returned properties in a readable list. Base task: Add an account to an Active Directory group.

Add-ADGroupMember "Help Desk" -Members jsmith | Format-List *
Open →
PowerShell
Add-ADGroupMember — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Add an account to an Active Directory group.

Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-ADGroupMember — Measure execution time

Measure how long the command takes to complete. Base task: Add an account to an Active Directory group.

Measure-Command { Add-ADGroupMember "Help Desk" -Members jsmith }
Open →
PowerShell
Add-ADGroupMember — Stop on error

Run the command with terminating error handling. Base task: Add an account to an Active Directory group.

try { Add-ADGroupMember "Help Desk" -Members jsmith -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-ADGroupMember — Save transcript output

Capture the command and console output in a transcript log. Base task: Add an account to an Active Directory group.

Start-Transcript -Path .\command-session.log; Add-ADGroupMember "Help Desk" -Members jsmith; Stop-Transcript
Open →
PowerShell
Add-ADGroupMember — Select common properties

Return all available object properties for inspection. Base task: Add an account to an Active Directory group.

Add-ADGroupMember "Help Desk" -Members jsmith | Select-Object *
Open →
PowerShell
Add-ADGroupMember — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Add an account to an Active Directory group.

Add-ADGroupMember "Help Desk" -Members jsmith | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-ADGroupMember — Write results to text

Save formatted output to a UTF-8 text file. Base task: Add an account to an Active Directory group.

Add-ADGroupMember "Help Desk" -Members jsmith | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Remove-ADGroupMember — Formatted details

Display all returned properties in a readable list. Base task: Remove an account from an Active Directory group.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Format-List *
Open →
PowerShell
Remove-ADGroupMember — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Remove an account from an Active Directory group.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Remove-ADGroupMember — Measure execution time

Measure how long the command takes to complete. Base task: Remove an account from an Active Directory group.

Measure-Command { Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false }
Open →
PowerShell
Remove-ADGroupMember — Stop on error

Run the command with terminating error handling. Base task: Remove an account from an Active Directory group.

try { Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Remove-ADGroupMember — Save transcript output

Capture the command and console output in a transcript log. Base task: Remove an account from an Active Directory group.

Start-Transcript -Path .\command-session.log; Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false; Stop-Transcript
Open →
PowerShell
Remove-ADGroupMember — Select common properties

Return all available object properties for inspection. Base task: Remove an account from an Active Directory group.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Select-Object *
Open →
PowerShell
Remove-ADGroupMember — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Remove an account from an Active Directory group.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | ConvertTo-Json -Depth 6
Open →
PowerShell
Remove-ADGroupMember — Write results to text

Save formatted output to a UTF-8 text file. Base task: Remove an account from an Active Directory group.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADComputer — Formatted details

Display all returned properties in a readable list. Base task: List Active Directory computer objects.

Get-ADComputer -Filter * -Properties OperatingSystem | Format-List *
Open →
PowerShell
Get-ADComputer — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List Active Directory computer objects.

Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADComputer — Measure execution time

Measure how long the command takes to complete. Base task: List Active Directory computer objects.

Measure-Command { Get-ADComputer -Filter * -Properties OperatingSystem }
Open →
PowerShell
Get-ADComputer — Stop on error

Run the command with terminating error handling. Base task: List Active Directory computer objects.

try { Get-ADComputer -Filter * -Properties OperatingSystem -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADComputer — Save transcript output

Capture the command and console output in a transcript log. Base task: List Active Directory computer objects.

Start-Transcript -Path .\command-session.log; Get-ADComputer -Filter * -Properties OperatingSystem; Stop-Transcript
Open →
PowerShell
Get-ADComputer — Select common properties

Return all available object properties for inspection. Base task: List Active Directory computer objects.

Get-ADComputer -Filter * -Properties OperatingSystem | Select-Object *
Open →
PowerShell
Get-ADComputer — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List Active Directory computer objects.

Get-ADComputer -Filter * -Properties OperatingSystem | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADComputer — Write results to text

Save formatted output to a UTF-8 text file. Base task: List Active Directory computer objects.

Get-ADComputer -Filter * -Properties OperatingSystem | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADOrganizationalUnit — Formatted details

Display all returned properties in a readable list. Base task: List Active Directory organizational units.

Get-ADOrganizationalUnit -Filter * | Format-List *
Open →
PowerShell
Get-ADOrganizationalUnit — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List Active Directory organizational units.

Get-ADOrganizationalUnit -Filter * | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADOrganizationalUnit — Measure execution time

Measure how long the command takes to complete. Base task: List Active Directory organizational units.

Measure-Command { Get-ADOrganizationalUnit -Filter * }
Open →
PowerShell
Get-ADOrganizationalUnit — Stop on error

Run the command with terminating error handling. Base task: List Active Directory organizational units.

try { Get-ADOrganizationalUnit -Filter * -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADOrganizationalUnit — Save transcript output

Capture the command and console output in a transcript log. Base task: List Active Directory organizational units.

Start-Transcript -Path .\command-session.log; Get-ADOrganizationalUnit -Filter *; Stop-Transcript
Open →
PowerShell
Get-ADOrganizationalUnit — Select common properties

Return all available object properties for inspection. Base task: List Active Directory organizational units.

Get-ADOrganizationalUnit -Filter * | Select-Object *
Open →
PowerShell
Get-ADOrganizationalUnit — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List Active Directory organizational units.

Get-ADOrganizationalUnit -Filter * | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADOrganizationalUnit — Write results to text

Save formatted output to a UTF-8 text file. Base task: List Active Directory organizational units.

Get-ADOrganizationalUnit -Filter * | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Move-ADObject — Formatted details

Display all returned properties in a readable list. Base task: Move an Active Directory object to another OU.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Format-List *
Open →
PowerShell
Move-ADObject — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Move an Active Directory object to another OU.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Move-ADObject — Measure execution time

Measure how long the command takes to complete. Base task: Move an Active Directory object to another OU.

Measure-Command { Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" }
Open →
PowerShell
Move-ADObject — Stop on error

Run the command with terminating error handling. Base task: Move an Active Directory object to another OU.

try { Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Move-ADObject — Save transcript output

Capture the command and console output in a transcript log. Base task: Move an Active Directory object to another OU.

Start-Transcript -Path .\command-session.log; Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com"; Stop-Transcript
Open →
PowerShell
Move-ADObject — Select common properties

Return all available object properties for inspection. Base task: Move an Active Directory object to another OU.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Select-Object *
Open →
PowerShell
Move-ADObject — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Move an Active Directory object to another OU.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | ConvertTo-Json -Depth 6
Open →
PowerShell
Move-ADObject — Write results to text

Save formatted output to a UTF-8 text file. Base task: Move an Active Directory object to another OU.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDomain — Formatted details

Display all returned properties in a readable list. Base task: Display Active Directory domain information.

Get-ADDomain | Format-List *
Open →
PowerShell
Get-ADDomain — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display Active Directory domain information.

Get-ADDomain | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDomain — Measure execution time

Measure how long the command takes to complete. Base task: Display Active Directory domain information.

Measure-Command { Get-ADDomain }
Open →
PowerShell
Get-ADDomain — Stop on error

Run the command with terminating error handling. Base task: Display Active Directory domain information.

try { Get-ADDomain -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDomain — Save transcript output

Capture the command and console output in a transcript log. Base task: Display Active Directory domain information.

Start-Transcript -Path .\command-session.log; Get-ADDomain; Stop-Transcript
Open →
PowerShell
Get-ADDomain — Select common properties

Return all available object properties for inspection. Base task: Display Active Directory domain information.

Get-ADDomain | Select-Object *
Open →
PowerShell
Get-ADDomain — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display Active Directory domain information.

Get-ADDomain | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDomain — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display Active Directory domain information.

Get-ADDomain | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADForest — Formatted details

Display all returned properties in a readable list. Base task: Display Active Directory forest information.

Get-ADForest | Format-List *
Open →
PowerShell
Get-ADForest — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display Active Directory forest information.

Get-ADForest | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADForest — Measure execution time

Measure how long the command takes to complete. Base task: Display Active Directory forest information.

Measure-Command { Get-ADForest }
Open →
PowerShell
Get-ADForest — Stop on error

Run the command with terminating error handling. Base task: Display Active Directory forest information.

try { Get-ADForest -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADForest — Save transcript output

Capture the command and console output in a transcript log. Base task: Display Active Directory forest information.

Start-Transcript -Path .\command-session.log; Get-ADForest; Stop-Transcript
Open →
PowerShell
Get-ADForest — Select common properties

Return all available object properties for inspection. Base task: Display Active Directory forest information.

Get-ADForest | Select-Object *
Open →
PowerShell
Get-ADForest — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display Active Directory forest information.

Get-ADForest | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADForest — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display Active Directory forest information.

Get-ADForest | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDomainController — Formatted details

Display all returned properties in a readable list. Base task: List domain controllers.

Get-ADDomainController -Filter * | Format-List *
Open →
PowerShell
Get-ADDomainController — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List domain controllers.

Get-ADDomainController -Filter * | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDomainController — Measure execution time

Measure how long the command takes to complete. Base task: List domain controllers.

Measure-Command { Get-ADDomainController -Filter * }
Open →
PowerShell
Get-ADDomainController — Stop on error

Run the command with terminating error handling. Base task: List domain controllers.

try { Get-ADDomainController -Filter * -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDomainController — Save transcript output

Capture the command and console output in a transcript log. Base task: List domain controllers.

Start-Transcript -Path .\command-session.log; Get-ADDomainController -Filter *; Stop-Transcript
Open →
PowerShell
Get-ADDomainController — Select common properties

Return all available object properties for inspection. Base task: List domain controllers.

Get-ADDomainController -Filter * | Select-Object *
Open →
PowerShell
Get-ADDomainController — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List domain controllers.

Get-ADDomainController -Filter * | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDomainController — Write results to text

Save formatted output to a UTF-8 text file. Base task: List domain controllers.

Get-ADDomainController -Filter * | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADReplicationFailure — Formatted details

Display all returned properties in a readable list. Base task: Display Active Directory replication failures.

Get-ADReplicationFailure -Target * -Scope Forest | Format-List *
Open →
PowerShell
Get-ADReplicationFailure — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display Active Directory replication failures.

Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADReplicationFailure — Measure execution time

Measure how long the command takes to complete. Base task: Display Active Directory replication failures.

Measure-Command { Get-ADReplicationFailure -Target * -Scope Forest }
Open →
PowerShell
Get-ADReplicationFailure — Stop on error

Run the command with terminating error handling. Base task: Display Active Directory replication failures.

try { Get-ADReplicationFailure -Target * -Scope Forest -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADReplicationFailure — Save transcript output

Capture the command and console output in a transcript log. Base task: Display Active Directory replication failures.

Start-Transcript -Path .\command-session.log; Get-ADReplicationFailure -Target * -Scope Forest; Stop-Transcript
Open →
PowerShell
Get-ADReplicationFailure — Select common properties

Return all available object properties for inspection. Base task: Display Active Directory replication failures.

Get-ADReplicationFailure -Target * -Scope Forest | Select-Object *
Open →
PowerShell
Get-ADReplicationFailure — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display Active Directory replication failures.

Get-ADReplicationFailure -Target * -Scope Forest | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADReplicationFailure — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display Active Directory replication failures.

Get-ADReplicationFailure -Target * -Scope Forest | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Formatted details

Display all returned properties in a readable list. Base task: Display the default domain password policy.

Get-ADDefaultDomainPasswordPolicy | Format-List *
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display the default domain password policy.

Get-ADDefaultDomainPasswordPolicy | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Measure execution time

Measure how long the command takes to complete. Base task: Display the default domain password policy.

Measure-Command { Get-ADDefaultDomainPasswordPolicy }
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Stop on error

Run the command with terminating error handling. Base task: Display the default domain password policy.

try { Get-ADDefaultDomainPasswordPolicy -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Save transcript output

Capture the command and console output in a transcript log. Base task: Display the default domain password policy.

Start-Transcript -Path .\command-session.log; Get-ADDefaultDomainPasswordPolicy; Stop-Transcript
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Select common properties

Return all available object properties for inspection. Base task: Display the default domain password policy.

Get-ADDefaultDomainPasswordPolicy | Select-Object *
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display the default domain password policy.

Get-ADDefaultDomainPasswordPolicy | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display the default domain password policy.

Get-ADDefaultDomainPasswordPolicy | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ADAccountPassword — Formatted details

Display all returned properties in a readable list. Base task: Reset an Active Directory password.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Format-List *
Open →
PowerShell
Set-ADAccountPassword — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Reset an Active Directory password.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ADAccountPassword — Measure execution time

Measure how long the command takes to complete. Base task: Reset an Active Directory password.

Measure-Command { Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) }
Open →
PowerShell
Set-ADAccountPassword — Stop on error

Run the command with terminating error handling. Base task: Reset an Active Directory password.

try { Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ADAccountPassword — Save transcript output

Capture the command and console output in a transcript log. Base task: Reset an Active Directory password.

Start-Transcript -Path .\command-session.log; Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString); Stop-Transcript
Open →
PowerShell
Set-ADAccountPassword — Select common properties

Return all available object properties for inspection. Base task: Reset an Active Directory password.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Select-Object *
Open →
PowerShell
Set-ADAccountPassword — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Reset an Active Directory password.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ADAccountPassword — Write results to text

Save formatted output to a UTF-8 text file. Base task: Reset an Active Directory password.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADUser — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADUser for documentation or review.

Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADUser — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADUser for documentation or review.

Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADUser — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADUser for documentation or review.

Measure-Command { Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADUser — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADUser for documentation or review.

try { Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADUser — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADUser for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADUser — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADUser for documentation or review.

Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADUser — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADUser for documentation or review.

Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADUser — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADUser for documentation or review.

Get-ADUser -Filter * -Properties mail,Enabled | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-ADUser — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of New-ADUser for documentation or review.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
New-ADUser — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of New-ADUser for documentation or review.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-ADUser — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of New-ADUser for documentation or review.

Measure-Command { New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
New-ADUser — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of New-ADUser for documentation or review.

try { New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-ADUser — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of New-ADUser for documentation or review.

Start-Transcript -Path .\command-session.log; New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
New-ADUser — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of New-ADUser for documentation or review.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
New-ADUser — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of New-ADUser for documentation or review.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
New-ADUser — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of New-ADUser for documentation or review.

New-ADUser -Name "Jane Smith" -SamAccountName jsmith -Enabled $true | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ADUser — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Set-ADUser for documentation or review.

Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Set-ADUser — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Set-ADUser for documentation or review.

Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ADUser — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Set-ADUser for documentation or review.

Measure-Command { Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Set-ADUser — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Set-ADUser for documentation or review.

try { Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ADUser — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Set-ADUser for documentation or review.

Start-Transcript -Path .\command-session.log; Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Set-ADUser — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Set-ADUser for documentation or review.

Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Set-ADUser — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Set-ADUser for documentation or review.

Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ADUser — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Set-ADUser for documentation or review.

Set-ADUser jsmith -Department "IT" | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Disable-ADAccount — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Disable-ADAccount for documentation or review.

Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Disable-ADAccount — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Disable-ADAccount for documentation or review.

Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Disable-ADAccount — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Disable-ADAccount for documentation or review.

Measure-Command { Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Disable-ADAccount — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Disable-ADAccount for documentation or review.

try { Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Disable-ADAccount — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Disable-ADAccount for documentation or review.

Start-Transcript -Path .\command-session.log; Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Disable-ADAccount — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Disable-ADAccount for documentation or review.

Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Disable-ADAccount — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Disable-ADAccount for documentation or review.

Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Disable-ADAccount — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Disable-ADAccount for documentation or review.

Disable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Enable-ADAccount — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Enable-ADAccount for documentation or review.

Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Enable-ADAccount — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Enable-ADAccount for documentation or review.

Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Enable-ADAccount — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Enable-ADAccount for documentation or review.

Measure-Command { Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Enable-ADAccount — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Enable-ADAccount for documentation or review.

try { Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Enable-ADAccount — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Enable-ADAccount for documentation or review.

Start-Transcript -Path .\command-session.log; Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Enable-ADAccount — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Enable-ADAccount for documentation or review.

Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Enable-ADAccount — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Enable-ADAccount for documentation or review.

Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Enable-ADAccount — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Enable-ADAccount for documentation or review.

Enable-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Unlock-ADAccount — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Unlock-ADAccount for documentation or review.

Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Unlock-ADAccount — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Unlock-ADAccount for documentation or review.

Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Unlock-ADAccount — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Unlock-ADAccount for documentation or review.

Measure-Command { Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Unlock-ADAccount — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Unlock-ADAccount for documentation or review.

try { Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Unlock-ADAccount — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Unlock-ADAccount for documentation or review.

Start-Transcript -Path .\command-session.log; Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Unlock-ADAccount — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Unlock-ADAccount for documentation or review.

Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Unlock-ADAccount — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Unlock-ADAccount for documentation or review.

Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Unlock-ADAccount — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Unlock-ADAccount for documentation or review.

Unlock-ADAccount jsmith | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Search-ADAccount — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Search-ADAccount for documentation or review.

Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Search-ADAccount — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Search-ADAccount for documentation or review.

Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Search-ADAccount — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Search-ADAccount for documentation or review.

Measure-Command { Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Search-ADAccount — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Search-ADAccount for documentation or review.

try { Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Search-ADAccount — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Search-ADAccount for documentation or review.

Start-Transcript -Path .\command-session.log; Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Search-ADAccount — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Search-ADAccount for documentation or review.

Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Search-ADAccount — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Search-ADAccount for documentation or review.

Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Search-ADAccount — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Search-ADAccount for documentation or review.

Search-ADAccount -LockedOut | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADGroup — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADGroup for documentation or review.

Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADGroup — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADGroup for documentation or review.

Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADGroup — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADGroup for documentation or review.

Measure-Command { Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADGroup — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADGroup for documentation or review.

try { Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADGroup — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADGroup for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADGroup — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADGroup for documentation or review.

Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADGroup — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADGroup for documentation or review.

Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADGroup — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADGroup for documentation or review.

Get-ADGroup -Filter * | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADGroupMember — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADGroupMember for documentation or review.

Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADGroupMember — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADGroupMember for documentation or review.

Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADGroupMember — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADGroupMember for documentation or review.

Measure-Command { Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADGroupMember — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADGroupMember for documentation or review.

try { Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADGroupMember — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADGroupMember for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADGroupMember — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADGroupMember for documentation or review.

Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADGroupMember — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADGroupMember for documentation or review.

Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADGroupMember — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADGroupMember for documentation or review.

Get-ADGroupMember "Domain Admins" | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-ADGroupMember — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Add-ADGroupMember for documentation or review.

Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Add-ADGroupMember — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Add-ADGroupMember for documentation or review.

Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-ADGroupMember — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Add-ADGroupMember for documentation or review.

Measure-Command { Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Add-ADGroupMember — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Add-ADGroupMember for documentation or review.

try { Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-ADGroupMember — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Add-ADGroupMember for documentation or review.

Start-Transcript -Path .\command-session.log; Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Add-ADGroupMember — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Add-ADGroupMember for documentation or review.

Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Add-ADGroupMember — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Add-ADGroupMember for documentation or review.

Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-ADGroupMember — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Add-ADGroupMember for documentation or review.

Add-ADGroupMember "Help Desk" -Members jsmith | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Remove-ADGroupMember — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Remove-ADGroupMember for documentation or review.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Remove-ADGroupMember — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Remove-ADGroupMember for documentation or review.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Remove-ADGroupMember — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Remove-ADGroupMember for documentation or review.

Measure-Command { Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Remove-ADGroupMember — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Remove-ADGroupMember for documentation or review.

try { Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Remove-ADGroupMember — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Remove-ADGroupMember for documentation or review.

Start-Transcript -Path .\command-session.log; Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Remove-ADGroupMember — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Remove-ADGroupMember for documentation or review.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Remove-ADGroupMember — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Remove-ADGroupMember for documentation or review.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Remove-ADGroupMember — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Remove-ADGroupMember for documentation or review.

Remove-ADGroupMember "Help Desk" -Members jsmith -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADComputer — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADComputer for documentation or review.

Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADComputer — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADComputer for documentation or review.

Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADComputer — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADComputer for documentation or review.

Measure-Command { Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADComputer — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADComputer for documentation or review.

try { Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADComputer — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADComputer for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADComputer — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADComputer for documentation or review.

Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADComputer — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADComputer for documentation or review.

Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADComputer — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADComputer for documentation or review.

Get-ADComputer -Filter * -Properties OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADOrganizationalUnit for documentation or review.

Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADOrganizationalUnit for documentation or review.

Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADOrganizationalUnit for documentation or review.

Measure-Command { Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADOrganizationalUnit for documentation or review.

try { Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADOrganizationalUnit for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADOrganizationalUnit for documentation or review.

Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADOrganizationalUnit for documentation or review.

Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADOrganizationalUnit — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADOrganizationalUnit for documentation or review.

Get-ADOrganizationalUnit -Filter * | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Move-ADObject — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Move-ADObject for documentation or review.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Move-ADObject — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Move-ADObject for documentation or review.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Move-ADObject — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Move-ADObject for documentation or review.

Measure-Command { Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Move-ADObject — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Move-ADObject for documentation or review.

try { Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Move-ADObject — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Move-ADObject for documentation or review.

Start-Transcript -Path .\command-session.log; Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Move-ADObject — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Move-ADObject for documentation or review.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Move-ADObject — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Move-ADObject for documentation or review.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Move-ADObject — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Move-ADObject for documentation or review.

Move-ADObject -Identity $dn -TargetPath "OU=Workstations,DC=contoso,DC=com" | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDomain — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADDomain for documentation or review.

Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADDomain — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADDomain for documentation or review.

Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDomain — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADDomain for documentation or review.

Measure-Command { Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADDomain — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADDomain for documentation or review.

try { Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDomain — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADDomain for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADDomain — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADDomain for documentation or review.

Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADDomain — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADDomain for documentation or review.

Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDomain — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADDomain for documentation or review.

Get-ADDomain | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADForest — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADForest for documentation or review.

Get-ADForest | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADForest — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADForest for documentation or review.

Get-ADForest | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADForest — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADForest for documentation or review.

Measure-Command { Get-ADForest | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADForest — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADForest for documentation or review.

try { Get-ADForest | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADForest — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADForest for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADForest | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADForest — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADForest for documentation or review.

Get-ADForest | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADForest — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADForest for documentation or review.

Get-ADForest | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADForest — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADForest for documentation or review.

Get-ADForest | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDomainController — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADDomainController for documentation or review.

Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADDomainController — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADDomainController for documentation or review.

Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDomainController — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADDomainController for documentation or review.

Measure-Command { Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADDomainController — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADDomainController for documentation or review.

try { Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDomainController — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADDomainController for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADDomainController — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADDomainController for documentation or review.

Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADDomainController — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADDomainController for documentation or review.

Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDomainController — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADDomainController for documentation or review.

Get-ADDomainController -Filter * | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADReplicationFailure — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADReplicationFailure for documentation or review.

Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADReplicationFailure — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADReplicationFailure for documentation or review.

Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADReplicationFailure — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADReplicationFailure for documentation or review.

Measure-Command { Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADReplicationFailure — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADReplicationFailure for documentation or review.

try { Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADReplicationFailure — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADReplicationFailure for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADReplicationFailure — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADReplicationFailure for documentation or review.

Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADReplicationFailure — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADReplicationFailure for documentation or review.

Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADReplicationFailure — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADReplicationFailure for documentation or review.

Get-ADReplicationFailure -Target * -Scope Forest | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

Measure-Command { Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

try { Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ADDefaultDomainPasswordPolicy for documentation or review.

Get-ADDefaultDomainPasswordPolicy | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ADAccountPassword — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Set-ADAccountPassword for documentation or review.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Set-ADAccountPassword — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Set-ADAccountPassword for documentation or review.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ADAccountPassword — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Set-ADAccountPassword for documentation or review.

Measure-Command { Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Set-ADAccountPassword — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Set-ADAccountPassword for documentation or review.

try { Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ADAccountPassword — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Set-ADAccountPassword for documentation or review.

Start-Transcript -Path .\command-session.log; Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Set-ADAccountPassword — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Set-ADAccountPassword for documentation or review.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Set-ADAccountPassword — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Set-ADAccountPassword for documentation or review.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ADAccountPassword — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Set-ADAccountPassword for documentation or review.

Set-ADAccountPassword jsmith -Reset -NewPassword (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADUser Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADUser.

Get-Help Get-ADUser -Full | Format-List *
Open →
PowerShell
Get-ADUser Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADUser.

Get-Help Get-ADUser -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADUser Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADUser.

Measure-Command { Get-Help Get-ADUser -Full }
Open →
PowerShell
Get-ADUser Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADUser.

try { Get-Help Get-ADUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADUser Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADUser.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADUser -Full; Stop-Transcript
Open →
PowerShell
Get-ADUser Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADUser.

Get-Help Get-ADUser -Full | Select-Object *
Open →
PowerShell
Get-ADUser Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADUser.

Get-Help Get-ADUser -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADUser Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADUser.

Get-Help Get-ADUser -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-ADUser Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for New-ADUser.

Get-Help New-ADUser -Full | Format-List *
Open →
PowerShell
New-ADUser Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for New-ADUser.

Get-Help New-ADUser -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-ADUser Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for New-ADUser.

Measure-Command { Get-Help New-ADUser -Full }
Open →
PowerShell
New-ADUser Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for New-ADUser.

try { Get-Help New-ADUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-ADUser Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for New-ADUser.

Start-Transcript -Path .\command-session.log; Get-Help New-ADUser -Full; Stop-Transcript
Open →
PowerShell
New-ADUser Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for New-ADUser.

Get-Help New-ADUser -Full | Select-Object *
Open →
PowerShell
New-ADUser Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for New-ADUser.

Get-Help New-ADUser -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
New-ADUser Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for New-ADUser.

Get-Help New-ADUser -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ADUser Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Set-ADUser.

Get-Help Set-ADUser -Full | Format-List *
Open →
PowerShell
Set-ADUser Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Set-ADUser.

Get-Help Set-ADUser -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ADUser Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Set-ADUser.

Measure-Command { Get-Help Set-ADUser -Full }
Open →
PowerShell
Set-ADUser Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Set-ADUser.

try { Get-Help Set-ADUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ADUser Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Set-ADUser.

Start-Transcript -Path .\command-session.log; Get-Help Set-ADUser -Full; Stop-Transcript
Open →
PowerShell
Set-ADUser Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Set-ADUser.

Get-Help Set-ADUser -Full | Select-Object *
Open →
PowerShell
Set-ADUser Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Set-ADUser.

Get-Help Set-ADUser -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ADUser Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Set-ADUser.

Get-Help Set-ADUser -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Disable-ADAccount Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Disable-ADAccount.

Get-Help Disable-ADAccount -Full | Format-List *
Open →
PowerShell
Disable-ADAccount Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Disable-ADAccount.

Get-Help Disable-ADAccount -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Disable-ADAccount Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Disable-ADAccount.

Measure-Command { Get-Help Disable-ADAccount -Full }
Open →
PowerShell
Disable-ADAccount Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Disable-ADAccount.

try { Get-Help Disable-ADAccount -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Disable-ADAccount Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Disable-ADAccount.

Start-Transcript -Path .\command-session.log; Get-Help Disable-ADAccount -Full; Stop-Transcript
Open →
PowerShell
Disable-ADAccount Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Disable-ADAccount.

Get-Help Disable-ADAccount -Full | Select-Object *
Open →
PowerShell
Disable-ADAccount Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Disable-ADAccount.

Get-Help Disable-ADAccount -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Disable-ADAccount Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Disable-ADAccount.

Get-Help Disable-ADAccount -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Enable-ADAccount Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Enable-ADAccount.

Get-Help Enable-ADAccount -Full | Format-List *
Open →
PowerShell
Enable-ADAccount Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Enable-ADAccount.

Get-Help Enable-ADAccount -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Enable-ADAccount Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Enable-ADAccount.

Measure-Command { Get-Help Enable-ADAccount -Full }
Open →
PowerShell
Enable-ADAccount Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Enable-ADAccount.

try { Get-Help Enable-ADAccount -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Enable-ADAccount Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Enable-ADAccount.

Start-Transcript -Path .\command-session.log; Get-Help Enable-ADAccount -Full; Stop-Transcript
Open →
PowerShell
Enable-ADAccount Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Enable-ADAccount.

Get-Help Enable-ADAccount -Full | Select-Object *
Open →
PowerShell
Enable-ADAccount Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Enable-ADAccount.

Get-Help Enable-ADAccount -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Enable-ADAccount Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Enable-ADAccount.

Get-Help Enable-ADAccount -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Unlock-ADAccount Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Unlock-ADAccount.

Get-Help Unlock-ADAccount -Full | Format-List *
Open →
PowerShell
Unlock-ADAccount Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Unlock-ADAccount.

Get-Help Unlock-ADAccount -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Unlock-ADAccount Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Unlock-ADAccount.

Measure-Command { Get-Help Unlock-ADAccount -Full }
Open →
PowerShell
Unlock-ADAccount Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Unlock-ADAccount.

try { Get-Help Unlock-ADAccount -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Unlock-ADAccount Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Unlock-ADAccount.

Start-Transcript -Path .\command-session.log; Get-Help Unlock-ADAccount -Full; Stop-Transcript
Open →
PowerShell
Unlock-ADAccount Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Unlock-ADAccount.

Get-Help Unlock-ADAccount -Full | Select-Object *
Open →
PowerShell
Unlock-ADAccount Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Unlock-ADAccount.

Get-Help Unlock-ADAccount -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Unlock-ADAccount Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Unlock-ADAccount.

Get-Help Unlock-ADAccount -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Search-ADAccount Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Search-ADAccount.

Get-Help Search-ADAccount -Full | Format-List *
Open →
PowerShell
Search-ADAccount Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Search-ADAccount.

Get-Help Search-ADAccount -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Search-ADAccount Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Search-ADAccount.

Measure-Command { Get-Help Search-ADAccount -Full }
Open →
PowerShell
Search-ADAccount Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Search-ADAccount.

try { Get-Help Search-ADAccount -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Search-ADAccount Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Search-ADAccount.

Start-Transcript -Path .\command-session.log; Get-Help Search-ADAccount -Full; Stop-Transcript
Open →
PowerShell
Search-ADAccount Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Search-ADAccount.

Get-Help Search-ADAccount -Full | Select-Object *
Open →
PowerShell
Search-ADAccount Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Search-ADAccount.

Get-Help Search-ADAccount -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Search-ADAccount Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Search-ADAccount.

Get-Help Search-ADAccount -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADGroup Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADGroup.

Get-Help Get-ADGroup -Full | Format-List *
Open →
PowerShell
Get-ADGroup Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADGroup.

Get-Help Get-ADGroup -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADGroup Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADGroup.

Measure-Command { Get-Help Get-ADGroup -Full }
Open →
PowerShell
Get-ADGroup Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADGroup.

try { Get-Help Get-ADGroup -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADGroup Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADGroup.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADGroup -Full; Stop-Transcript
Open →
PowerShell
Get-ADGroup Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADGroup.

Get-Help Get-ADGroup -Full | Select-Object *
Open →
PowerShell
Get-ADGroup Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADGroup.

Get-Help Get-ADGroup -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADGroup Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADGroup.

Get-Help Get-ADGroup -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADGroupMember Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADGroupMember.

Get-Help Get-ADGroupMember -Full | Format-List *
Open →
PowerShell
Get-ADGroupMember Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADGroupMember.

Get-Help Get-ADGroupMember -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADGroupMember Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADGroupMember.

Measure-Command { Get-Help Get-ADGroupMember -Full }
Open →
PowerShell
Get-ADGroupMember Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADGroupMember.

try { Get-Help Get-ADGroupMember -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADGroupMember Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADGroupMember.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADGroupMember -Full; Stop-Transcript
Open →
PowerShell
Get-ADGroupMember Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADGroupMember.

Get-Help Get-ADGroupMember -Full | Select-Object *
Open →
PowerShell
Get-ADGroupMember Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADGroupMember.

Get-Help Get-ADGroupMember -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADGroupMember Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADGroupMember.

Get-Help Get-ADGroupMember -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-ADGroupMember Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Add-ADGroupMember.

Get-Help Add-ADGroupMember -Full | Format-List *
Open →
PowerShell
Add-ADGroupMember Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Add-ADGroupMember.

Get-Help Add-ADGroupMember -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-ADGroupMember Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Add-ADGroupMember.

Measure-Command { Get-Help Add-ADGroupMember -Full }
Open →
PowerShell
Add-ADGroupMember Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Add-ADGroupMember.

try { Get-Help Add-ADGroupMember -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-ADGroupMember Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Add-ADGroupMember.

Start-Transcript -Path .\command-session.log; Get-Help Add-ADGroupMember -Full; Stop-Transcript
Open →
PowerShell
Add-ADGroupMember Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Add-ADGroupMember.

Get-Help Add-ADGroupMember -Full | Select-Object *
Open →
PowerShell
Add-ADGroupMember Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Add-ADGroupMember.

Get-Help Add-ADGroupMember -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-ADGroupMember Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Add-ADGroupMember.

Get-Help Add-ADGroupMember -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Remove-ADGroupMember Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

Get-Help Remove-ADGroupMember -Full | Format-List *
Open →
PowerShell
Remove-ADGroupMember Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

Get-Help Remove-ADGroupMember -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Remove-ADGroupMember Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

Measure-Command { Get-Help Remove-ADGroupMember -Full }
Open →
PowerShell
Remove-ADGroupMember Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

try { Get-Help Remove-ADGroupMember -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Remove-ADGroupMember Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

Start-Transcript -Path .\command-session.log; Get-Help Remove-ADGroupMember -Full; Stop-Transcript
Open →
PowerShell
Remove-ADGroupMember Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

Get-Help Remove-ADGroupMember -Full | Select-Object *
Open →
PowerShell
Remove-ADGroupMember Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

Get-Help Remove-ADGroupMember -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Remove-ADGroupMember Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Remove-ADGroupMember.

Get-Help Remove-ADGroupMember -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADComputer Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADComputer.

Get-Help Get-ADComputer -Full | Format-List *
Open →
PowerShell
Get-ADComputer Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADComputer.

Get-Help Get-ADComputer -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADComputer Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADComputer.

Measure-Command { Get-Help Get-ADComputer -Full }
Open →
PowerShell
Get-ADComputer Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADComputer.

try { Get-Help Get-ADComputer -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADComputer Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADComputer.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADComputer -Full; Stop-Transcript
Open →
PowerShell
Get-ADComputer Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADComputer.

Get-Help Get-ADComputer -Full | Select-Object *
Open →
PowerShell
Get-ADComputer Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADComputer.

Get-Help Get-ADComputer -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADComputer Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADComputer.

Get-Help Get-ADComputer -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

Get-Help Get-ADOrganizationalUnit -Full | Format-List *
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

Get-Help Get-ADOrganizationalUnit -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

Measure-Command { Get-Help Get-ADOrganizationalUnit -Full }
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

try { Get-Help Get-ADOrganizationalUnit -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADOrganizationalUnit -Full; Stop-Transcript
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

Get-Help Get-ADOrganizationalUnit -Full | Select-Object *
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

Get-Help Get-ADOrganizationalUnit -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADOrganizationalUnit Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADOrganizationalUnit.

Get-Help Get-ADOrganizationalUnit -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Move-ADObject Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Move-ADObject.

Get-Help Move-ADObject -Full | Format-List *
Open →
PowerShell
Move-ADObject Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Move-ADObject.

Get-Help Move-ADObject -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Move-ADObject Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Move-ADObject.

Measure-Command { Get-Help Move-ADObject -Full }
Open →
PowerShell
Move-ADObject Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Move-ADObject.

try { Get-Help Move-ADObject -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Move-ADObject Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Move-ADObject.

Start-Transcript -Path .\command-session.log; Get-Help Move-ADObject -Full; Stop-Transcript
Open →
PowerShell
Move-ADObject Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Move-ADObject.

Get-Help Move-ADObject -Full | Select-Object *
Open →
PowerShell
Move-ADObject Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Move-ADObject.

Get-Help Move-ADObject -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Move-ADObject Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Move-ADObject.

Get-Help Move-ADObject -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDomain Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADDomain.

Get-Help Get-ADDomain -Full | Format-List *
Open →
PowerShell
Get-ADDomain Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADDomain.

Get-Help Get-ADDomain -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDomain Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADDomain.

Measure-Command { Get-Help Get-ADDomain -Full }
Open →
PowerShell
Get-ADDomain Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADDomain.

try { Get-Help Get-ADDomain -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDomain Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADDomain.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADDomain -Full; Stop-Transcript
Open →
PowerShell
Get-ADDomain Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADDomain.

Get-Help Get-ADDomain -Full | Select-Object *
Open →
PowerShell
Get-ADDomain Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADDomain.

Get-Help Get-ADDomain -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDomain Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADDomain.

Get-Help Get-ADDomain -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADForest Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADForest.

Get-Help Get-ADForest -Full | Format-List *
Open →
PowerShell
Get-ADForest Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADForest.

Get-Help Get-ADForest -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADForest Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADForest.

Measure-Command { Get-Help Get-ADForest -Full }
Open →
PowerShell
Get-ADForest Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADForest.

try { Get-Help Get-ADForest -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADForest Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADForest.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADForest -Full; Stop-Transcript
Open →
PowerShell
Get-ADForest Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADForest.

Get-Help Get-ADForest -Full | Select-Object *
Open →
PowerShell
Get-ADForest Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADForest.

Get-Help Get-ADForest -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADForest Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADForest.

Get-Help Get-ADForest -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDomainController Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADDomainController.

Get-Help Get-ADDomainController -Full | Format-List *
Open →
PowerShell
Get-ADDomainController Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADDomainController.

Get-Help Get-ADDomainController -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDomainController Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADDomainController.

Measure-Command { Get-Help Get-ADDomainController -Full }
Open →
PowerShell
Get-ADDomainController Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADDomainController.

try { Get-Help Get-ADDomainController -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDomainController Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADDomainController.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADDomainController -Full; Stop-Transcript
Open →
PowerShell
Get-ADDomainController Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADDomainController.

Get-Help Get-ADDomainController -Full | Select-Object *
Open →
PowerShell
Get-ADDomainController Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADDomainController.

Get-Help Get-ADDomainController -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDomainController Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADDomainController.

Get-Help Get-ADDomainController -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

Get-Help Get-ADReplicationFailure -Full | Format-List *
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

Get-Help Get-ADReplicationFailure -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

Measure-Command { Get-Help Get-ADReplicationFailure -Full }
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

try { Get-Help Get-ADReplicationFailure -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADReplicationFailure -Full; Stop-Transcript
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

Get-Help Get-ADReplicationFailure -Full | Select-Object *
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

Get-Help Get-ADReplicationFailure -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADReplicationFailure Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADReplicationFailure.

Get-Help Get-ADReplicationFailure -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

Get-Help Get-ADDefaultDomainPasswordPolicy -Full | Format-List *
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

Get-Help Get-ADDefaultDomainPasswordPolicy -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

Measure-Command { Get-Help Get-ADDefaultDomainPasswordPolicy -Full }
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

try { Get-Help Get-ADDefaultDomainPasswordPolicy -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

Start-Transcript -Path .\command-session.log; Get-Help Get-ADDefaultDomainPasswordPolicy -Full; Stop-Transcript
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

Get-Help Get-ADDefaultDomainPasswordPolicy -Full | Select-Object *
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

Get-Help Get-ADDefaultDomainPasswordPolicy -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ADDefaultDomainPasswordPolicy Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ADDefaultDomainPasswordPolicy.

Get-Help Get-ADDefaultDomainPasswordPolicy -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ADAccountPassword Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

Get-Help Set-ADAccountPassword -Full | Format-List *
Open →
PowerShell
Set-ADAccountPassword Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

Get-Help Set-ADAccountPassword -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ADAccountPassword Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

Measure-Command { Get-Help Set-ADAccountPassword -Full }
Open →
PowerShell
Set-ADAccountPassword Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

try { Get-Help Set-ADAccountPassword -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ADAccountPassword Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

Start-Transcript -Path .\command-session.log; Get-Help Set-ADAccountPassword -Full; Stop-Transcript
Open →
PowerShell
Set-ADAccountPassword Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

Get-Help Set-ADAccountPassword -Full | Select-Object *
Open →
PowerShell
Set-ADAccountPassword Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

Get-Help Set-ADAccountPassword -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ADAccountPassword Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Set-ADAccountPassword.

Get-Help Set-ADAccountPassword -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
Amazon Web Services

Amazon Web Services

Back to top ↑
AWS CLI
aws configure

Configure AWS CLI credentials and default settings.

aws configure
Open →
AWS CLI
aws sts get-caller-identity

Display the current AWS identity.

aws sts get-caller-identity
Open →
AWS CLI
aws configure list

Display active AWS CLI configuration values.

aws configure list
Open →
AWS CLI
aws ec2 describe-instances

List EC2 instances.

aws ec2 describe-instances --output table
Open →
AWS CLI
aws ec2 start-instances

Start an EC2 instance.

aws ec2 start-instances --instance-ids i-0123456789abcdef0
Open →
AWS CLI
aws ec2 stop-instances

Stop an EC2 instance.

aws ec2 stop-instances --instance-ids i-0123456789abcdef0
Open →
AWS CLI
aws ec2 reboot-instances

Reboot an EC2 instance.

aws ec2 reboot-instances --instance-ids i-0123456789abcdef0
Open →
AWS CLI
aws ec2 describe-security-groups

List EC2 security groups.

aws ec2 describe-security-groups --output table
Open →
AWS CLI
aws ec2 describe-vpcs

List VPCs.

aws ec2 describe-vpcs --output table
Open →
AWS CLI
aws ec2 describe-subnets

List VPC subnets.

aws ec2 describe-subnets --output table
Open →
AWS CLI
aws s3 ls

List S3 buckets.

aws s3 ls
Open →
AWS CLI
aws s3 cp

Copy a file to S3.

aws s3 cp backup.zip s3://my-bucket/backups/
Open →
AWS CLI
aws s3 sync

Synchronize a directory with S3.

aws s3 sync /data s3://my-bucket/data --delete
Open →
AWS CLI
aws iam list-users

List IAM users.

aws iam list-users --output table
Open →
AWS CLI
aws iam list-roles

List IAM roles.

aws iam list-roles --output table
Open →
AWS CLI
aws lambda list-functions

List Lambda functions.

aws lambda list-functions --output table
Open →
AWS CLI
aws rds describe-db-instances

List RDS database instances.

aws rds describe-db-instances --output table
Open →
AWS CLI
aws cloudwatch describe-alarms

List CloudWatch alarms.

aws cloudwatch describe-alarms --output table
Open →
AWS CLI
aws logs describe-log-groups

List CloudWatch Logs groups.

aws logs describe-log-groups --output table
Open →
AWS CLI
aws route53 list-hosted-zones

List Route 53 hosted zones.

aws route53 list-hosted-zones --output table
Open →
AWS CLI
aws organizations list-accounts

List accounts in AWS Organizations.

aws organizations list-accounts --output table
Open →
AWS CLI
aws eks list-clusters

List Amazon EKS clusters.

aws eks list-clusters
Open →
AWS CLI
aws ecs list-clusters

List Amazon ECS clusters.

aws ecs list-clusters
Open →
AWS CLI
aws secretsmanager list-secrets

List AWS Secrets Manager secrets metadata.

aws secretsmanager list-secrets --output table
Open →
AWS CLI
aws configure — Basic Usage

Use aws configure for a standard administrative task.

aws configure
Open →
AWS CLI
aws sts get-caller-identity — Basic Usage

Use aws sts get-caller-identity for a standard administrative task.

aws sts get-caller-identity
Open →
AWS CLI
aws configure list — Basic Usage

Use aws configure list for a standard administrative task.

aws configure list
Open →
AWS CLI
aws ec2 describe-instances — Basic Usage

Use aws ec2 describe-instances for a standard administrative task.

aws ec2 describe-instances --output table
Open →
AWS CLI
aws ec2 start-instances — Basic Usage

Use aws ec2 start-instances for a standard administrative task.

aws ec2 start-instances --instance-ids i-0123456789abcdef0
Open →
AWS CLI
aws ec2 stop-instances — Basic Usage

Use aws ec2 stop-instances for a standard administrative task.

aws ec2 stop-instances --instance-ids i-0123456789abcdef0
Open →
AWS CLI
aws ec2 reboot-instances — Basic Usage

Use aws ec2 reboot-instances for a standard administrative task.

aws ec2 reboot-instances --instance-ids i-0123456789abcdef0
Open →
AWS CLI
aws ec2 describe-security-groups — Basic Usage

Use aws ec2 describe-security-groups for a standard administrative task.

aws ec2 describe-security-groups --output table
Open →
AWS CLI
aws ec2 describe-vpcs — Basic Usage

Use aws ec2 describe-vpcs for a standard administrative task.

aws ec2 describe-vpcs --output table
Open →
AWS CLI
aws ec2 describe-subnets — Basic Usage

Use aws ec2 describe-subnets for a standard administrative task.

aws ec2 describe-subnets --output table
Open →
AWS CLI
aws s3 ls — Basic Usage

Use aws s3 ls for a standard administrative task.

aws s3 ls
Open →
AWS CLI
aws s3 cp — Basic Usage

Use aws s3 cp for a standard administrative task.

aws s3 cp backup.zip s3://my-bucket/backups/
Open →
AWS CLI
aws s3 sync — Basic Usage

Use aws s3 sync for a standard administrative task.

aws s3 sync /data s3://my-bucket/data --delete
Open →
AWS CLI
aws iam list-users — Basic Usage

Use aws iam list-users for a standard administrative task.

aws iam list-users --output table
Open →
AWS CLI
aws iam list-roles — Basic Usage

Use aws iam list-roles for a standard administrative task.

aws iam list-roles --output table
Open →
AWS CLI
aws lambda list-functions — Basic Usage

Use aws lambda list-functions for a standard administrative task.

aws lambda list-functions --output table
Open →
AWS CLI
aws rds describe-db-instances — Basic Usage

Use aws rds describe-db-instances for a standard administrative task.

aws rds describe-db-instances --output table
Open →
AWS CLI
aws cloudwatch describe-alarms — Basic Usage

Use aws cloudwatch describe-alarms for a standard administrative task.

aws cloudwatch describe-alarms --output table
Open →
AWS CLI
aws logs describe-log-groups — Basic Usage

Use aws logs describe-log-groups for a standard administrative task.

aws logs describe-log-groups --output table
Open →
AWS CLI
aws route53 list-hosted-zones — Basic Usage

Use aws route53 list-hosted-zones for a standard administrative task.

aws route53 list-hosted-zones --output table
Open →
AWS CLI
aws organizations list-accounts — Basic Usage

Use aws organizations list-accounts for a standard administrative task.

aws organizations list-accounts --output table
Open →
AWS CLI
aws eks list-clusters — Basic Usage

Use aws eks list-clusters for a standard administrative task.

aws eks list-clusters
Open →
AWS CLI
aws ecs list-clusters — Basic Usage

Use aws ecs list-clusters for a standard administrative task.

aws ecs list-clusters
Open →
AWS CLI
aws secretsmanager list-secrets — Basic Usage

Use aws secretsmanager list-secrets for a standard administrative task.

aws secretsmanager list-secrets --output table
Open →
AWS CLI
aws configure Help and Syntax

Open the AWS CLI reference and option details related to aws configure.

aws configure help
Open →
AWS CLI
aws sts get-caller-identity Help and Syntax

Open the AWS CLI reference and option details related to aws sts get-caller-identity.

aws sts get-caller-identity help
Open →
AWS CLI
aws configure list Help and Syntax

Open the AWS CLI reference and option details related to aws configure list.

aws configure list help
Open →
AWS CLI
aws ec2 describe-instances Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 describe-instances.

aws ec2 describe-instances help
Open →
AWS CLI
aws ec2 start-instances Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 start-instances.

aws ec2 start-instances help
Open →
AWS CLI
aws ec2 stop-instances Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 stop-instances.

aws ec2 stop-instances help
Open →
AWS CLI
aws ec2 reboot-instances Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 reboot-instances.

aws ec2 reboot-instances help
Open →
AWS CLI
aws ec2 describe-security-groups Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 describe-security-groups.

aws ec2 describe-security-groups help
Open →
AWS CLI
aws ec2 describe-vpcs Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 describe-vpcs.

aws ec2 describe-vpcs help
Open →
AWS CLI
aws ec2 describe-subnets Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 describe-subnets.

aws ec2 describe-subnets help
Open →
AWS CLI
aws s3 ls Help and Syntax

Open the AWS CLI reference and option details related to aws s3 ls.

aws s3 ls help
Open →
AWS CLI
aws s3 cp Help and Syntax

Open the AWS CLI reference and option details related to aws s3 cp.

aws s3 cp help
Open →
AWS CLI
aws s3 sync Help and Syntax

Open the AWS CLI reference and option details related to aws s3 sync.

aws s3 sync help
Open →
AWS CLI
aws iam list-users Help and Syntax

Open the AWS CLI reference and option details related to aws iam list-users.

aws iam list-users help
Open →
AWS CLI
aws iam list-roles Help and Syntax

Open the AWS CLI reference and option details related to aws iam list-roles.

aws iam list-roles help
Open →
AWS CLI
aws lambda list-functions Help and Syntax

Open the AWS CLI reference and option details related to aws lambda list-functions.

aws lambda list-functions help
Open →
AWS CLI
aws rds describe-db-instances Help and Syntax

Open the AWS CLI reference and option details related to aws rds describe-db-instances.

aws rds describe-db-instances help
Open →
AWS CLI
aws cloudwatch describe-alarms Help and Syntax

Open the AWS CLI reference and option details related to aws cloudwatch describe-alarms.

aws cloudwatch describe-alarms help
Open →
AWS CLI
aws logs describe-log-groups Help and Syntax

Open the AWS CLI reference and option details related to aws logs describe-log-groups.

aws logs describe-log-groups help
Open →
AWS CLI
aws route53 list-hosted-zones Help and Syntax

Open the AWS CLI reference and option details related to aws route53 list-hosted-zones.

aws route53 list-hosted-zones help
Open →
AWS CLI
aws organizations list-accounts Help and Syntax

Open the AWS CLI reference and option details related to aws organizations list-accounts.

aws organizations list-accounts help
Open →
AWS CLI
aws eks list-clusters Help and Syntax

Open the AWS CLI reference and option details related to aws eks list-clusters.

aws eks list-clusters help
Open →
AWS CLI
aws ecs list-clusters Help and Syntax

Open the AWS CLI reference and option details related to aws ecs list-clusters.

aws ecs list-clusters help
Open →
AWS CLI
aws secretsmanager list-secrets Help and Syntax

Open the AWS CLI reference and option details related to aws secretsmanager list-secrets.

aws secretsmanager list-secrets help
Open →
AWS CLI
aws configure — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws configure — Basic Usage.

aws configure help
Open →
AWS CLI
aws sts get-caller-identity — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws sts get-caller-identity — Basic Usage.

aws sts get-caller-identity help
Open →
AWS CLI
aws configure list — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws configure list — Basic Usage.

aws configure list help
Open →
AWS CLI
aws ec2 describe-instances — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 describe-instances — Basic Usage.

aws ec2 describe-instances help
Open →
AWS CLI
aws ec2 start-instances — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 start-instances — Basic Usage.

aws ec2 start-instances help
Open →
AWS CLI
aws ec2 stop-instances — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 stop-instances — Basic Usage.

aws ec2 stop-instances help
Open →
AWS CLI
aws ec2 reboot-instances — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 reboot-instances — Basic Usage.

aws ec2 reboot-instances help
Open →
AWS CLI
aws ec2 describe-security-groups — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 describe-security-groups — Basic Usage.

aws ec2 describe-security-groups help
Open →
AWS CLI
aws ec2 describe-vpcs — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 describe-vpcs — Basic Usage.

aws ec2 describe-vpcs help
Open →
AWS CLI
aws ec2 describe-subnets — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws ec2 describe-subnets — Basic Usage.

aws ec2 describe-subnets help
Open →
AWS CLI
aws s3 ls — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws s3 ls — Basic Usage.

aws s3 ls help
Open →
AWS CLI
aws s3 cp — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws s3 cp — Basic Usage.

aws s3 cp help
Open →
AWS CLI
aws s3 sync — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws s3 sync — Basic Usage.

aws s3 sync help
Open →
AWS CLI
aws iam list-users — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws iam list-users — Basic Usage.

aws iam list-users help
Open →
AWS CLI
aws iam list-roles — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws iam list-roles — Basic Usage.

aws iam list-roles help
Open →
AWS CLI
aws lambda list-functions — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws lambda list-functions — Basic Usage.

aws lambda list-functions help
Open →
AWS CLI
aws rds describe-db-instances — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws rds describe-db-instances — Basic Usage.

aws rds describe-db-instances help
Open →
AWS CLI
aws cloudwatch describe-alarms — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws cloudwatch describe-alarms — Basic Usage.

aws cloudwatch describe-alarms help
Open →
AWS CLI
aws logs describe-log-groups — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws logs describe-log-groups — Basic Usage.

aws logs describe-log-groups help
Open →
AWS CLI
aws route53 list-hosted-zones — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws route53 list-hosted-zones — Basic Usage.

aws route53 list-hosted-zones help
Open →
AWS CLI
aws organizations list-accounts — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws organizations list-accounts — Basic Usage.

aws organizations list-accounts help
Open →
AWS CLI
aws eks list-clusters — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws eks list-clusters — Basic Usage.

aws eks list-clusters help
Open →
AWS CLI
aws ecs list-clusters — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws ecs list-clusters — Basic Usage.

aws ecs list-clusters help
Open →
AWS CLI
aws secretsmanager list-secrets — Basic Usage Help and Syntax

Open the AWS CLI reference and option details related to aws secretsmanager list-secrets — Basic Usage.

aws secretsmanager list-secrets help
Open →
AWS CLI
aws configure — JSON output

Return AWS CLI output as JSON. Base task: Configure AWS CLI credentials and default settings.

aws configure --output json
Open →
AWS CLI
aws configure — Table output

Display AWS CLI output as a table. Base task: Configure AWS CLI credentials and default settings.

aws configure --output table
Open →
AWS CLI
aws configure — Text output

Return AWS CLI output as plain text. Base task: Configure AWS CLI credentials and default settings.

aws configure --output text
Open →
AWS CLI
aws configure — Save JSON output

Save AWS CLI output to JSON. Base task: Configure AWS CLI credentials and default settings.

aws configure --output json > aws-command-results.json
Open →
AWS CLI
aws configure — Disable pager

Run the AWS CLI command without opening the result pager. Base task: Configure AWS CLI credentials and default settings.

aws configure --no-cli-pager
Open →
AWS CLI
aws sts get-caller-identity — JSON output

Return AWS CLI output as JSON. Base task: Display the current AWS identity.

aws sts get-caller-identity --output json
Open →
AWS CLI
aws sts get-caller-identity — Table output

Display AWS CLI output as a table. Base task: Display the current AWS identity.

aws sts get-caller-identity --output table
Open →
AWS CLI
aws sts get-caller-identity — Text output

Return AWS CLI output as plain text. Base task: Display the current AWS identity.

aws sts get-caller-identity --output text
Open →
AWS CLI
aws sts get-caller-identity — Save JSON output

Save AWS CLI output to JSON. Base task: Display the current AWS identity.

aws sts get-caller-identity --output json > aws-command-results.json
Open →
AWS CLI
aws sts get-caller-identity — Disable pager

Run the AWS CLI command without opening the result pager. Base task: Display the current AWS identity.

aws sts get-caller-identity --no-cli-pager
Open →
AWS CLI
aws configure list — JSON output

Return AWS CLI output as JSON. Base task: Display active AWS CLI configuration values.

aws configure list --output json
Open →
AWS CLI
aws configure list — Table output

Display AWS CLI output as a table. Base task: Display active AWS CLI configuration values.

aws configure list --output table
Open →
AWS CLI
aws configure list — Text output

Return AWS CLI output as plain text. Base task: Display active AWS CLI configuration values.

aws configure list --output text
Open →
AWS CLI
aws configure list — Save JSON output

Save AWS CLI output to JSON. Base task: Display active AWS CLI configuration values.

aws configure list --output json > aws-command-results.json
Open →
AWS CLI
aws configure list — Disable pager

Run the AWS CLI command without opening the result pager. Base task: Display active AWS CLI configuration values.

aws configure list --no-cli-pager
Open →
AWS CLI
aws ec2 describe-instances — JSON output

Return AWS CLI output as JSON. Base task: List EC2 instances.

aws ec2 describe-instances --output table --output json
Open →
AWS CLI
aws ec2 describe-instances — Table output

Display AWS CLI output as a table. Base task: List EC2 instances.

aws ec2 describe-instances --output table --output table
Open →
AWS CLI
aws ec2 describe-instances — Text output

Return AWS CLI output as plain text. Base task: List EC2 instances.

aws ec2 describe-instances --output table --output text
Open →
AWS CLI
aws ec2 describe-instances — Save JSON output

Save AWS CLI output to JSON. Base task: List EC2 instances.

aws ec2 describe-instances --output table --output json > aws-command-results.json
Open →
AWS CLI
aws ec2 describe-instances — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List EC2 instances.

aws ec2 describe-instances --output table --no-cli-pager
Open →
AWS CLI
aws ec2 start-instances — JSON output

Return AWS CLI output as JSON. Base task: Start an EC2 instance.

aws ec2 start-instances --instance-ids i-0123456789abcdef0 --output json
Open →
AWS CLI
aws ec2 start-instances — Table output

Display AWS CLI output as a table. Base task: Start an EC2 instance.

aws ec2 start-instances --instance-ids i-0123456789abcdef0 --output table
Open →
AWS CLI
aws ec2 start-instances — Text output

Return AWS CLI output as plain text. Base task: Start an EC2 instance.

aws ec2 start-instances --instance-ids i-0123456789abcdef0 --output text
Open →
AWS CLI
aws ec2 start-instances — Save JSON output

Save AWS CLI output to JSON. Base task: Start an EC2 instance.

aws ec2 start-instances --instance-ids i-0123456789abcdef0 --output json > aws-command-results.json
Open →
AWS CLI
aws ec2 start-instances — Disable pager

Run the AWS CLI command without opening the result pager. Base task: Start an EC2 instance.

aws ec2 start-instances --instance-ids i-0123456789abcdef0 --no-cli-pager
Open →
AWS CLI
aws ec2 stop-instances — JSON output

Return AWS CLI output as JSON. Base task: Stop an EC2 instance.

aws ec2 stop-instances --instance-ids i-0123456789abcdef0 --output json
Open →
AWS CLI
aws ec2 stop-instances — Table output

Display AWS CLI output as a table. Base task: Stop an EC2 instance.

aws ec2 stop-instances --instance-ids i-0123456789abcdef0 --output table
Open →
AWS CLI
aws ec2 stop-instances — Text output

Return AWS CLI output as plain text. Base task: Stop an EC2 instance.

aws ec2 stop-instances --instance-ids i-0123456789abcdef0 --output text
Open →
AWS CLI
aws ec2 stop-instances — Save JSON output

Save AWS CLI output to JSON. Base task: Stop an EC2 instance.

aws ec2 stop-instances --instance-ids i-0123456789abcdef0 --output json > aws-command-results.json
Open →
AWS CLI
aws ec2 stop-instances — Disable pager

Run the AWS CLI command without opening the result pager. Base task: Stop an EC2 instance.

aws ec2 stop-instances --instance-ids i-0123456789abcdef0 --no-cli-pager
Open →
AWS CLI
aws ec2 reboot-instances — JSON output

Return AWS CLI output as JSON. Base task: Reboot an EC2 instance.

aws ec2 reboot-instances --instance-ids i-0123456789abcdef0 --output json
Open →
AWS CLI
aws ec2 reboot-instances — Table output

Display AWS CLI output as a table. Base task: Reboot an EC2 instance.

aws ec2 reboot-instances --instance-ids i-0123456789abcdef0 --output table
Open →
AWS CLI
aws ec2 reboot-instances — Text output

Return AWS CLI output as plain text. Base task: Reboot an EC2 instance.

aws ec2 reboot-instances --instance-ids i-0123456789abcdef0 --output text
Open →
AWS CLI
aws ec2 reboot-instances — Save JSON output

Save AWS CLI output to JSON. Base task: Reboot an EC2 instance.

aws ec2 reboot-instances --instance-ids i-0123456789abcdef0 --output json > aws-command-results.json
Open →
AWS CLI
aws ec2 reboot-instances — Disable pager

Run the AWS CLI command without opening the result pager. Base task: Reboot an EC2 instance.

aws ec2 reboot-instances --instance-ids i-0123456789abcdef0 --no-cli-pager
Open →
AWS CLI
aws ec2 describe-security-groups — JSON output

Return AWS CLI output as JSON. Base task: List EC2 security groups.

aws ec2 describe-security-groups --output table --output json
Open →
AWS CLI
aws ec2 describe-security-groups — Table output

Display AWS CLI output as a table. Base task: List EC2 security groups.

aws ec2 describe-security-groups --output table --output table
Open →
AWS CLI
aws ec2 describe-security-groups — Text output

Return AWS CLI output as plain text. Base task: List EC2 security groups.

aws ec2 describe-security-groups --output table --output text
Open →
AWS CLI
aws ec2 describe-security-groups — Save JSON output

Save AWS CLI output to JSON. Base task: List EC2 security groups.

aws ec2 describe-security-groups --output table --output json > aws-command-results.json
Open →
AWS CLI
aws ec2 describe-security-groups — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List EC2 security groups.

aws ec2 describe-security-groups --output table --no-cli-pager
Open →
AWS CLI
aws ec2 describe-vpcs — JSON output

Return AWS CLI output as JSON. Base task: List VPCs.

aws ec2 describe-vpcs --output table --output json
Open →
AWS CLI
aws ec2 describe-vpcs — Table output

Display AWS CLI output as a table. Base task: List VPCs.

aws ec2 describe-vpcs --output table --output table
Open →
AWS CLI
aws ec2 describe-vpcs — Text output

Return AWS CLI output as plain text. Base task: List VPCs.

aws ec2 describe-vpcs --output table --output text
Open →
AWS CLI
aws ec2 describe-vpcs — Save JSON output

Save AWS CLI output to JSON. Base task: List VPCs.

aws ec2 describe-vpcs --output table --output json > aws-command-results.json
Open →
AWS CLI
aws ec2 describe-vpcs — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List VPCs.

aws ec2 describe-vpcs --output table --no-cli-pager
Open →
AWS CLI
aws ec2 describe-subnets — JSON output

Return AWS CLI output as JSON. Base task: List VPC subnets.

aws ec2 describe-subnets --output table --output json
Open →
AWS CLI
aws ec2 describe-subnets — Table output

Display AWS CLI output as a table. Base task: List VPC subnets.

aws ec2 describe-subnets --output table --output table
Open →
AWS CLI
aws ec2 describe-subnets — Text output

Return AWS CLI output as plain text. Base task: List VPC subnets.

aws ec2 describe-subnets --output table --output text
Open →
AWS CLI
aws ec2 describe-subnets — Save JSON output

Save AWS CLI output to JSON. Base task: List VPC subnets.

aws ec2 describe-subnets --output table --output json > aws-command-results.json
Open →
AWS CLI
aws ec2 describe-subnets — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List VPC subnets.

aws ec2 describe-subnets --output table --no-cli-pager
Open →
AWS CLI
aws s3 ls — JSON output

Return AWS CLI output as JSON. Base task: List S3 buckets.

aws s3 ls --output json
Open →
AWS CLI
aws s3 ls — Table output

Display AWS CLI output as a table. Base task: List S3 buckets.

aws s3 ls --output table
Open →
AWS CLI
aws s3 ls — Text output

Return AWS CLI output as plain text. Base task: List S3 buckets.

aws s3 ls --output text
Open →
AWS CLI
aws s3 ls — Save JSON output

Save AWS CLI output to JSON. Base task: List S3 buckets.

aws s3 ls --output json > aws-command-results.json
Open →
AWS CLI
aws s3 ls — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List S3 buckets.

aws s3 ls --no-cli-pager
Open →
AWS CLI
aws s3 cp — JSON output

Return AWS CLI output as JSON. Base task: Copy a file to S3.

aws s3 cp backup.zip s3://my-bucket/backups/ --output json
Open →
AWS CLI
aws s3 cp — Table output

Display AWS CLI output as a table. Base task: Copy a file to S3.

aws s3 cp backup.zip s3://my-bucket/backups/ --output table
Open →
AWS CLI
aws s3 cp — Text output

Return AWS CLI output as plain text. Base task: Copy a file to S3.

aws s3 cp backup.zip s3://my-bucket/backups/ --output text
Open →
AWS CLI
aws s3 cp — Save JSON output

Save AWS CLI output to JSON. Base task: Copy a file to S3.

aws s3 cp backup.zip s3://my-bucket/backups/ --output json > aws-command-results.json
Open →
AWS CLI
aws s3 cp — Disable pager

Run the AWS CLI command without opening the result pager. Base task: Copy a file to S3.

aws s3 cp backup.zip s3://my-bucket/backups/ --no-cli-pager
Open →
AWS CLI
aws s3 sync — JSON output

Return AWS CLI output as JSON. Base task: Synchronize a directory with S3.

aws s3 sync /data s3://my-bucket/data --delete --output json
Open →
AWS CLI
aws s3 sync — Table output

Display AWS CLI output as a table. Base task: Synchronize a directory with S3.

aws s3 sync /data s3://my-bucket/data --delete --output table
Open →
AWS CLI
aws s3 sync — Text output

Return AWS CLI output as plain text. Base task: Synchronize a directory with S3.

aws s3 sync /data s3://my-bucket/data --delete --output text
Open →
AWS CLI
aws s3 sync — Save JSON output

Save AWS CLI output to JSON. Base task: Synchronize a directory with S3.

aws s3 sync /data s3://my-bucket/data --delete --output json > aws-command-results.json
Open →
AWS CLI
aws s3 sync — Disable pager

Run the AWS CLI command without opening the result pager. Base task: Synchronize a directory with S3.

aws s3 sync /data s3://my-bucket/data --delete --no-cli-pager
Open →
AWS CLI
aws iam list-users — JSON output

Return AWS CLI output as JSON. Base task: List IAM users.

aws iam list-users --output table --output json
Open →
AWS CLI
aws iam list-users — Table output

Display AWS CLI output as a table. Base task: List IAM users.

aws iam list-users --output table --output table
Open →
AWS CLI
aws iam list-users — Text output

Return AWS CLI output as plain text. Base task: List IAM users.

aws iam list-users --output table --output text
Open →
AWS CLI
aws iam list-users — Save JSON output

Save AWS CLI output to JSON. Base task: List IAM users.

aws iam list-users --output table --output json > aws-command-results.json
Open →
AWS CLI
aws iam list-users — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List IAM users.

aws iam list-users --output table --no-cli-pager
Open →
AWS CLI
aws iam list-roles — JSON output

Return AWS CLI output as JSON. Base task: List IAM roles.

aws iam list-roles --output table --output json
Open →
AWS CLI
aws iam list-roles — Table output

Display AWS CLI output as a table. Base task: List IAM roles.

aws iam list-roles --output table --output table
Open →
AWS CLI
aws iam list-roles — Text output

Return AWS CLI output as plain text. Base task: List IAM roles.

aws iam list-roles --output table --output text
Open →
AWS CLI
aws iam list-roles — Save JSON output

Save AWS CLI output to JSON. Base task: List IAM roles.

aws iam list-roles --output table --output json > aws-command-results.json
Open →
AWS CLI
aws iam list-roles — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List IAM roles.

aws iam list-roles --output table --no-cli-pager
Open →
AWS CLI
aws lambda list-functions — JSON output

Return AWS CLI output as JSON. Base task: List Lambda functions.

aws lambda list-functions --output table --output json
Open →
AWS CLI
aws lambda list-functions — Table output

Display AWS CLI output as a table. Base task: List Lambda functions.

aws lambda list-functions --output table --output table
Open →
AWS CLI
aws lambda list-functions — Text output

Return AWS CLI output as plain text. Base task: List Lambda functions.

aws lambda list-functions --output table --output text
Open →
AWS CLI
aws lambda list-functions — Save JSON output

Save AWS CLI output to JSON. Base task: List Lambda functions.

aws lambda list-functions --output table --output json > aws-command-results.json
Open →
AWS CLI
aws lambda list-functions — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List Lambda functions.

aws lambda list-functions --output table --no-cli-pager
Open →
AWS CLI
aws rds describe-db-instances — JSON output

Return AWS CLI output as JSON. Base task: List RDS database instances.

aws rds describe-db-instances --output table --output json
Open →
AWS CLI
aws rds describe-db-instances — Table output

Display AWS CLI output as a table. Base task: List RDS database instances.

aws rds describe-db-instances --output table --output table
Open →
AWS CLI
aws rds describe-db-instances — Text output

Return AWS CLI output as plain text. Base task: List RDS database instances.

aws rds describe-db-instances --output table --output text
Open →
AWS CLI
aws rds describe-db-instances — Save JSON output

Save AWS CLI output to JSON. Base task: List RDS database instances.

aws rds describe-db-instances --output table --output json > aws-command-results.json
Open →
AWS CLI
aws rds describe-db-instances — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List RDS database instances.

aws rds describe-db-instances --output table --no-cli-pager
Open →
AWS CLI
aws cloudwatch describe-alarms — JSON output

Return AWS CLI output as JSON. Base task: List CloudWatch alarms.

aws cloudwatch describe-alarms --output table --output json
Open →
AWS CLI
aws cloudwatch describe-alarms — Table output

Display AWS CLI output as a table. Base task: List CloudWatch alarms.

aws cloudwatch describe-alarms --output table --output table
Open →
AWS CLI
aws cloudwatch describe-alarms — Text output

Return AWS CLI output as plain text. Base task: List CloudWatch alarms.

aws cloudwatch describe-alarms --output table --output text
Open →
AWS CLI
aws cloudwatch describe-alarms — Save JSON output

Save AWS CLI output to JSON. Base task: List CloudWatch alarms.

aws cloudwatch describe-alarms --output table --output json > aws-command-results.json
Open →
AWS CLI
aws cloudwatch describe-alarms — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List CloudWatch alarms.

aws cloudwatch describe-alarms --output table --no-cli-pager
Open →
AWS CLI
aws logs describe-log-groups — JSON output

Return AWS CLI output as JSON. Base task: List CloudWatch Logs groups.

aws logs describe-log-groups --output table --output json
Open →
AWS CLI
aws logs describe-log-groups — Table output

Display AWS CLI output as a table. Base task: List CloudWatch Logs groups.

aws logs describe-log-groups --output table --output table
Open →
AWS CLI
aws logs describe-log-groups — Text output

Return AWS CLI output as plain text. Base task: List CloudWatch Logs groups.

aws logs describe-log-groups --output table --output text
Open →
AWS CLI
aws logs describe-log-groups — Save JSON output

Save AWS CLI output to JSON. Base task: List CloudWatch Logs groups.

aws logs describe-log-groups --output table --output json > aws-command-results.json
Open →
AWS CLI
aws logs describe-log-groups — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List CloudWatch Logs groups.

aws logs describe-log-groups --output table --no-cli-pager
Open →
AWS CLI
aws route53 list-hosted-zones — JSON output

Return AWS CLI output as JSON. Base task: List Route 53 hosted zones.

aws route53 list-hosted-zones --output table --output json
Open →
AWS CLI
aws route53 list-hosted-zones — Table output

Display AWS CLI output as a table. Base task: List Route 53 hosted zones.

aws route53 list-hosted-zones --output table --output table
Open →
AWS CLI
aws route53 list-hosted-zones — Text output

Return AWS CLI output as plain text. Base task: List Route 53 hosted zones.

aws route53 list-hosted-zones --output table --output text
Open →
AWS CLI
aws route53 list-hosted-zones — Save JSON output

Save AWS CLI output to JSON. Base task: List Route 53 hosted zones.

aws route53 list-hosted-zones --output table --output json > aws-command-results.json
Open →
AWS CLI
aws route53 list-hosted-zones — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List Route 53 hosted zones.

aws route53 list-hosted-zones --output table --no-cli-pager
Open →
AWS CLI
aws organizations list-accounts — JSON output

Return AWS CLI output as JSON. Base task: List accounts in AWS Organizations.

aws organizations list-accounts --output table --output json
Open →
AWS CLI
aws organizations list-accounts — Table output

Display AWS CLI output as a table. Base task: List accounts in AWS Organizations.

aws organizations list-accounts --output table --output table
Open →
AWS CLI
aws organizations list-accounts — Text output

Return AWS CLI output as plain text. Base task: List accounts in AWS Organizations.

aws organizations list-accounts --output table --output text
Open →
AWS CLI
aws organizations list-accounts — Save JSON output

Save AWS CLI output to JSON. Base task: List accounts in AWS Organizations.

aws organizations list-accounts --output table --output json > aws-command-results.json
Open →
AWS CLI
aws organizations list-accounts — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List accounts in AWS Organizations.

aws organizations list-accounts --output table --no-cli-pager
Open →
AWS CLI
aws eks list-clusters — JSON output

Return AWS CLI output as JSON. Base task: List Amazon EKS clusters.

aws eks list-clusters --output json
Open →
AWS CLI
aws eks list-clusters — Table output

Display AWS CLI output as a table. Base task: List Amazon EKS clusters.

aws eks list-clusters --output table
Open →
AWS CLI
aws eks list-clusters — Text output

Return AWS CLI output as plain text. Base task: List Amazon EKS clusters.

aws eks list-clusters --output text
Open →
AWS CLI
aws eks list-clusters — Save JSON output

Save AWS CLI output to JSON. Base task: List Amazon EKS clusters.

aws eks list-clusters --output json > aws-command-results.json
Open →
AWS CLI
aws eks list-clusters — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List Amazon EKS clusters.

aws eks list-clusters --no-cli-pager
Open →
AWS CLI
aws ecs list-clusters — JSON output

Return AWS CLI output as JSON. Base task: List Amazon ECS clusters.

aws ecs list-clusters --output json
Open →
AWS CLI
aws ecs list-clusters — Table output

Display AWS CLI output as a table. Base task: List Amazon ECS clusters.

aws ecs list-clusters --output table
Open →
AWS CLI
aws ecs list-clusters — Text output

Return AWS CLI output as plain text. Base task: List Amazon ECS clusters.

aws ecs list-clusters --output text
Open →
AWS CLI
aws ecs list-clusters — Save JSON output

Save AWS CLI output to JSON. Base task: List Amazon ECS clusters.

aws ecs list-clusters --output json > aws-command-results.json
Open →
AWS CLI
aws ecs list-clusters — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List Amazon ECS clusters.

aws ecs list-clusters --no-cli-pager
Open →
AWS CLI
aws secretsmanager list-secrets — JSON output

Return AWS CLI output as JSON. Base task: List AWS Secrets Manager secrets metadata.

aws secretsmanager list-secrets --output table --output json
Open →
AWS CLI
aws secretsmanager list-secrets — Table output

Display AWS CLI output as a table. Base task: List AWS Secrets Manager secrets metadata.

aws secretsmanager list-secrets --output table --output table
Open →
AWS CLI
aws secretsmanager list-secrets — Text output

Return AWS CLI output as plain text. Base task: List AWS Secrets Manager secrets metadata.

aws secretsmanager list-secrets --output table --output text
Open →
AWS CLI
aws secretsmanager list-secrets — Save JSON output

Save AWS CLI output to JSON. Base task: List AWS Secrets Manager secrets metadata.

aws secretsmanager list-secrets --output table --output json > aws-command-results.json
Open →
AWS CLI
aws secretsmanager list-secrets — Disable pager

Run the AWS CLI command without opening the result pager. Base task: List AWS Secrets Manager secrets metadata.

aws secretsmanager list-secrets --output table --no-cli-pager
Open →
Cisco and FortiGate

Cisco and FortiGate

Back to top ↑
Network CLI
Cisco show version

Display Cisco IOS software and hardware information.

show version
Open →
Network CLI
Cisco show running-config

Display the active Cisco IOS configuration.

show running-config
Open →
Network CLI
Cisco show startup-config

Display the saved startup configuration.

show startup-config
Open →
Network CLI
Cisco show ip interface brief

Summarize interface status and IP addresses.

show ip interface brief
Open →
Network CLI
Cisco show interfaces

Display detailed interface counters and state.

show interfaces
Open →
Network CLI
Cisco show ip route

Display the IPv4 routing table.

show ip route
Open →
Network CLI
Cisco show arp

Display the ARP table.

show arp
Open →
Network CLI
Cisco show mac address-table

Display learned switch MAC addresses.

show mac address-table
Open →
Network CLI
Cisco show vlan brief

Display configured VLANs.

show vlan brief
Open →
Network CLI
Cisco show spanning-tree

Display spanning-tree status.

show spanning-tree
Open →
Network CLI
Cisco show cdp neighbors detail

Display detailed Cisco Discovery Protocol neighbors.

show cdp neighbors detail
Open →
Network CLI
Cisco show lldp neighbors detail

Display detailed LLDP neighbors.

show lldp neighbors detail
Open →
Network CLI
Cisco show access-lists

Display configured access lists.

show access-lists
Open →
Network CLI
Cisco show logging

Display buffered logging and logging settings.

show logging
Open →
Network CLI
Cisco show processes cpu

Display Cisco IOS CPU utilization.

show processes cpu sorted
Open →
Network CLI
Cisco show processes memory

Display Cisco IOS memory usage.

show processes memory sorted
Open →
Network CLI
Cisco copy running-config startup-config

Save the active configuration.

copy running-config startup-config
Open →
Network CLI
Cisco ping

Test IP reachability from a Cisco device.

ping 8.8.8.8
Open →
Network CLI
Cisco traceroute

Trace the path from a Cisco device.

traceroute 8.8.8.8
Open →
Network CLI
FortiGate get system status

Display FortiGate firmware, serial, and system status.

get system status
Open →
Network CLI
FortiGate get system performance status

Display FortiGate CPU, memory, session, and uptime information.

get system performance status
Open →
Network CLI
FortiGate get router info routing-table all

Display the FortiGate routing table.

get router info routing-table all
Open →
Network CLI
FortiGate diagnose ip address list

Display interface IP addresses.

diagnose ip address list
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic

Display FortiGate interface hardware information.

diagnose hardware deviceinfo nic port1
Open →
Network CLI
FortiGate diagnose sniffer packet

Capture matching packets on a FortiGate.

diagnose sniffer packet any "host 8.8.8.8" 4 20 l
Open →
Network CLI
FortiGate diagnose debug flow

Filter FortiGate flow debugging for an address.

diagnose debug flow filter addr 10.0.0.10
Open →
Network CLI
FortiGate execute ping

Test reachability from a FortiGate.

execute ping 8.8.8.8
Open →
Network CLI
FortiGate execute traceroute

Trace a route from a FortiGate.

execute traceroute 8.8.8.8
Open →
Network CLI
FortiGate show firewall policy

Display FortiGate firewall policy configuration.

show firewall policy
Open →
Network CLI
FortiGate show system interface

Display FortiGate interface configuration.

show system interface
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary

Summarize IPsec tunnel status.

get vpn ipsec tunnel summary
Open →
Network CLI
FortiGate diagnose vpn tunnel list

Display detailed IPsec tunnel information.

diagnose vpn tunnel list
Open →
Network CLI
Cisco show version — Basic Usage

Use Cisco show version for a standard administrative task.

show version
Open →
Network CLI
Cisco show running-config — Basic Usage

Use Cisco show running-config for a standard administrative task.

show running-config
Open →
Network CLI
Cisco show startup-config — Basic Usage

Use Cisco show startup-config for a standard administrative task.

show startup-config
Open →
Network CLI
Cisco show ip interface brief — Basic Usage

Use Cisco show ip interface brief for a standard administrative task.

show ip interface brief
Open →
Network CLI
Cisco show interfaces — Basic Usage

Use Cisco show interfaces for a standard administrative task.

show interfaces
Open →
Network CLI
Cisco show ip route — Basic Usage

Use Cisco show ip route for a standard administrative task.

show ip route
Open →
Network CLI
Cisco show arp — Basic Usage

Use Cisco show arp for a standard administrative task.

show arp
Open →
Network CLI
Cisco show mac address-table — Basic Usage

Use Cisco show mac address-table for a standard administrative task.

show mac address-table
Open →
Network CLI
Cisco show vlan brief — Basic Usage

Use Cisco show vlan brief for a standard administrative task.

show vlan brief
Open →
Network CLI
Cisco show spanning-tree — Basic Usage

Use Cisco show spanning-tree for a standard administrative task.

show spanning-tree
Open →
Network CLI
Cisco show cdp neighbors detail — Basic Usage

Use Cisco show cdp neighbors detail for a standard administrative task.

show cdp neighbors detail
Open →
Network CLI
Cisco show lldp neighbors detail — Basic Usage

Use Cisco show lldp neighbors detail for a standard administrative task.

show lldp neighbors detail
Open →
Network CLI
Cisco show access-lists — Basic Usage

Use Cisco show access-lists for a standard administrative task.

show access-lists
Open →
Network CLI
Cisco show logging — Basic Usage

Use Cisco show logging for a standard administrative task.

show logging
Open →
Network CLI
Cisco show processes cpu — Basic Usage

Use Cisco show processes cpu for a standard administrative task.

show processes cpu sorted
Open →
Network CLI
Cisco show processes memory — Basic Usage

Use Cisco show processes memory for a standard administrative task.

show processes memory sorted
Open →
Network CLI
Cisco copy running-config startup-config — Basic Usage

Use Cisco copy running-config startup-config for a standard administrative task.

copy running-config startup-config
Open →
Network CLI
Cisco ping — Basic Usage

Use Cisco ping for a standard administrative task.

ping 8.8.8.8
Open →
Network CLI
Cisco traceroute — Basic Usage

Use Cisco traceroute for a standard administrative task.

traceroute 8.8.8.8
Open →
Network CLI
FortiGate get system status — Basic Usage

Use FortiGate get system status for a standard administrative task.

get system status
Open →
Network CLI
FortiGate get system performance status — Basic Usage

Use FortiGate get system performance status for a standard administrative task.

get system performance status
Open →
Network CLI
FortiGate get router info routing-table all — Basic Usage

Use FortiGate get router info routing-table all for a standard administrative task.

get router info routing-table all
Open →
Network CLI
FortiGate diagnose ip address list — Basic Usage

Use FortiGate diagnose ip address list for a standard administrative task.

diagnose ip address list
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic — Basic Usage

Use FortiGate diagnose hardware deviceinfo nic for a standard administrative task.

diagnose hardware deviceinfo nic port1
Open →
Network CLI
FortiGate diagnose sniffer packet — Basic Usage

Use FortiGate diagnose sniffer packet for a standard administrative task.

diagnose sniffer packet any "host 8.8.8.8" 4 20 l
Open →
Network CLI
FortiGate diagnose debug flow — Basic Usage

Use FortiGate diagnose debug flow for a standard administrative task.

diagnose debug flow filter addr 10.0.0.10
Open →
Network CLI
FortiGate execute ping — Basic Usage

Use FortiGate execute ping for a standard administrative task.

execute ping 8.8.8.8
Open →
Network CLI
FortiGate execute traceroute — Basic Usage

Use FortiGate execute traceroute for a standard administrative task.

execute traceroute 8.8.8.8
Open →
Network CLI
FortiGate show firewall policy — Basic Usage

Use FortiGate show firewall policy for a standard administrative task.

show firewall policy
Open →
Network CLI
FortiGate show system interface — Basic Usage

Use FortiGate show system interface for a standard administrative task.

show system interface
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary — Basic Usage

Use FortiGate get vpn ipsec tunnel summary for a standard administrative task.

get vpn ipsec tunnel summary
Open →
Network CLI
FortiGate diagnose vpn tunnel list — Basic Usage

Use FortiGate diagnose vpn tunnel list for a standard administrative task.

diagnose vpn tunnel list
Open →
Network CLI
Cisco show version Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show version.

show version ?
Open →
Network CLI
Cisco show running-config Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show running-config.

show running-config ?
Open →
Network CLI
Cisco show startup-config Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show startup-config.

show startup-config ?
Open →
Network CLI
Cisco show ip interface brief Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show ip interface brief.

show ip interface brief ?
Open →
Network CLI
Cisco show interfaces Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show interfaces.

show interfaces ?
Open →
Network CLI
Cisco show ip route Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show ip route.

show ip route ?
Open →
Network CLI
Cisco show arp Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show arp.

show arp ?
Open →
Network CLI
Cisco show mac address-table Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show mac address-table.

show mac address-table ?
Open →
Network CLI
Cisco show vlan brief Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show vlan brief.

show vlan brief ?
Open →
Network CLI
Cisco show spanning-tree Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show spanning-tree.

show spanning-tree ?
Open →
Network CLI
Cisco show cdp neighbors detail Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show cdp neighbors detail.

show cdp neighbors detail ?
Open →
Network CLI
Cisco show lldp neighbors detail Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show lldp neighbors detail.

show lldp neighbors detail ?
Open →
Network CLI
Cisco show access-lists Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show access-lists.

show access-lists ?
Open →
Network CLI
Cisco show logging Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show logging.

show logging ?
Open →
Network CLI
Cisco show processes cpu Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show processes cpu.

show processes cpu sorted ?
Open →
Network CLI
Cisco show processes memory Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show processes memory.

show processes memory sorted ?
Open →
Network CLI
Cisco copy running-config startup-config Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco copy running-config startup-config.

copy running-config startup-config ?
Open →
Network CLI
Cisco ping Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco ping.

ping 8.8.8.8 ?
Open →
Network CLI
Cisco traceroute Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco traceroute.

traceroute 8.8.8.8 ?
Open →
Network CLI
FortiGate get system status Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate get system status.

get system status ?
Open →
Network CLI
FortiGate get system performance status Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate get system performance status.

get system performance status ?
Open →
Network CLI
FortiGate get router info routing-table all Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate get router info routing-table all.

get router info routing-table all ?
Open →
Network CLI
FortiGate diagnose ip address list Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose ip address list.

diagnose ip address list ?
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose hardware deviceinfo nic.

diagnose hardware deviceinfo nic port1 ?
Open →
Network CLI
FortiGate diagnose sniffer packet Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose sniffer packet.

diagnose sniffer packet any "host 8.8.8.8" 4 20 l ?
Open →
Network CLI
FortiGate diagnose debug flow Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose debug flow.

diagnose debug flow filter addr 10.0.0.10 ?
Open →
Network CLI
FortiGate execute ping Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate execute ping.

execute ping 8.8.8.8 ?
Open →
Network CLI
FortiGate execute traceroute Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate execute traceroute.

execute traceroute 8.8.8.8 ?
Open →
Network CLI
FortiGate show firewall policy Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate show firewall policy.

show firewall policy ?
Open →
Network CLI
FortiGate show system interface Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate show system interface.

show system interface ?
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate get vpn ipsec tunnel summary.

get vpn ipsec tunnel summary ?
Open →
Network CLI
FortiGate diagnose vpn tunnel list Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose vpn tunnel list.

diagnose vpn tunnel list ?
Open →
Network CLI
Cisco show version — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show version — Basic Usage.

show version ?
Open →
Network CLI
Cisco show running-config — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show running-config — Basic Usage.

show running-config ?
Open →
Network CLI
Cisco show startup-config — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show startup-config — Basic Usage.

show startup-config ?
Open →
Network CLI
Cisco show ip interface brief — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show ip interface brief — Basic Usage.

show ip interface brief ?
Open →
Network CLI
Cisco show interfaces — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show interfaces — Basic Usage.

show interfaces ?
Open →
Network CLI
Cisco show ip route — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show ip route — Basic Usage.

show ip route ?
Open →
Network CLI
Cisco show arp — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show arp — Basic Usage.

show arp ?
Open →
Network CLI
Cisco show mac address-table — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show mac address-table — Basic Usage.

show mac address-table ?
Open →
Network CLI
Cisco show vlan brief — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show vlan brief — Basic Usage.

show vlan brief ?
Open →
Network CLI
Cisco show spanning-tree — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show spanning-tree — Basic Usage.

show spanning-tree ?
Open →
Network CLI
Cisco show cdp neighbors detail — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show cdp neighbors detail — Basic Usage.

show cdp neighbors detail ?
Open →
Network CLI
Cisco show lldp neighbors detail — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show lldp neighbors detail — Basic Usage.

show lldp neighbors detail ?
Open →
Network CLI
Cisco show access-lists — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show access-lists — Basic Usage.

show access-lists ?
Open →
Network CLI
Cisco show logging — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show logging — Basic Usage.

show logging ?
Open →
Network CLI
Cisco show processes cpu — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show processes cpu — Basic Usage.

show processes cpu sorted ?
Open →
Network CLI
Cisco show processes memory — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco show processes memory — Basic Usage.

show processes memory sorted ?
Open →
Network CLI
Cisco copy running-config startup-config — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco copy running-config startup-config — Basic Usage.

copy running-config startup-config ?
Open →
Network CLI
Cisco ping — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco ping — Basic Usage.

ping 8.8.8.8 ?
Open →
Network CLI
Cisco traceroute — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to Cisco traceroute — Basic Usage.

traceroute 8.8.8.8 ?
Open →
Network CLI
FortiGate get system status — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate get system status — Basic Usage.

get system status ?
Open →
Network CLI
FortiGate get system performance status — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate get system performance status — Basic Usage.

get system performance status ?
Open →
Network CLI
FortiGate get router info routing-table all — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate get router info routing-table all — Basic Usage.

get router info routing-table all ?
Open →
Network CLI
FortiGate diagnose ip address list — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose ip address list — Basic Usage.

diagnose ip address list ?
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose hardware deviceinfo nic — Basic Usage.

diagnose hardware deviceinfo nic port1 ?
Open →
Network CLI
FortiGate diagnose sniffer packet — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose sniffer packet — Basic Usage.

diagnose sniffer packet any "host 8.8.8.8" 4 20 l ?
Open →
Network CLI
FortiGate diagnose debug flow — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose debug flow — Basic Usage.

diagnose debug flow filter addr 10.0.0.10 ?
Open →
Network CLI
FortiGate execute ping — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate execute ping — Basic Usage.

execute ping 8.8.8.8 ?
Open →
Network CLI
FortiGate execute traceroute — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate execute traceroute — Basic Usage.

execute traceroute 8.8.8.8 ?
Open →
Network CLI
FortiGate show firewall policy — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate show firewall policy — Basic Usage.

show firewall policy ?
Open →
Network CLI
FortiGate show system interface — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate show system interface — Basic Usage.

show system interface ?
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate get vpn ipsec tunnel summary — Basic Usage.

get vpn ipsec tunnel summary ?
Open →
Network CLI
FortiGate diagnose vpn tunnel list — Basic Usage Help and Syntax

Use context-sensitive network-device CLI help to review syntax related to FortiGate diagnose vpn tunnel list — Basic Usage.

diagnose vpn tunnel list ?
Open →
Network CLI
Cisco show version — Save output

Save standard output and errors to a text file. Base task: Display Cisco IOS software and hardware information.

show version > command-results.txt 2>&1
Open →
Network CLI
Cisco show version — Display and save output

Display output while saving it to a file. Base task: Display Cisco IOS software and hardware information.

show version 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show version — Measure execution time

Measure the command execution time. Base task: Display Cisco IOS software and hardware information.

time show version
Open →
Network CLI
Cisco show version — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display Cisco IOS software and hardware information.

watch -n 5 'show version'
Open →
Network CLI
Cisco show version — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display Cisco IOS software and hardware information.

date --iso-8601=seconds; show version
Open →
Network CLI
Cisco show version — Run in background

Run the command in the background and log its output. Base task: Display Cisco IOS software and hardware information.

nohup sh -c 'show version' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show running-config — Save output

Save standard output and errors to a text file. Base task: Display the active Cisco IOS configuration.

show running-config > command-results.txt 2>&1
Open →
Network CLI
Cisco show running-config — Display and save output

Display output while saving it to a file. Base task: Display the active Cisco IOS configuration.

show running-config 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show running-config — Measure execution time

Measure the command execution time. Base task: Display the active Cisco IOS configuration.

time show running-config
Open →
Network CLI
Cisco show running-config — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display the active Cisco IOS configuration.

watch -n 5 'show running-config'
Open →
Network CLI
Cisco show running-config — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display the active Cisco IOS configuration.

date --iso-8601=seconds; show running-config
Open →
Network CLI
Cisco show running-config — Run in background

Run the command in the background and log its output. Base task: Display the active Cisco IOS configuration.

nohup sh -c 'show running-config' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show startup-config — Save output

Save standard output and errors to a text file. Base task: Display the saved startup configuration.

show startup-config > command-results.txt 2>&1
Open →
Network CLI
Cisco show startup-config — Display and save output

Display output while saving it to a file. Base task: Display the saved startup configuration.

show startup-config 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show startup-config — Measure execution time

Measure the command execution time. Base task: Display the saved startup configuration.

time show startup-config
Open →
Network CLI
Cisco show startup-config — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display the saved startup configuration.

watch -n 5 'show startup-config'
Open →
Network CLI
Cisco show startup-config — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display the saved startup configuration.

date --iso-8601=seconds; show startup-config
Open →
Network CLI
Cisco show startup-config — Run in background

Run the command in the background and log its output. Base task: Display the saved startup configuration.

nohup sh -c 'show startup-config' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show ip interface brief — Save output

Save standard output and errors to a text file. Base task: Summarize interface status and IP addresses.

show ip interface brief > command-results.txt 2>&1
Open →
Network CLI
Cisco show ip interface brief — Display and save output

Display output while saving it to a file. Base task: Summarize interface status and IP addresses.

show ip interface brief 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show ip interface brief — Measure execution time

Measure the command execution time. Base task: Summarize interface status and IP addresses.

time show ip interface brief
Open →
Network CLI
Cisco show ip interface brief — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Summarize interface status and IP addresses.

watch -n 5 'show ip interface brief'
Open →
Network CLI
Cisco show ip interface brief — Run with timestamp

Print a timestamp immediately before running the command. Base task: Summarize interface status and IP addresses.

date --iso-8601=seconds; show ip interface brief
Open →
Network CLI
Cisco show ip interface brief — Run in background

Run the command in the background and log its output. Base task: Summarize interface status and IP addresses.

nohup sh -c 'show ip interface brief' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show interfaces — Save output

Save standard output and errors to a text file. Base task: Display detailed interface counters and state.

show interfaces > command-results.txt 2>&1
Open →
Network CLI
Cisco show interfaces — Display and save output

Display output while saving it to a file. Base task: Display detailed interface counters and state.

show interfaces 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show interfaces — Measure execution time

Measure the command execution time. Base task: Display detailed interface counters and state.

time show interfaces
Open →
Network CLI
Cisco show interfaces — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display detailed interface counters and state.

watch -n 5 'show interfaces'
Open →
Network CLI
Cisco show interfaces — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display detailed interface counters and state.

date --iso-8601=seconds; show interfaces
Open →
Network CLI
Cisco show interfaces — Run in background

Run the command in the background and log its output. Base task: Display detailed interface counters and state.

nohup sh -c 'show interfaces' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show ip route — Save output

Save standard output and errors to a text file. Base task: Display the IPv4 routing table.

show ip route > command-results.txt 2>&1
Open →
Network CLI
Cisco show ip route — Display and save output

Display output while saving it to a file. Base task: Display the IPv4 routing table.

show ip route 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show ip route — Measure execution time

Measure the command execution time. Base task: Display the IPv4 routing table.

time show ip route
Open →
Network CLI
Cisco show ip route — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display the IPv4 routing table.

watch -n 5 'show ip route'
Open →
Network CLI
Cisco show ip route — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display the IPv4 routing table.

date --iso-8601=seconds; show ip route
Open →
Network CLI
Cisco show ip route — Run in background

Run the command in the background and log its output. Base task: Display the IPv4 routing table.

nohup sh -c 'show ip route' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show arp — Save output

Save standard output and errors to a text file. Base task: Display the ARP table.

show arp > command-results.txt 2>&1
Open →
Network CLI
Cisco show arp — Display and save output

Display output while saving it to a file. Base task: Display the ARP table.

show arp 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show arp — Measure execution time

Measure the command execution time. Base task: Display the ARP table.

time show arp
Open →
Network CLI
Cisco show arp — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display the ARP table.

watch -n 5 'show arp'
Open →
Network CLI
Cisco show arp — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display the ARP table.

date --iso-8601=seconds; show arp
Open →
Network CLI
Cisco show arp — Run in background

Run the command in the background and log its output. Base task: Display the ARP table.

nohup sh -c 'show arp' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show mac address-table — Save output

Save standard output and errors to a text file. Base task: Display learned switch MAC addresses.

show mac address-table > command-results.txt 2>&1
Open →
Network CLI
Cisco show mac address-table — Display and save output

Display output while saving it to a file. Base task: Display learned switch MAC addresses.

show mac address-table 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show mac address-table — Measure execution time

Measure the command execution time. Base task: Display learned switch MAC addresses.

time show mac address-table
Open →
Network CLI
Cisco show mac address-table — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display learned switch MAC addresses.

watch -n 5 'show mac address-table'
Open →
Network CLI
Cisco show mac address-table — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display learned switch MAC addresses.

date --iso-8601=seconds; show mac address-table
Open →
Network CLI
Cisco show mac address-table — Run in background

Run the command in the background and log its output. Base task: Display learned switch MAC addresses.

nohup sh -c 'show mac address-table' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show vlan brief — Save output

Save standard output and errors to a text file. Base task: Display configured VLANs.

show vlan brief > command-results.txt 2>&1
Open →
Network CLI
Cisco show vlan brief — Display and save output

Display output while saving it to a file. Base task: Display configured VLANs.

show vlan brief 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show vlan brief — Measure execution time

Measure the command execution time. Base task: Display configured VLANs.

time show vlan brief
Open →
Network CLI
Cisco show vlan brief — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display configured VLANs.

watch -n 5 'show vlan brief'
Open →
Network CLI
Cisco show vlan brief — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display configured VLANs.

date --iso-8601=seconds; show vlan brief
Open →
Network CLI
Cisco show vlan brief — Run in background

Run the command in the background and log its output. Base task: Display configured VLANs.

nohup sh -c 'show vlan brief' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show spanning-tree — Save output

Save standard output and errors to a text file. Base task: Display spanning-tree status.

show spanning-tree > command-results.txt 2>&1
Open →
Network CLI
Cisco show spanning-tree — Display and save output

Display output while saving it to a file. Base task: Display spanning-tree status.

show spanning-tree 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show spanning-tree — Measure execution time

Measure the command execution time. Base task: Display spanning-tree status.

time show spanning-tree
Open →
Network CLI
Cisco show spanning-tree — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display spanning-tree status.

watch -n 5 'show spanning-tree'
Open →
Network CLI
Cisco show spanning-tree — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display spanning-tree status.

date --iso-8601=seconds; show spanning-tree
Open →
Network CLI
Cisco show spanning-tree — Run in background

Run the command in the background and log its output. Base task: Display spanning-tree status.

nohup sh -c 'show spanning-tree' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show cdp neighbors detail — Save output

Save standard output and errors to a text file. Base task: Display detailed Cisco Discovery Protocol neighbors.

show cdp neighbors detail > command-results.txt 2>&1
Open →
Network CLI
Cisco show cdp neighbors detail — Display and save output

Display output while saving it to a file. Base task: Display detailed Cisco Discovery Protocol neighbors.

show cdp neighbors detail 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show cdp neighbors detail — Measure execution time

Measure the command execution time. Base task: Display detailed Cisco Discovery Protocol neighbors.

time show cdp neighbors detail
Open →
Network CLI
Cisco show cdp neighbors detail — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display detailed Cisco Discovery Protocol neighbors.

watch -n 5 'show cdp neighbors detail'
Open →
Network CLI
Cisco show cdp neighbors detail — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display detailed Cisco Discovery Protocol neighbors.

date --iso-8601=seconds; show cdp neighbors detail
Open →
Network CLI
Cisco show cdp neighbors detail — Run in background

Run the command in the background and log its output. Base task: Display detailed Cisco Discovery Protocol neighbors.

nohup sh -c 'show cdp neighbors detail' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show lldp neighbors detail — Save output

Save standard output and errors to a text file. Base task: Display detailed LLDP neighbors.

show lldp neighbors detail > command-results.txt 2>&1
Open →
Network CLI
Cisco show lldp neighbors detail — Display and save output

Display output while saving it to a file. Base task: Display detailed LLDP neighbors.

show lldp neighbors detail 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show lldp neighbors detail — Measure execution time

Measure the command execution time. Base task: Display detailed LLDP neighbors.

time show lldp neighbors detail
Open →
Network CLI
Cisco show lldp neighbors detail — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display detailed LLDP neighbors.

watch -n 5 'show lldp neighbors detail'
Open →
Network CLI
Cisco show lldp neighbors detail — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display detailed LLDP neighbors.

date --iso-8601=seconds; show lldp neighbors detail
Open →
Network CLI
Cisco show lldp neighbors detail — Run in background

Run the command in the background and log its output. Base task: Display detailed LLDP neighbors.

nohup sh -c 'show lldp neighbors detail' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show access-lists — Save output

Save standard output and errors to a text file. Base task: Display configured access lists.

show access-lists > command-results.txt 2>&1
Open →
Network CLI
Cisco show access-lists — Display and save output

Display output while saving it to a file. Base task: Display configured access lists.

show access-lists 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show access-lists — Measure execution time

Measure the command execution time. Base task: Display configured access lists.

time show access-lists
Open →
Network CLI
Cisco show access-lists — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display configured access lists.

watch -n 5 'show access-lists'
Open →
Network CLI
Cisco show access-lists — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display configured access lists.

date --iso-8601=seconds; show access-lists
Open →
Network CLI
Cisco show access-lists — Run in background

Run the command in the background and log its output. Base task: Display configured access lists.

nohup sh -c 'show access-lists' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show logging — Save output

Save standard output and errors to a text file. Base task: Display buffered logging and logging settings.

show logging > command-results.txt 2>&1
Open →
Network CLI
Cisco show logging — Display and save output

Display output while saving it to a file. Base task: Display buffered logging and logging settings.

show logging 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show logging — Measure execution time

Measure the command execution time. Base task: Display buffered logging and logging settings.

time show logging
Open →
Network CLI
Cisco show logging — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display buffered logging and logging settings.

watch -n 5 'show logging'
Open →
Network CLI
Cisco show logging — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display buffered logging and logging settings.

date --iso-8601=seconds; show logging
Open →
Network CLI
Cisco show logging — Run in background

Run the command in the background and log its output. Base task: Display buffered logging and logging settings.

nohup sh -c 'show logging' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show processes cpu — Save output

Save standard output and errors to a text file. Base task: Display Cisco IOS CPU utilization.

show processes cpu sorted > command-results.txt 2>&1
Open →
Network CLI
Cisco show processes cpu — Display and save output

Display output while saving it to a file. Base task: Display Cisco IOS CPU utilization.

show processes cpu sorted 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show processes cpu — Measure execution time

Measure the command execution time. Base task: Display Cisco IOS CPU utilization.

time show processes cpu sorted
Open →
Network CLI
Cisco show processes cpu — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display Cisco IOS CPU utilization.

watch -n 5 'show processes cpu sorted'
Open →
Network CLI
Cisco show processes cpu — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display Cisco IOS CPU utilization.

date --iso-8601=seconds; show processes cpu sorted
Open →
Network CLI
Cisco show processes cpu — Run in background

Run the command in the background and log its output. Base task: Display Cisco IOS CPU utilization.

nohup sh -c 'show processes cpu sorted' > command-results.log 2>&1 &
Open →
Network CLI
Cisco show processes memory — Save output

Save standard output and errors to a text file. Base task: Display Cisco IOS memory usage.

show processes memory sorted > command-results.txt 2>&1
Open →
Network CLI
Cisco show processes memory — Display and save output

Display output while saving it to a file. Base task: Display Cisco IOS memory usage.

show processes memory sorted 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco show processes memory — Measure execution time

Measure the command execution time. Base task: Display Cisco IOS memory usage.

time show processes memory sorted
Open →
Network CLI
Cisco show processes memory — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display Cisco IOS memory usage.

watch -n 5 'show processes memory sorted'
Open →
Network CLI
Cisco show processes memory — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display Cisco IOS memory usage.

date --iso-8601=seconds; show processes memory sorted
Open →
Network CLI
Cisco show processes memory — Run in background

Run the command in the background and log its output. Base task: Display Cisco IOS memory usage.

nohup sh -c 'show processes memory sorted' > command-results.log 2>&1 &
Open →
Network CLI
Cisco copy running-config startup-config — Save output

Save standard output and errors to a text file. Base task: Save the active configuration.

copy running-config startup-config > command-results.txt 2>&1
Open →
Network CLI
Cisco copy running-config startup-config — Display and save output

Display output while saving it to a file. Base task: Save the active configuration.

copy running-config startup-config 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco copy running-config startup-config — Measure execution time

Measure the command execution time. Base task: Save the active configuration.

time copy running-config startup-config
Open →
Network CLI
Cisco copy running-config startup-config — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Save the active configuration.

watch -n 5 'copy running-config startup-config'
Open →
Network CLI
Cisco copy running-config startup-config — Run with timestamp

Print a timestamp immediately before running the command. Base task: Save the active configuration.

date --iso-8601=seconds; copy running-config startup-config
Open →
Network CLI
Cisco copy running-config startup-config — Run in background

Run the command in the background and log its output. Base task: Save the active configuration.

nohup sh -c 'copy running-config startup-config' > command-results.log 2>&1 &
Open →
Network CLI
Cisco ping — Save output

Save standard output and errors to a text file. Base task: Test IP reachability from a Cisco device.

ping 8.8.8.8 > command-results.txt 2>&1
Open →
Network CLI
Cisco ping — Display and save output

Display output while saving it to a file. Base task: Test IP reachability from a Cisco device.

ping 8.8.8.8 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco ping — Measure execution time

Measure the command execution time. Base task: Test IP reachability from a Cisco device.

time ping 8.8.8.8
Open →
Network CLI
Cisco ping — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Test IP reachability from a Cisco device.

watch -n 5 'ping 8.8.8.8'
Open →
Network CLI
Cisco ping — Run with timestamp

Print a timestamp immediately before running the command. Base task: Test IP reachability from a Cisco device.

date --iso-8601=seconds; ping 8.8.8.8
Open →
Network CLI
Cisco ping — Run in background

Run the command in the background and log its output. Base task: Test IP reachability from a Cisco device.

nohup sh -c 'ping 8.8.8.8' > command-results.log 2>&1 &
Open →
Network CLI
Cisco traceroute — Save output

Save standard output and errors to a text file. Base task: Trace the path from a Cisco device.

traceroute 8.8.8.8 > command-results.txt 2>&1
Open →
Network CLI
Cisco traceroute — Display and save output

Display output while saving it to a file. Base task: Trace the path from a Cisco device.

traceroute 8.8.8.8 2>&1 | tee command-results.txt
Open →
Network CLI
Cisco traceroute — Measure execution time

Measure the command execution time. Base task: Trace the path from a Cisco device.

time traceroute 8.8.8.8
Open →
Network CLI
Cisco traceroute — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Trace the path from a Cisco device.

watch -n 5 'traceroute 8.8.8.8'
Open →
Network CLI
Cisco traceroute — Run with timestamp

Print a timestamp immediately before running the command. Base task: Trace the path from a Cisco device.

date --iso-8601=seconds; traceroute 8.8.8.8
Open →
Network CLI
Cisco traceroute — Run in background

Run the command in the background and log its output. Base task: Trace the path from a Cisco device.

nohup sh -c 'traceroute 8.8.8.8' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate get system status — Save output

Save standard output and errors to a text file. Base task: Display FortiGate firmware, serial, and system status.

get system status > command-results.txt 2>&1
Open →
Network CLI
FortiGate get system status — Display and save output

Display output while saving it to a file. Base task: Display FortiGate firmware, serial, and system status.

get system status 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate get system status — Measure execution time

Measure the command execution time. Base task: Display FortiGate firmware, serial, and system status.

time get system status
Open →
Network CLI
FortiGate get system status — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display FortiGate firmware, serial, and system status.

watch -n 5 'get system status'
Open →
Network CLI
FortiGate get system status — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display FortiGate firmware, serial, and system status.

date --iso-8601=seconds; get system status
Open →
Network CLI
FortiGate get system status — Run in background

Run the command in the background and log its output. Base task: Display FortiGate firmware, serial, and system status.

nohup sh -c 'get system status' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate get system performance status — Save output

Save standard output and errors to a text file. Base task: Display FortiGate CPU, memory, session, and uptime information.

get system performance status > command-results.txt 2>&1
Open →
Network CLI
FortiGate get system performance status — Display and save output

Display output while saving it to a file. Base task: Display FortiGate CPU, memory, session, and uptime information.

get system performance status 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate get system performance status — Measure execution time

Measure the command execution time. Base task: Display FortiGate CPU, memory, session, and uptime information.

time get system performance status
Open →
Network CLI
FortiGate get system performance status — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display FortiGate CPU, memory, session, and uptime information.

watch -n 5 'get system performance status'
Open →
Network CLI
FortiGate get system performance status — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display FortiGate CPU, memory, session, and uptime information.

date --iso-8601=seconds; get system performance status
Open →
Network CLI
FortiGate get system performance status — Run in background

Run the command in the background and log its output. Base task: Display FortiGate CPU, memory, session, and uptime information.

nohup sh -c 'get system performance status' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate get router info routing-table all — Save output

Save standard output and errors to a text file. Base task: Display the FortiGate routing table.

get router info routing-table all > command-results.txt 2>&1
Open →
Network CLI
FortiGate get router info routing-table all — Display and save output

Display output while saving it to a file. Base task: Display the FortiGate routing table.

get router info routing-table all 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate get router info routing-table all — Measure execution time

Measure the command execution time. Base task: Display the FortiGate routing table.

time get router info routing-table all
Open →
Network CLI
FortiGate get router info routing-table all — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display the FortiGate routing table.

watch -n 5 'get router info routing-table all'
Open →
Network CLI
FortiGate get router info routing-table all — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display the FortiGate routing table.

date --iso-8601=seconds; get router info routing-table all
Open →
Network CLI
FortiGate get router info routing-table all — Run in background

Run the command in the background and log its output. Base task: Display the FortiGate routing table.

nohup sh -c 'get router info routing-table all' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate diagnose ip address list — Save output

Save standard output and errors to a text file. Base task: Display interface IP addresses.

diagnose ip address list > command-results.txt 2>&1
Open →
Network CLI
FortiGate diagnose ip address list — Display and save output

Display output while saving it to a file. Base task: Display interface IP addresses.

diagnose ip address list 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate diagnose ip address list — Measure execution time

Measure the command execution time. Base task: Display interface IP addresses.

time diagnose ip address list
Open →
Network CLI
FortiGate diagnose ip address list — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display interface IP addresses.

watch -n 5 'diagnose ip address list'
Open →
Network CLI
FortiGate diagnose ip address list — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display interface IP addresses.

date --iso-8601=seconds; diagnose ip address list
Open →
Network CLI
FortiGate diagnose ip address list — Run in background

Run the command in the background and log its output. Base task: Display interface IP addresses.

nohup sh -c 'diagnose ip address list' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic — Save output

Save standard output and errors to a text file. Base task: Display FortiGate interface hardware information.

diagnose hardware deviceinfo nic port1 > command-results.txt 2>&1
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic — Display and save output

Display output while saving it to a file. Base task: Display FortiGate interface hardware information.

diagnose hardware deviceinfo nic port1 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic — Measure execution time

Measure the command execution time. Base task: Display FortiGate interface hardware information.

time diagnose hardware deviceinfo nic port1
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display FortiGate interface hardware information.

watch -n 5 'diagnose hardware deviceinfo nic port1'
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display FortiGate interface hardware information.

date --iso-8601=seconds; diagnose hardware deviceinfo nic port1
Open →
Network CLI
FortiGate diagnose hardware deviceinfo nic — Run in background

Run the command in the background and log its output. Base task: Display FortiGate interface hardware information.

nohup sh -c 'diagnose hardware deviceinfo nic port1' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate diagnose sniffer packet — Save output

Save standard output and errors to a text file. Base task: Capture matching packets on a FortiGate.

diagnose sniffer packet any "host 8.8.8.8" 4 20 l > command-results.txt 2>&1
Open →
Network CLI
FortiGate diagnose sniffer packet — Display and save output

Display output while saving it to a file. Base task: Capture matching packets on a FortiGate.

diagnose sniffer packet any "host 8.8.8.8" 4 20 l 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate diagnose sniffer packet — Measure execution time

Measure the command execution time. Base task: Capture matching packets on a FortiGate.

time diagnose sniffer packet any "host 8.8.8.8" 4 20 l
Open →
Network CLI
FortiGate diagnose sniffer packet — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Capture matching packets on a FortiGate.

watch -n 5 'diagnose sniffer packet any "host 8.8.8.8" 4 20 l'
Open →
Network CLI
FortiGate diagnose sniffer packet — Run with timestamp

Print a timestamp immediately before running the command. Base task: Capture matching packets on a FortiGate.

date --iso-8601=seconds; diagnose sniffer packet any "host 8.8.8.8" 4 20 l
Open →
Network CLI
FortiGate diagnose sniffer packet — Run in background

Run the command in the background and log its output. Base task: Capture matching packets on a FortiGate.

nohup sh -c 'diagnose sniffer packet any "host 8.8.8.8" 4 20 l' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate diagnose debug flow — Save output

Save standard output and errors to a text file. Base task: Filter FortiGate flow debugging for an address.

diagnose debug flow filter addr 10.0.0.10 > command-results.txt 2>&1
Open →
Network CLI
FortiGate diagnose debug flow — Display and save output

Display output while saving it to a file. Base task: Filter FortiGate flow debugging for an address.

diagnose debug flow filter addr 10.0.0.10 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate diagnose debug flow — Measure execution time

Measure the command execution time. Base task: Filter FortiGate flow debugging for an address.

time diagnose debug flow filter addr 10.0.0.10
Open →
Network CLI
FortiGate diagnose debug flow — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Filter FortiGate flow debugging for an address.

watch -n 5 'diagnose debug flow filter addr 10.0.0.10'
Open →
Network CLI
FortiGate diagnose debug flow — Run with timestamp

Print a timestamp immediately before running the command. Base task: Filter FortiGate flow debugging for an address.

date --iso-8601=seconds; diagnose debug flow filter addr 10.0.0.10
Open →
Network CLI
FortiGate diagnose debug flow — Run in background

Run the command in the background and log its output. Base task: Filter FortiGate flow debugging for an address.

nohup sh -c 'diagnose debug flow filter addr 10.0.0.10' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate execute ping — Save output

Save standard output and errors to a text file. Base task: Test reachability from a FortiGate.

execute ping 8.8.8.8 > command-results.txt 2>&1
Open →
Network CLI
FortiGate execute ping — Display and save output

Display output while saving it to a file. Base task: Test reachability from a FortiGate.

execute ping 8.8.8.8 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate execute ping — Measure execution time

Measure the command execution time. Base task: Test reachability from a FortiGate.

time execute ping 8.8.8.8
Open →
Network CLI
FortiGate execute ping — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Test reachability from a FortiGate.

watch -n 5 'execute ping 8.8.8.8'
Open →
Network CLI
FortiGate execute ping — Run with timestamp

Print a timestamp immediately before running the command. Base task: Test reachability from a FortiGate.

date --iso-8601=seconds; execute ping 8.8.8.8
Open →
Network CLI
FortiGate execute ping — Run in background

Run the command in the background and log its output. Base task: Test reachability from a FortiGate.

nohup sh -c 'execute ping 8.8.8.8' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate execute traceroute — Save output

Save standard output and errors to a text file. Base task: Trace a route from a FortiGate.

execute traceroute 8.8.8.8 > command-results.txt 2>&1
Open →
Network CLI
FortiGate execute traceroute — Display and save output

Display output while saving it to a file. Base task: Trace a route from a FortiGate.

execute traceroute 8.8.8.8 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate execute traceroute — Measure execution time

Measure the command execution time. Base task: Trace a route from a FortiGate.

time execute traceroute 8.8.8.8
Open →
Network CLI
FortiGate execute traceroute — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Trace a route from a FortiGate.

watch -n 5 'execute traceroute 8.8.8.8'
Open →
Network CLI
FortiGate execute traceroute — Run with timestamp

Print a timestamp immediately before running the command. Base task: Trace a route from a FortiGate.

date --iso-8601=seconds; execute traceroute 8.8.8.8
Open →
Network CLI
FortiGate execute traceroute — Run in background

Run the command in the background and log its output. Base task: Trace a route from a FortiGate.

nohup sh -c 'execute traceroute 8.8.8.8' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate show firewall policy — Save output

Save standard output and errors to a text file. Base task: Display FortiGate firewall policy configuration.

show firewall policy > command-results.txt 2>&1
Open →
Network CLI
FortiGate show firewall policy — Display and save output

Display output while saving it to a file. Base task: Display FortiGate firewall policy configuration.

show firewall policy 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate show firewall policy — Measure execution time

Measure the command execution time. Base task: Display FortiGate firewall policy configuration.

time show firewall policy
Open →
Network CLI
FortiGate show firewall policy — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display FortiGate firewall policy configuration.

watch -n 5 'show firewall policy'
Open →
Network CLI
FortiGate show firewall policy — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display FortiGate firewall policy configuration.

date --iso-8601=seconds; show firewall policy
Open →
Network CLI
FortiGate show firewall policy — Run in background

Run the command in the background and log its output. Base task: Display FortiGate firewall policy configuration.

nohup sh -c 'show firewall policy' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate show system interface — Save output

Save standard output and errors to a text file. Base task: Display FortiGate interface configuration.

show system interface > command-results.txt 2>&1
Open →
Network CLI
FortiGate show system interface — Display and save output

Display output while saving it to a file. Base task: Display FortiGate interface configuration.

show system interface 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate show system interface — Measure execution time

Measure the command execution time. Base task: Display FortiGate interface configuration.

time show system interface
Open →
Network CLI
FortiGate show system interface — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display FortiGate interface configuration.

watch -n 5 'show system interface'
Open →
Network CLI
FortiGate show system interface — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display FortiGate interface configuration.

date --iso-8601=seconds; show system interface
Open →
Network CLI
FortiGate show system interface — Run in background

Run the command in the background and log its output. Base task: Display FortiGate interface configuration.

nohup sh -c 'show system interface' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary — Save output

Save standard output and errors to a text file. Base task: Summarize IPsec tunnel status.

get vpn ipsec tunnel summary > command-results.txt 2>&1
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary — Display and save output

Display output while saving it to a file. Base task: Summarize IPsec tunnel status.

get vpn ipsec tunnel summary 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary — Measure execution time

Measure the command execution time. Base task: Summarize IPsec tunnel status.

time get vpn ipsec tunnel summary
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Summarize IPsec tunnel status.

watch -n 5 'get vpn ipsec tunnel summary'
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary — Run with timestamp

Print a timestamp immediately before running the command. Base task: Summarize IPsec tunnel status.

date --iso-8601=seconds; get vpn ipsec tunnel summary
Open →
Network CLI
FortiGate get vpn ipsec tunnel summary — Run in background

Run the command in the background and log its output. Base task: Summarize IPsec tunnel status.

nohup sh -c 'get vpn ipsec tunnel summary' > command-results.log 2>&1 &
Open →
Network CLI
FortiGate diagnose vpn tunnel list — Save output

Save standard output and errors to a text file. Base task: Display detailed IPsec tunnel information.

diagnose vpn tunnel list > command-results.txt 2>&1
Open →
Network CLI
FortiGate diagnose vpn tunnel list — Display and save output

Display output while saving it to a file. Base task: Display detailed IPsec tunnel information.

diagnose vpn tunnel list 2>&1 | tee command-results.txt
Open →
Network CLI
FortiGate diagnose vpn tunnel list — Measure execution time

Measure the command execution time. Base task: Display detailed IPsec tunnel information.

time diagnose vpn tunnel list
Open →
Network CLI
FortiGate diagnose vpn tunnel list — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display detailed IPsec tunnel information.

watch -n 5 'diagnose vpn tunnel list'
Open →
Network CLI
FortiGate diagnose vpn tunnel list — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display detailed IPsec tunnel information.

date --iso-8601=seconds; diagnose vpn tunnel list
Open →
Network CLI
FortiGate diagnose vpn tunnel list — Run in background

Run the command in the background and log its output. Base task: Display detailed IPsec tunnel information.

nohup sh -c 'diagnose vpn tunnel list' > command-results.log 2>&1 &
Open →
Docker and Kubernetes

Docker and Kubernetes

Back to top ↑
Containers
docker ps

List Docker containers.

docker ps -a
Open →
Containers
docker images

List local Docker images.

docker images
Open →
Containers
docker logs

Follow container logs.

docker logs --tail 100 -f web01
Open →
Containers
docker inspect

Display detailed Docker object information.

docker inspect web01
Open →
Containers
docker exec

Run a command inside a container.

docker exec -it web01 /bin/sh
Open →
Containers
docker start

Start a stopped container.

docker start web01
Open →
Containers
docker stop

Stop a running container.

docker stop web01
Open →
Containers
docker restart

Restart a container.

docker restart web01
Open →
Containers
docker pull

Download a container image.

docker pull nginx:latest
Open →
Containers
docker build

Build a container image.

docker build -t myapp:1.0 .
Open →
Containers
docker run

Create and run a container.

docker run -d --name web01 -p 8080:80 nginx:latest
Open →
Containers
docker compose up

Start services defined in a Compose file.

docker compose up -d
Open →
Containers
docker compose down

Stop and remove Compose services.

docker compose down
Open →
Containers
docker system df

Display Docker disk usage.

docker system df
Open →
Containers
docker system prune

Remove unused Docker objects.

docker system prune
Open →
Containers
kubectl get pods

List Kubernetes pods across namespaces.

kubectl get pods -A -o wide
Open →
Containers
kubectl get nodes

List Kubernetes nodes.

kubectl get nodes -o wide
Open →
Containers
kubectl describe pod

Display detailed pod status and events.

kubectl describe pod web-abc123 -n production
Open →
Containers
kubectl logs

Follow Kubernetes workload logs.

kubectl logs -n production deployment/web --tail=100 -f
Open →
Containers
kubectl exec

Run a command inside a Kubernetes pod.

kubectl exec -it -n production pod/web-abc123 -- /bin/sh
Open →
Containers
kubectl get deployments

List Kubernetes deployments.

kubectl get deployments -A
Open →
Containers
kubectl rollout status

Watch a deployment rollout.

kubectl rollout status deployment/web -n production
Open →
Containers
kubectl rollout restart

Restart pods managed by a deployment.

kubectl rollout restart deployment/web -n production
Open →
Containers
kubectl scale

Change deployment replica count.

kubectl scale deployment/web --replicas=3 -n production
Open →
Containers
kubectl apply

Apply Kubernetes configuration.

kubectl apply -f deployment.yaml
Open →
Containers
kubectl delete

Delete Kubernetes resources defined in a file.

kubectl delete -f deployment.yaml
Open →
Containers
kubectl top pods

Display pod CPU and memory usage.

kubectl top pods -A
Open →
Containers
kubectl config get-contexts

List Kubernetes contexts.

kubectl config get-contexts
Open →
Containers
kubectl config use-context

Switch the active Kubernetes context.

kubectl config use-context production
Open →
Containers
docker ps — Basic Usage

Use docker ps for a standard administrative task.

docker ps -a
Open →
Containers
docker images — Basic Usage

Use docker images for a standard administrative task.

docker images
Open →
Containers
docker logs — Basic Usage

Use docker logs for a standard administrative task.

docker logs --tail 100 -f web01
Open →
Containers
docker inspect — Basic Usage

Use docker inspect for a standard administrative task.

docker inspect web01
Open →
Containers
docker exec — Basic Usage

Use docker exec for a standard administrative task.

docker exec -it web01 /bin/sh
Open →
Containers
docker start — Basic Usage

Use docker start for a standard administrative task.

docker start web01
Open →
Containers
docker stop — Basic Usage

Use docker stop for a standard administrative task.

docker stop web01
Open →
Containers
docker restart — Basic Usage

Use docker restart for a standard administrative task.

docker restart web01
Open →
Containers
docker pull — Basic Usage

Use docker pull for a standard administrative task.

docker pull nginx:latest
Open →
Containers
docker build — Basic Usage

Use docker build for a standard administrative task.

docker build -t myapp:1.0 .
Open →
Containers
docker run — Basic Usage

Use docker run for a standard administrative task.

docker run -d --name web01 -p 8080:80 nginx:latest
Open →
Containers
docker compose up — Basic Usage

Use docker compose up for a standard administrative task.

docker compose up -d
Open →
Containers
docker compose down — Basic Usage

Use docker compose down for a standard administrative task.

docker compose down
Open →
Containers
docker system df — Basic Usage

Use docker system df for a standard administrative task.

docker system df
Open →
Containers
docker system prune — Basic Usage

Use docker system prune for a standard administrative task.

docker system prune
Open →
Containers
kubectl get pods — Basic Usage

Use kubectl get pods for a standard administrative task.

kubectl get pods -A -o wide
Open →
Containers
kubectl get nodes — Basic Usage

Use kubectl get nodes for a standard administrative task.

kubectl get nodes -o wide
Open →
Containers
kubectl describe pod — Basic Usage

Use kubectl describe pod for a standard administrative task.

kubectl describe pod web-abc123 -n production
Open →
Containers
kubectl logs — Basic Usage

Use kubectl logs for a standard administrative task.

kubectl logs -n production deployment/web --tail=100 -f
Open →
Containers
kubectl exec — Basic Usage

Use kubectl exec for a standard administrative task.

kubectl exec -it -n production pod/web-abc123 -- /bin/sh
Open →
Containers
kubectl get deployments — Basic Usage

Use kubectl get deployments for a standard administrative task.

kubectl get deployments -A
Open →
Containers
kubectl rollout status — Basic Usage

Use kubectl rollout status for a standard administrative task.

kubectl rollout status deployment/web -n production
Open →
Containers
kubectl rollout restart — Basic Usage

Use kubectl rollout restart for a standard administrative task.

kubectl rollout restart deployment/web -n production
Open →
Containers
kubectl scale — Basic Usage

Use kubectl scale for a standard administrative task.

kubectl scale deployment/web --replicas=3 -n production
Open →
Containers
kubectl apply — Basic Usage

Use kubectl apply for a standard administrative task.

kubectl apply -f deployment.yaml
Open →
Containers
kubectl delete — Basic Usage

Use kubectl delete for a standard administrative task.

kubectl delete -f deployment.yaml
Open →
Containers
kubectl top pods — Basic Usage

Use kubectl top pods for a standard administrative task.

kubectl top pods -A
Open →
Containers
kubectl config get-contexts — Basic Usage

Use kubectl config get-contexts for a standard administrative task.

kubectl config get-contexts
Open →
Containers
kubectl config use-context — Basic Usage

Use kubectl config use-context for a standard administrative task.

kubectl config use-context production
Open →
Containers
docker ps Help and Syntax

Display Docker or Kubernetes usage and options related to docker ps.

docker ps -a --help
Open →
Containers
docker images Help and Syntax

Display Docker or Kubernetes usage and options related to docker images.

docker images --help
Open →
Containers
docker logs Help and Syntax

Display Docker or Kubernetes usage and options related to docker logs.

docker logs --tail --help
Open →
Containers
docker inspect Help and Syntax

Display Docker or Kubernetes usage and options related to docker inspect.

docker inspect web01 --help
Open →
Containers
docker exec Help and Syntax

Display Docker or Kubernetes usage and options related to docker exec.

docker exec -it --help
Open →
Containers
docker start Help and Syntax

Display Docker or Kubernetes usage and options related to docker start.

docker start web01 --help
Open →
Containers
docker stop Help and Syntax

Display Docker or Kubernetes usage and options related to docker stop.

docker stop web01 --help
Open →
Containers
docker restart Help and Syntax

Display Docker or Kubernetes usage and options related to docker restart.

docker restart web01 --help
Open →
Containers
docker pull Help and Syntax

Display Docker or Kubernetes usage and options related to docker pull.

docker pull nginx:latest --help
Open →
Containers
docker build Help and Syntax

Display Docker or Kubernetes usage and options related to docker build.

docker build -t --help
Open →
Containers
docker run Help and Syntax

Display Docker or Kubernetes usage and options related to docker run.

docker run -d --help
Open →
Containers
docker compose up Help and Syntax

Display Docker or Kubernetes usage and options related to docker compose up.

docker compose up --help
Open →
Containers
docker compose down Help and Syntax

Display Docker or Kubernetes usage and options related to docker compose down.

docker compose down --help
Open →
Containers
docker system df Help and Syntax

Display Docker or Kubernetes usage and options related to docker system df.

docker system df --help
Open →
Containers
docker system prune Help and Syntax

Display Docker or Kubernetes usage and options related to docker system prune.

docker system prune --help
Open →
Containers
kubectl get pods Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl get pods.

kubectl get pods --help
Open →
Containers
kubectl get nodes Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl get nodes.

kubectl get nodes --help
Open →
Containers
kubectl describe pod Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl describe pod.

kubectl describe pod --help
Open →
Containers
kubectl logs Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl logs.

kubectl logs -n --help
Open →
Containers
kubectl exec Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl exec.

kubectl exec -it --help
Open →
Containers
kubectl get deployments Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl get deployments.

kubectl get deployments --help
Open →
Containers
kubectl rollout status Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl rollout status.

kubectl rollout status --help
Open →
Containers
kubectl rollout restart Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl rollout restart.

kubectl rollout restart --help
Open →
Containers
kubectl scale Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl scale.

kubectl scale deployment/web --help
Open →
Containers
kubectl apply Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl apply.

kubectl apply -f --help
Open →
Containers
kubectl delete Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl delete.

kubectl delete -f --help
Open →
Containers
kubectl top pods Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl top pods.

kubectl top pods --help
Open →
Containers
kubectl config get-contexts Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl config get-contexts.

kubectl config get-contexts --help
Open →
Containers
kubectl config use-context Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl config use-context.

kubectl config use-context --help
Open →
Containers
docker ps — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker ps — Basic Usage.

docker ps -a --help
Open →
Containers
docker images — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker images — Basic Usage.

docker images --help
Open →
Containers
docker logs — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker logs — Basic Usage.

docker logs --tail --help
Open →
Containers
docker inspect — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker inspect — Basic Usage.

docker inspect web01 --help
Open →
Containers
docker exec — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker exec — Basic Usage.

docker exec -it --help
Open →
Containers
docker start — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker start — Basic Usage.

docker start web01 --help
Open →
Containers
docker stop — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker stop — Basic Usage.

docker stop web01 --help
Open →
Containers
docker restart — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker restart — Basic Usage.

docker restart web01 --help
Open →
Containers
docker pull — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker pull — Basic Usage.

docker pull nginx:latest --help
Open →
Containers
docker build — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker build — Basic Usage.

docker build -t --help
Open →
Containers
docker run — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker run — Basic Usage.

docker run -d --help
Open →
Containers
docker compose up — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker compose up — Basic Usage.

docker compose up --help
Open →
Containers
docker compose down — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker compose down — Basic Usage.

docker compose down --help
Open →
Containers
docker system df — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker system df — Basic Usage.

docker system df --help
Open →
Containers
docker system prune — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to docker system prune — Basic Usage.

docker system prune --help
Open →
Containers
kubectl get pods — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl get pods — Basic Usage.

kubectl get pods --help
Open →
Containers
kubectl get nodes — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl get nodes — Basic Usage.

kubectl get nodes --help
Open →
Containers
kubectl describe pod — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl describe pod — Basic Usage.

kubectl describe pod --help
Open →
Containers
kubectl logs — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl logs — Basic Usage.

kubectl logs -n --help
Open →
Containers
kubectl exec — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl exec — Basic Usage.

kubectl exec -it --help
Open →
Containers
kubectl get deployments — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl get deployments — Basic Usage.

kubectl get deployments --help
Open →
Containers
kubectl rollout status — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl rollout status — Basic Usage.

kubectl rollout status --help
Open →
Containers
kubectl rollout restart — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl rollout restart — Basic Usage.

kubectl rollout restart --help
Open →
Containers
kubectl scale — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl scale — Basic Usage.

kubectl scale deployment/web --help
Open →
Containers
kubectl apply — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl apply — Basic Usage.

kubectl apply -f --help
Open →
Containers
kubectl delete — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl delete — Basic Usage.

kubectl delete -f --help
Open →
Containers
kubectl top pods — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl top pods — Basic Usage.

kubectl top pods --help
Open →
Containers
kubectl config get-contexts — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl config get-contexts — Basic Usage.

kubectl config get-contexts --help
Open →
Containers
kubectl config use-context — Basic Usage Help and Syntax

Display Docker or Kubernetes usage and options related to kubectl config use-context — Basic Usage.

kubectl config use-context --help
Open →
Containers
docker ps — Save output

Save standard output and errors to a text file. Base task: List Docker containers.

docker ps -a > command-results.txt 2>&1
Open →
Containers
docker ps — Display and save output

Display output while saving it to a file. Base task: List Docker containers.

docker ps -a 2>&1 | tee command-results.txt
Open →
Containers
docker ps — Measure execution time

Measure the command execution time. Base task: List Docker containers.

time docker ps -a
Open →
Containers
docker ps — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List Docker containers.

watch -n 5 'docker ps -a'
Open →
Containers
docker ps — Run with timestamp

Print a timestamp immediately before running the command. Base task: List Docker containers.

date --iso-8601=seconds; docker ps -a
Open →
Containers
docker ps — Run in background

Run the command in the background and log its output. Base task: List Docker containers.

nohup sh -c 'docker ps -a' > command-results.log 2>&1 &
Open →
Containers
docker images — Save output

Save standard output and errors to a text file. Base task: List local Docker images.

docker images > command-results.txt 2>&1
Open →
Containers
docker images — Display and save output

Display output while saving it to a file. Base task: List local Docker images.

docker images 2>&1 | tee command-results.txt
Open →
Containers
docker images — Measure execution time

Measure the command execution time. Base task: List local Docker images.

time docker images
Open →
Containers
docker images — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List local Docker images.

watch -n 5 'docker images'
Open →
Containers
docker images — Run with timestamp

Print a timestamp immediately before running the command. Base task: List local Docker images.

date --iso-8601=seconds; docker images
Open →
Containers
docker images — Run in background

Run the command in the background and log its output. Base task: List local Docker images.

nohup sh -c 'docker images' > command-results.log 2>&1 &
Open →
Containers
docker logs — Save output

Save standard output and errors to a text file. Base task: Follow container logs.

docker logs --tail 100 -f web01 > command-results.txt 2>&1
Open →
Containers
docker logs — Display and save output

Display output while saving it to a file. Base task: Follow container logs.

docker logs --tail 100 -f web01 2>&1 | tee command-results.txt
Open →
Containers
docker logs — Measure execution time

Measure the command execution time. Base task: Follow container logs.

time docker logs --tail 100 -f web01
Open →
Containers
docker logs — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Follow container logs.

watch -n 5 'docker logs --tail 100 -f web01'
Open →
Containers
docker logs — Run with timestamp

Print a timestamp immediately before running the command. Base task: Follow container logs.

date --iso-8601=seconds; docker logs --tail 100 -f web01
Open →
Containers
docker logs — Run in background

Run the command in the background and log its output. Base task: Follow container logs.

nohup sh -c 'docker logs --tail 100 -f web01' > command-results.log 2>&1 &
Open →
Containers
docker inspect — Save output

Save standard output and errors to a text file. Base task: Display detailed Docker object information.

docker inspect web01 > command-results.txt 2>&1
Open →
Containers
docker inspect — Display and save output

Display output while saving it to a file. Base task: Display detailed Docker object information.

docker inspect web01 2>&1 | tee command-results.txt
Open →
Containers
docker inspect — Measure execution time

Measure the command execution time. Base task: Display detailed Docker object information.

time docker inspect web01
Open →
Containers
docker inspect — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display detailed Docker object information.

watch -n 5 'docker inspect web01'
Open →
Containers
docker inspect — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display detailed Docker object information.

date --iso-8601=seconds; docker inspect web01
Open →
Containers
docker inspect — Run in background

Run the command in the background and log its output. Base task: Display detailed Docker object information.

nohup sh -c 'docker inspect web01' > command-results.log 2>&1 &
Open →
Containers
docker exec — Save output

Save standard output and errors to a text file. Base task: Run a command inside a container.

docker exec -it web01 /bin/sh > command-results.txt 2>&1
Open →
Containers
docker exec — Display and save output

Display output while saving it to a file. Base task: Run a command inside a container.

docker exec -it web01 /bin/sh 2>&1 | tee command-results.txt
Open →
Containers
docker exec — Measure execution time

Measure the command execution time. Base task: Run a command inside a container.

time docker exec -it web01 /bin/sh
Open →
Containers
docker exec — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Run a command inside a container.

watch -n 5 'docker exec -it web01 /bin/sh'
Open →
Containers
docker exec — Run with timestamp

Print a timestamp immediately before running the command. Base task: Run a command inside a container.

date --iso-8601=seconds; docker exec -it web01 /bin/sh
Open →
Containers
docker exec — Run in background

Run the command in the background and log its output. Base task: Run a command inside a container.

nohup sh -c 'docker exec -it web01 /bin/sh' > command-results.log 2>&1 &
Open →
Containers
docker start — Save output

Save standard output and errors to a text file. Base task: Start a stopped container.

docker start web01 > command-results.txt 2>&1
Open →
Containers
docker start — Display and save output

Display output while saving it to a file. Base task: Start a stopped container.

docker start web01 2>&1 | tee command-results.txt
Open →
Containers
docker start — Measure execution time

Measure the command execution time. Base task: Start a stopped container.

time docker start web01
Open →
Containers
docker start — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Start a stopped container.

watch -n 5 'docker start web01'
Open →
Containers
docker start — Run with timestamp

Print a timestamp immediately before running the command. Base task: Start a stopped container.

date --iso-8601=seconds; docker start web01
Open →
Containers
docker start — Run in background

Run the command in the background and log its output. Base task: Start a stopped container.

nohup sh -c 'docker start web01' > command-results.log 2>&1 &
Open →
Containers
docker stop — Save output

Save standard output and errors to a text file. Base task: Stop a running container.

docker stop web01 > command-results.txt 2>&1
Open →
Containers
docker stop — Display and save output

Display output while saving it to a file. Base task: Stop a running container.

docker stop web01 2>&1 | tee command-results.txt
Open →
Containers
docker stop — Measure execution time

Measure the command execution time. Base task: Stop a running container.

time docker stop web01
Open →
Containers
docker stop — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Stop a running container.

watch -n 5 'docker stop web01'
Open →
Containers
docker stop — Run with timestamp

Print a timestamp immediately before running the command. Base task: Stop a running container.

date --iso-8601=seconds; docker stop web01
Open →
Containers
docker stop — Run in background

Run the command in the background and log its output. Base task: Stop a running container.

nohup sh -c 'docker stop web01' > command-results.log 2>&1 &
Open →
Containers
docker restart — Save output

Save standard output and errors to a text file. Base task: Restart a container.

docker restart web01 > command-results.txt 2>&1
Open →
Containers
docker restart — Display and save output

Display output while saving it to a file. Base task: Restart a container.

docker restart web01 2>&1 | tee command-results.txt
Open →
Containers
docker restart — Measure execution time

Measure the command execution time. Base task: Restart a container.

time docker restart web01
Open →
Containers
docker restart — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Restart a container.

watch -n 5 'docker restart web01'
Open →
Containers
docker restart — Run with timestamp

Print a timestamp immediately before running the command. Base task: Restart a container.

date --iso-8601=seconds; docker restart web01
Open →
Containers
docker restart — Run in background

Run the command in the background and log its output. Base task: Restart a container.

nohup sh -c 'docker restart web01' > command-results.log 2>&1 &
Open →
Containers
docker pull — Save output

Save standard output and errors to a text file. Base task: Download a container image.

docker pull nginx:latest > command-results.txt 2>&1
Open →
Containers
docker pull — Display and save output

Display output while saving it to a file. Base task: Download a container image.

docker pull nginx:latest 2>&1 | tee command-results.txt
Open →
Containers
docker pull — Measure execution time

Measure the command execution time. Base task: Download a container image.

time docker pull nginx:latest
Open →
Containers
docker pull — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Download a container image.

watch -n 5 'docker pull nginx:latest'
Open →
Containers
docker pull — Run with timestamp

Print a timestamp immediately before running the command. Base task: Download a container image.

date --iso-8601=seconds; docker pull nginx:latest
Open →
Containers
docker pull — Run in background

Run the command in the background and log its output. Base task: Download a container image.

nohup sh -c 'docker pull nginx:latest' > command-results.log 2>&1 &
Open →
Containers
docker build — Save output

Save standard output and errors to a text file. Base task: Build a container image.

docker build -t myapp:1.0 . > command-results.txt 2>&1
Open →
Containers
docker build — Display and save output

Display output while saving it to a file. Base task: Build a container image.

docker build -t myapp:1.0 . 2>&1 | tee command-results.txt
Open →
Containers
docker build — Measure execution time

Measure the command execution time. Base task: Build a container image.

time docker build -t myapp:1.0 .
Open →
Containers
docker build — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Build a container image.

watch -n 5 'docker build -t myapp:1.0 .'
Open →
Containers
docker build — Run with timestamp

Print a timestamp immediately before running the command. Base task: Build a container image.

date --iso-8601=seconds; docker build -t myapp:1.0 .
Open →
Containers
docker build — Run in background

Run the command in the background and log its output. Base task: Build a container image.

nohup sh -c 'docker build -t myapp:1.0 .' > command-results.log 2>&1 &
Open →
Containers
docker run — Save output

Save standard output and errors to a text file. Base task: Create and run a container.

docker run -d --name web01 -p 8080:80 nginx:latest > command-results.txt 2>&1
Open →
Containers
docker run — Display and save output

Display output while saving it to a file. Base task: Create and run a container.

docker run -d --name web01 -p 8080:80 nginx:latest 2>&1 | tee command-results.txt
Open →
Containers
docker run — Measure execution time

Measure the command execution time. Base task: Create and run a container.

time docker run -d --name web01 -p 8080:80 nginx:latest
Open →
Containers
docker run — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create and run a container.

watch -n 5 'docker run -d --name web01 -p 8080:80 nginx:latest'
Open →
Containers
docker run — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create and run a container.

date --iso-8601=seconds; docker run -d --name web01 -p 8080:80 nginx:latest
Open →
Containers
docker run — Run in background

Run the command in the background and log its output. Base task: Create and run a container.

nohup sh -c 'docker run -d --name web01 -p 8080:80 nginx:latest' > command-results.log 2>&1 &
Open →
Containers
docker compose up — Save output

Save standard output and errors to a text file. Base task: Start services defined in a Compose file.

docker compose up -d > command-results.txt 2>&1
Open →
Containers
docker compose up — Display and save output

Display output while saving it to a file. Base task: Start services defined in a Compose file.

docker compose up -d 2>&1 | tee command-results.txt
Open →
Containers
docker compose up — Measure execution time

Measure the command execution time. Base task: Start services defined in a Compose file.

time docker compose up -d
Open →
Containers
docker compose up — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Start services defined in a Compose file.

watch -n 5 'docker compose up -d'
Open →
Containers
docker compose up — Run with timestamp

Print a timestamp immediately before running the command. Base task: Start services defined in a Compose file.

date --iso-8601=seconds; docker compose up -d
Open →
Containers
docker compose up — Run in background

Run the command in the background and log its output. Base task: Start services defined in a Compose file.

nohup sh -c 'docker compose up -d' > command-results.log 2>&1 &
Open →
Containers
docker compose down — Save output

Save standard output and errors to a text file. Base task: Stop and remove Compose services.

docker compose down > command-results.txt 2>&1
Open →
Containers
docker compose down — Display and save output

Display output while saving it to a file. Base task: Stop and remove Compose services.

docker compose down 2>&1 | tee command-results.txt
Open →
Containers
docker compose down — Measure execution time

Measure the command execution time. Base task: Stop and remove Compose services.

time docker compose down
Open →
Containers
docker compose down — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Stop and remove Compose services.

watch -n 5 'docker compose down'
Open →
Containers
docker compose down — Run with timestamp

Print a timestamp immediately before running the command. Base task: Stop and remove Compose services.

date --iso-8601=seconds; docker compose down
Open →
Containers
docker compose down — Run in background

Run the command in the background and log its output. Base task: Stop and remove Compose services.

nohup sh -c 'docker compose down' > command-results.log 2>&1 &
Open →
Containers
docker system df — Save output

Save standard output and errors to a text file. Base task: Display Docker disk usage.

docker system df > command-results.txt 2>&1
Open →
Containers
docker system df — Display and save output

Display output while saving it to a file. Base task: Display Docker disk usage.

docker system df 2>&1 | tee command-results.txt
Open →
Containers
docker system df — Measure execution time

Measure the command execution time. Base task: Display Docker disk usage.

time docker system df
Open →
Containers
docker system df — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display Docker disk usage.

watch -n 5 'docker system df'
Open →
Containers
docker system df — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display Docker disk usage.

date --iso-8601=seconds; docker system df
Open →
Containers
docker system df — Run in background

Run the command in the background and log its output. Base task: Display Docker disk usage.

nohup sh -c 'docker system df' > command-results.log 2>&1 &
Open →
Containers
docker system prune — Save output

Save standard output and errors to a text file. Base task: Remove unused Docker objects.

docker system prune > command-results.txt 2>&1
Open →
Containers
docker system prune — Display and save output

Display output while saving it to a file. Base task: Remove unused Docker objects.

docker system prune 2>&1 | tee command-results.txt
Open →
Containers
docker system prune — Measure execution time

Measure the command execution time. Base task: Remove unused Docker objects.

time docker system prune
Open →
Containers
docker system prune — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Remove unused Docker objects.

watch -n 5 'docker system prune'
Open →
Containers
docker system prune — Run with timestamp

Print a timestamp immediately before running the command. Base task: Remove unused Docker objects.

date --iso-8601=seconds; docker system prune
Open →
Containers
docker system prune — Run in background

Run the command in the background and log its output. Base task: Remove unused Docker objects.

nohup sh -c 'docker system prune' > command-results.log 2>&1 &
Open →
Containers
kubectl get pods — Save output

Save standard output and errors to a text file. Base task: List Kubernetes pods across namespaces.

kubectl get pods -A -o wide > command-results.txt 2>&1
Open →
Containers
kubectl get pods — Display and save output

Display output while saving it to a file. Base task: List Kubernetes pods across namespaces.

kubectl get pods -A -o wide 2>&1 | tee command-results.txt
Open →
Containers
kubectl get pods — Measure execution time

Measure the command execution time. Base task: List Kubernetes pods across namespaces.

time kubectl get pods -A -o wide
Open →
Containers
kubectl get pods — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List Kubernetes pods across namespaces.

watch -n 5 'kubectl get pods -A -o wide'
Open →
Containers
kubectl get pods — Run with timestamp

Print a timestamp immediately before running the command. Base task: List Kubernetes pods across namespaces.

date --iso-8601=seconds; kubectl get pods -A -o wide
Open →
Containers
kubectl get pods — Run in background

Run the command in the background and log its output. Base task: List Kubernetes pods across namespaces.

nohup sh -c 'kubectl get pods -A -o wide' > command-results.log 2>&1 &
Open →
Containers
kubectl get nodes — Save output

Save standard output and errors to a text file. Base task: List Kubernetes nodes.

kubectl get nodes -o wide > command-results.txt 2>&1
Open →
Containers
kubectl get nodes — Display and save output

Display output while saving it to a file. Base task: List Kubernetes nodes.

kubectl get nodes -o wide 2>&1 | tee command-results.txt
Open →
Containers
kubectl get nodes — Measure execution time

Measure the command execution time. Base task: List Kubernetes nodes.

time kubectl get nodes -o wide
Open →
Containers
kubectl get nodes — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List Kubernetes nodes.

watch -n 5 'kubectl get nodes -o wide'
Open →
Containers
kubectl get nodes — Run with timestamp

Print a timestamp immediately before running the command. Base task: List Kubernetes nodes.

date --iso-8601=seconds; kubectl get nodes -o wide
Open →
Containers
kubectl get nodes — Run in background

Run the command in the background and log its output. Base task: List Kubernetes nodes.

nohup sh -c 'kubectl get nodes -o wide' > command-results.log 2>&1 &
Open →
Containers
kubectl describe pod — Save output

Save standard output and errors to a text file. Base task: Display detailed pod status and events.

kubectl describe pod web-abc123 -n production > command-results.txt 2>&1
Open →
Containers
kubectl describe pod — Display and save output

Display output while saving it to a file. Base task: Display detailed pod status and events.

kubectl describe pod web-abc123 -n production 2>&1 | tee command-results.txt
Open →
Containers
kubectl describe pod — Measure execution time

Measure the command execution time. Base task: Display detailed pod status and events.

time kubectl describe pod web-abc123 -n production
Open →
Containers
kubectl describe pod — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display detailed pod status and events.

watch -n 5 'kubectl describe pod web-abc123 -n production'
Open →
Containers
kubectl describe pod — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display detailed pod status and events.

date --iso-8601=seconds; kubectl describe pod web-abc123 -n production
Open →
Containers
kubectl describe pod — Run in background

Run the command in the background and log its output. Base task: Display detailed pod status and events.

nohup sh -c 'kubectl describe pod web-abc123 -n production' > command-results.log 2>&1 &
Open →
Containers
kubectl logs — Save output

Save standard output and errors to a text file. Base task: Follow Kubernetes workload logs.

kubectl logs -n production deployment/web --tail=100 -f > command-results.txt 2>&1
Open →
Containers
kubectl logs — Display and save output

Display output while saving it to a file. Base task: Follow Kubernetes workload logs.

kubectl logs -n production deployment/web --tail=100 -f 2>&1 | tee command-results.txt
Open →
Containers
kubectl logs — Measure execution time

Measure the command execution time. Base task: Follow Kubernetes workload logs.

time kubectl logs -n production deployment/web --tail=100 -f
Open →
Containers
kubectl logs — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Follow Kubernetes workload logs.

watch -n 5 'kubectl logs -n production deployment/web --tail=100 -f'
Open →
Containers
kubectl logs — Run with timestamp

Print a timestamp immediately before running the command. Base task: Follow Kubernetes workload logs.

date --iso-8601=seconds; kubectl logs -n production deployment/web --tail=100 -f
Open →
Containers
kubectl logs — Run in background

Run the command in the background and log its output. Base task: Follow Kubernetes workload logs.

nohup sh -c 'kubectl logs -n production deployment/web --tail=100 -f' > command-results.log 2>&1 &
Open →
Containers
kubectl exec — Save output

Save standard output and errors to a text file. Base task: Run a command inside a Kubernetes pod.

kubectl exec -it -n production pod/web-abc123 -- /bin/sh > command-results.txt 2>&1
Open →
Containers
kubectl exec — Display and save output

Display output while saving it to a file. Base task: Run a command inside a Kubernetes pod.

kubectl exec -it -n production pod/web-abc123 -- /bin/sh 2>&1 | tee command-results.txt
Open →
Containers
kubectl exec — Measure execution time

Measure the command execution time. Base task: Run a command inside a Kubernetes pod.

time kubectl exec -it -n production pod/web-abc123 -- /bin/sh
Open →
Containers
kubectl exec — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Run a command inside a Kubernetes pod.

watch -n 5 'kubectl exec -it -n production pod/web-abc123 -- /bin/sh'
Open →
Containers
kubectl exec — Run with timestamp

Print a timestamp immediately before running the command. Base task: Run a command inside a Kubernetes pod.

date --iso-8601=seconds; kubectl exec -it -n production pod/web-abc123 -- /bin/sh
Open →
Containers
kubectl exec — Run in background

Run the command in the background and log its output. Base task: Run a command inside a Kubernetes pod.

nohup sh -c 'kubectl exec -it -n production pod/web-abc123 -- /bin/sh' > command-results.log 2>&1 &
Open →
Containers
kubectl get deployments — Save output

Save standard output and errors to a text file. Base task: List Kubernetes deployments.

kubectl get deployments -A > command-results.txt 2>&1
Open →
Containers
kubectl get deployments — Display and save output

Display output while saving it to a file. Base task: List Kubernetes deployments.

kubectl get deployments -A 2>&1 | tee command-results.txt
Open →
Containers
kubectl get deployments — Measure execution time

Measure the command execution time. Base task: List Kubernetes deployments.

time kubectl get deployments -A
Open →
Containers
kubectl get deployments — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List Kubernetes deployments.

watch -n 5 'kubectl get deployments -A'
Open →
Containers
kubectl get deployments — Run with timestamp

Print a timestamp immediately before running the command. Base task: List Kubernetes deployments.

date --iso-8601=seconds; kubectl get deployments -A
Open →
Containers
kubectl get deployments — Run in background

Run the command in the background and log its output. Base task: List Kubernetes deployments.

nohup sh -c 'kubectl get deployments -A' > command-results.log 2>&1 &
Open →
Containers
kubectl rollout status — Save output

Save standard output and errors to a text file. Base task: Watch a deployment rollout.

kubectl rollout status deployment/web -n production > command-results.txt 2>&1
Open →
Containers
kubectl rollout status — Display and save output

Display output while saving it to a file. Base task: Watch a deployment rollout.

kubectl rollout status deployment/web -n production 2>&1 | tee command-results.txt
Open →
Containers
kubectl rollout status — Measure execution time

Measure the command execution time. Base task: Watch a deployment rollout.

time kubectl rollout status deployment/web -n production
Open →
Containers
kubectl rollout status — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Watch a deployment rollout.

watch -n 5 'kubectl rollout status deployment/web -n production'
Open →
Containers
kubectl rollout status — Run with timestamp

Print a timestamp immediately before running the command. Base task: Watch a deployment rollout.

date --iso-8601=seconds; kubectl rollout status deployment/web -n production
Open →
Containers
kubectl rollout status — Run in background

Run the command in the background and log its output. Base task: Watch a deployment rollout.

nohup sh -c 'kubectl rollout status deployment/web -n production' > command-results.log 2>&1 &
Open →
Containers
kubectl rollout restart — Save output

Save standard output and errors to a text file. Base task: Restart pods managed by a deployment.

kubectl rollout restart deployment/web -n production > command-results.txt 2>&1
Open →
Containers
kubectl rollout restart — Display and save output

Display output while saving it to a file. Base task: Restart pods managed by a deployment.

kubectl rollout restart deployment/web -n production 2>&1 | tee command-results.txt
Open →
Containers
kubectl rollout restart — Measure execution time

Measure the command execution time. Base task: Restart pods managed by a deployment.

time kubectl rollout restart deployment/web -n production
Open →
Containers
kubectl rollout restart — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Restart pods managed by a deployment.

watch -n 5 'kubectl rollout restart deployment/web -n production'
Open →
Containers
kubectl rollout restart — Run with timestamp

Print a timestamp immediately before running the command. Base task: Restart pods managed by a deployment.

date --iso-8601=seconds; kubectl rollout restart deployment/web -n production
Open →
Containers
kubectl rollout restart — Run in background

Run the command in the background and log its output. Base task: Restart pods managed by a deployment.

nohup sh -c 'kubectl rollout restart deployment/web -n production' > command-results.log 2>&1 &
Open →
Containers
kubectl scale — Save output

Save standard output and errors to a text file. Base task: Change deployment replica count.

kubectl scale deployment/web --replicas=3 -n production > command-results.txt 2>&1
Open →
Containers
kubectl scale — Display and save output

Display output while saving it to a file. Base task: Change deployment replica count.

kubectl scale deployment/web --replicas=3 -n production 2>&1 | tee command-results.txt
Open →
Containers
kubectl scale — Measure execution time

Measure the command execution time. Base task: Change deployment replica count.

time kubectl scale deployment/web --replicas=3 -n production
Open →
Containers
kubectl scale — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Change deployment replica count.

watch -n 5 'kubectl scale deployment/web --replicas=3 -n production'
Open →
Containers
kubectl scale — Run with timestamp

Print a timestamp immediately before running the command. Base task: Change deployment replica count.

date --iso-8601=seconds; kubectl scale deployment/web --replicas=3 -n production
Open →
Containers
kubectl scale — Run in background

Run the command in the background and log its output. Base task: Change deployment replica count.

nohup sh -c 'kubectl scale deployment/web --replicas=3 -n production' > command-results.log 2>&1 &
Open →
Containers
kubectl apply — Save output

Save standard output and errors to a text file. Base task: Apply Kubernetes configuration.

kubectl apply -f deployment.yaml > command-results.txt 2>&1
Open →
Containers
kubectl apply — Display and save output

Display output while saving it to a file. Base task: Apply Kubernetes configuration.

kubectl apply -f deployment.yaml 2>&1 | tee command-results.txt
Open →
Containers
kubectl apply — Measure execution time

Measure the command execution time. Base task: Apply Kubernetes configuration.

time kubectl apply -f deployment.yaml
Open →
Containers
kubectl apply — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Apply Kubernetes configuration.

watch -n 5 'kubectl apply -f deployment.yaml'
Open →
Containers
kubectl apply — Run with timestamp

Print a timestamp immediately before running the command. Base task: Apply Kubernetes configuration.

date --iso-8601=seconds; kubectl apply -f deployment.yaml
Open →
Containers
kubectl apply — Run in background

Run the command in the background and log its output. Base task: Apply Kubernetes configuration.

nohup sh -c 'kubectl apply -f deployment.yaml' > command-results.log 2>&1 &
Open →
Containers
kubectl delete — Save output

Save standard output and errors to a text file. Base task: Delete Kubernetes resources defined in a file.

kubectl delete -f deployment.yaml > command-results.txt 2>&1
Open →
Containers
kubectl delete — Display and save output

Display output while saving it to a file. Base task: Delete Kubernetes resources defined in a file.

kubectl delete -f deployment.yaml 2>&1 | tee command-results.txt
Open →
Containers
kubectl delete — Measure execution time

Measure the command execution time. Base task: Delete Kubernetes resources defined in a file.

time kubectl delete -f deployment.yaml
Open →
Containers
kubectl delete — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Delete Kubernetes resources defined in a file.

watch -n 5 'kubectl delete -f deployment.yaml'
Open →
Containers
kubectl delete — Run with timestamp

Print a timestamp immediately before running the command. Base task: Delete Kubernetes resources defined in a file.

date --iso-8601=seconds; kubectl delete -f deployment.yaml
Open →
Containers
kubectl delete — Run in background

Run the command in the background and log its output. Base task: Delete Kubernetes resources defined in a file.

nohup sh -c 'kubectl delete -f deployment.yaml' > command-results.log 2>&1 &
Open →
Containers
kubectl top pods — Save output

Save standard output and errors to a text file. Base task: Display pod CPU and memory usage.

kubectl top pods -A > command-results.txt 2>&1
Open →
Containers
kubectl top pods — Display and save output

Display output while saving it to a file. Base task: Display pod CPU and memory usage.

kubectl top pods -A 2>&1 | tee command-results.txt
Open →
Containers
kubectl top pods — Measure execution time

Measure the command execution time. Base task: Display pod CPU and memory usage.

time kubectl top pods -A
Open →
Containers
kubectl top pods — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display pod CPU and memory usage.

watch -n 5 'kubectl top pods -A'
Open →
Containers
kubectl top pods — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display pod CPU and memory usage.

date --iso-8601=seconds; kubectl top pods -A
Open →
Containers
kubectl top pods — Run in background

Run the command in the background and log its output. Base task: Display pod CPU and memory usage.

nohup sh -c 'kubectl top pods -A' > command-results.log 2>&1 &
Open →
Containers
kubectl config get-contexts — Save output

Save standard output and errors to a text file. Base task: List Kubernetes contexts.

kubectl config get-contexts > command-results.txt 2>&1
Open →
Containers
kubectl config get-contexts — Display and save output

Display output while saving it to a file. Base task: List Kubernetes contexts.

kubectl config get-contexts 2>&1 | tee command-results.txt
Open →
Containers
kubectl config get-contexts — Measure execution time

Measure the command execution time. Base task: List Kubernetes contexts.

time kubectl config get-contexts
Open →
Containers
kubectl config get-contexts — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List Kubernetes contexts.

watch -n 5 'kubectl config get-contexts'
Open →
Containers
kubectl config get-contexts — Run with timestamp

Print a timestamp immediately before running the command. Base task: List Kubernetes contexts.

date --iso-8601=seconds; kubectl config get-contexts
Open →
Containers
kubectl config get-contexts — Run in background

Run the command in the background and log its output. Base task: List Kubernetes contexts.

nohup sh -c 'kubectl config get-contexts' > command-results.log 2>&1 &
Open →
Containers
kubectl config use-context — Save output

Save standard output and errors to a text file. Base task: Switch the active Kubernetes context.

kubectl config use-context production > command-results.txt 2>&1
Open →
Containers
kubectl config use-context — Display and save output

Display output while saving it to a file. Base task: Switch the active Kubernetes context.

kubectl config use-context production 2>&1 | tee command-results.txt
Open →
Containers
kubectl config use-context — Measure execution time

Measure the command execution time. Base task: Switch the active Kubernetes context.

time kubectl config use-context production
Open →
Containers
kubectl config use-context — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Switch the active Kubernetes context.

watch -n 5 'kubectl config use-context production'
Open →
Containers
kubectl config use-context — Run with timestamp

Print a timestamp immediately before running the command. Base task: Switch the active Kubernetes context.

date --iso-8601=seconds; kubectl config use-context production
Open →
Containers
kubectl config use-context — Run in background

Run the command in the background and log its output. Base task: Switch the active Kubernetes context.

nohup sh -c 'kubectl config use-context production' > command-results.log 2>&1 &
Open →
Entra ID and Graph

Entra ID and Graph

Back to top ↑
Microsoft Graph
Connect-MgGraph

Connect to Microsoft Graph PowerShell.

Connect-MgGraph -Scopes "User.Read.All"
Open →
Microsoft Graph
Get-MgUser

List Microsoft Entra ID users.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled
Open →
Microsoft Graph
New-MgUser

Create a Microsoft Entra ID user.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile
Open →
Microsoft Graph
Update-MgUser

Update a Microsoft Entra ID user.

Update-MgUser -UserId user@contoso.com -Department IT
Open →
Microsoft Graph
Remove-MgUser

Delete a Microsoft Entra ID user.

Remove-MgUser -UserId user@contoso.com
Open →
Microsoft Graph
Get-MgGroup

List Microsoft Entra ID groups.

Get-MgGroup -All
Open →
Microsoft Graph
Get-MgGroupMember

List Microsoft Entra ID group members.

Get-MgGroupMember -GroupId $groupId -All
Open →
Microsoft Graph
New-MgGroupMemberByRef

Add a member to a Microsoft Entra ID group.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"}
Open →
Microsoft Graph
Get-MgSubscribedSku

List tenant license SKUs.

Get-MgSubscribedSku -All
Open →
Microsoft Graph
Set-MgUserLicense

Assign a Microsoft 365 license.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @()
Open →
Microsoft Graph
Get-MgDevice

List Microsoft Entra ID device objects.

Get-MgDevice -All
Open →
Microsoft Graph
Get-MgAuditLogSignIn

Retrieve recent sign-in logs.

Get-MgAuditLogSignIn -Top 100
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit

Retrieve directory audit logs.

Get-MgAuditLogDirectoryAudit -Top 100
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod

List authentication methods registered by a user.

Get-MgUserAuthenticationMethod -UserId user@contoso.com
Open →
Microsoft Graph
Get-MgServicePrincipal

List enterprise applications and service principals.

Get-MgServicePrincipal -All
Open →
Microsoft Graph
Get-MgApplication

List application registrations.

Get-MgApplication -All
Open →
Microsoft Graph
Invoke-MgGraphRequest

Call Microsoft Graph directly.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization"
Open →
Microsoft Graph
Connect-MgGraph — Basic Usage

Use Connect-MgGraph for a standard administrative task.

Connect-MgGraph -Scopes "User.Read.All"
Open →
Microsoft Graph
Get-MgUser — Basic Usage

Use Get-MgUser for a standard administrative task.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled
Open →
Microsoft Graph
New-MgUser — Basic Usage

Use New-MgUser for a standard administrative task.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile
Open →
Microsoft Graph
Update-MgUser — Basic Usage

Use Update-MgUser for a standard administrative task.

Update-MgUser -UserId user@contoso.com -Department IT
Open →
Microsoft Graph
Remove-MgUser — Basic Usage

Use Remove-MgUser for a standard administrative task.

Remove-MgUser -UserId user@contoso.com
Open →
Microsoft Graph
Get-MgGroup — Basic Usage

Use Get-MgGroup for a standard administrative task.

Get-MgGroup -All
Open →
Microsoft Graph
Get-MgGroupMember — Basic Usage

Use Get-MgGroupMember for a standard administrative task.

Get-MgGroupMember -GroupId $groupId -All
Open →
Microsoft Graph
New-MgGroupMemberByRef — Basic Usage

Use New-MgGroupMemberByRef for a standard administrative task.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"}
Open →
Microsoft Graph
Get-MgSubscribedSku — Basic Usage

Use Get-MgSubscribedSku for a standard administrative task.

Get-MgSubscribedSku -All
Open →
Microsoft Graph
Set-MgUserLicense — Basic Usage

Use Set-MgUserLicense for a standard administrative task.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @()
Open →
Microsoft Graph
Get-MgDevice — Basic Usage

Use Get-MgDevice for a standard administrative task.

Get-MgDevice -All
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Basic Usage

Use Get-MgAuditLogSignIn for a standard administrative task.

Get-MgAuditLogSignIn -Top 100
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Basic Usage

Use Get-MgAuditLogDirectoryAudit for a standard administrative task.

Get-MgAuditLogDirectoryAudit -Top 100
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Basic Usage

Use Get-MgUserAuthenticationMethod for a standard administrative task.

Get-MgUserAuthenticationMethod -UserId user@contoso.com
Open →
Microsoft Graph
Get-MgServicePrincipal — Basic Usage

Use Get-MgServicePrincipal for a standard administrative task.

Get-MgServicePrincipal -All
Open →
Microsoft Graph
Get-MgApplication — Basic Usage

Use Get-MgApplication for a standard administrative task.

Get-MgApplication -All
Open →
Microsoft Graph
Invoke-MgGraphRequest — Basic Usage

Use Invoke-MgGraphRequest for a standard administrative task.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization"
Open →
Microsoft Graph
Connect-MgGraph — Export Results

Export the output of Connect-MgGraph for documentation or review.

Connect-MgGraph -Scopes "User.Read.All" | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgUser — Export Results

Export the output of Get-MgUser for documentation or review.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
New-MgUser — Export Results

Export the output of New-MgUser for documentation or review.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Update-MgUser — Export Results

Export the output of Update-MgUser for documentation or review.

Update-MgUser -UserId user@contoso.com -Department IT | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Remove-MgUser — Export Results

Export the output of Remove-MgUser for documentation or review.

Remove-MgUser -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgGroup — Export Results

Export the output of Get-MgGroup for documentation or review.

Get-MgGroup -All | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgGroupMember — Export Results

Export the output of Get-MgGroupMember for documentation or review.

Get-MgGroupMember -GroupId $groupId -All | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
New-MgGroupMemberByRef — Export Results

Export the output of New-MgGroupMemberByRef for documentation or review.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgSubscribedSku — Export Results

Export the output of Get-MgSubscribedSku for documentation or review.

Get-MgSubscribedSku -All | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Set-MgUserLicense — Export Results

Export the output of Set-MgUserLicense for documentation or review.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgDevice — Export Results

Export the output of Get-MgDevice for documentation or review.

Get-MgDevice -All | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Export Results

Export the output of Get-MgAuditLogSignIn for documentation or review.

Get-MgAuditLogSignIn -Top 100 | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Export Results

Export the output of Get-MgAuditLogDirectoryAudit for documentation or review.

Get-MgAuditLogDirectoryAudit -Top 100 | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Export Results

Export the output of Get-MgUserAuthenticationMethod for documentation or review.

Get-MgUserAuthenticationMethod -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgServicePrincipal — Export Results

Export the output of Get-MgServicePrincipal for documentation or review.

Get-MgServicePrincipal -All | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgApplication — Export Results

Export the output of Get-MgApplication for documentation or review.

Get-MgApplication -All | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Invoke-MgGraphRequest — Export Results

Export the output of Invoke-MgGraphRequest for documentation or review.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft Graph
Connect-MgGraph Help and Syntax

Display complete syntax, parameter details, and examples for Connect-MgGraph.

Get-Help Connect-MgGraph -Full
Open →
Microsoft Graph
Get-MgUser Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgUser.

Get-Help Get-MgUser -Full
Open →
Microsoft Graph
New-MgUser Help and Syntax

Display complete syntax, parameter details, and examples for New-MgUser.

Get-Help New-MgUser -Full
Open →
Microsoft Graph
Update-MgUser Help and Syntax

Display complete syntax, parameter details, and examples for Update-MgUser.

Get-Help Update-MgUser -Full
Open →
Microsoft Graph
Remove-MgUser Help and Syntax

Display complete syntax, parameter details, and examples for Remove-MgUser.

Get-Help Remove-MgUser -Full
Open →
Microsoft Graph
Get-MgGroup Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgGroup.

Get-Help Get-MgGroup -Full
Open →
Microsoft Graph
Get-MgGroupMember Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgGroupMember.

Get-Help Get-MgGroupMember -Full
Open →
Microsoft Graph
New-MgGroupMemberByRef Help and Syntax

Display complete syntax, parameter details, and examples for New-MgGroupMemberByRef.

Get-Help New-MgGroupMemberByRef -Full
Open →
Microsoft Graph
Get-MgSubscribedSku Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgSubscribedSku.

Get-Help Get-MgSubscribedSku -Full
Open →
Microsoft Graph
Set-MgUserLicense Help and Syntax

Display complete syntax, parameter details, and examples for Set-MgUserLicense.

Get-Help Set-MgUserLicense -Full
Open →
Microsoft Graph
Get-MgDevice Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgDevice.

Get-Help Get-MgDevice -Full
Open →
Microsoft Graph
Get-MgAuditLogSignIn Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgAuditLogSignIn.

Get-Help Get-MgAuditLogSignIn -Full
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgAuditLogDirectoryAudit.

Get-Help Get-MgAuditLogDirectoryAudit -Full
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgUserAuthenticationMethod.

Get-Help Get-MgUserAuthenticationMethod -Full
Open →
Microsoft Graph
Get-MgServicePrincipal Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgServicePrincipal.

Get-Help Get-MgServicePrincipal -Full
Open →
Microsoft Graph
Get-MgApplication Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgApplication.

Get-Help Get-MgApplication -Full
Open →
Microsoft Graph
Invoke-MgGraphRequest Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-MgGraphRequest.

Get-Help Invoke-MgGraphRequest -Full
Open →
Microsoft Graph
Connect-MgGraph — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Connect-MgGraph — Basic Usage.

Get-Help Connect-MgGraph -Full
Open →
Microsoft Graph
Get-MgUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgUser — Basic Usage.

Get-Help Get-MgUser -Full
Open →
Microsoft Graph
New-MgUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for New-MgUser — Basic Usage.

Get-Help New-MgUser -Full
Open →
Microsoft Graph
Update-MgUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Update-MgUser — Basic Usage.

Get-Help Update-MgUser -Full
Open →
Microsoft Graph
Remove-MgUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Remove-MgUser — Basic Usage.

Get-Help Remove-MgUser -Full
Open →
Microsoft Graph
Get-MgGroup — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgGroup — Basic Usage.

Get-Help Get-MgGroup -Full
Open →
Microsoft Graph
Get-MgGroupMember — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgGroupMember — Basic Usage.

Get-Help Get-MgGroupMember -Full
Open →
Microsoft Graph
New-MgGroupMemberByRef — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for New-MgGroupMemberByRef — Basic Usage.

Get-Help New-MgGroupMemberByRef -Full
Open →
Microsoft Graph
Get-MgSubscribedSku — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgSubscribedSku — Basic Usage.

Get-Help Get-MgSubscribedSku -Full
Open →
Microsoft Graph
Set-MgUserLicense — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Set-MgUserLicense — Basic Usage.

Get-Help Set-MgUserLicense -Full
Open →
Microsoft Graph
Get-MgDevice — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgDevice — Basic Usage.

Get-Help Get-MgDevice -Full
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgAuditLogSignIn — Basic Usage.

Get-Help Get-MgAuditLogSignIn -Full
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgAuditLogDirectoryAudit — Basic Usage.

Get-Help Get-MgAuditLogDirectoryAudit -Full
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgUserAuthenticationMethod — Basic Usage.

Get-Help Get-MgUserAuthenticationMethod -Full
Open →
Microsoft Graph
Get-MgServicePrincipal — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgServicePrincipal — Basic Usage.

Get-Help Get-MgServicePrincipal -Full
Open →
Microsoft Graph
Get-MgApplication — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgApplication — Basic Usage.

Get-Help Get-MgApplication -Full
Open →
Microsoft Graph
Invoke-MgGraphRequest — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-MgGraphRequest — Basic Usage.

Get-Help Invoke-MgGraphRequest -Full
Open →
Microsoft Graph
Connect-MgGraph — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Connect-MgGraph — Export Results.

Get-Help Connect-MgGraph -Full
Open →
Microsoft Graph
Get-MgUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgUser — Export Results.

Get-Help Get-MgUser -Full
Open →
Microsoft Graph
New-MgUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for New-MgUser — Export Results.

Get-Help New-MgUser -Full
Open →
Microsoft Graph
Update-MgUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Update-MgUser — Export Results.

Get-Help Update-MgUser -Full
Open →
Microsoft Graph
Remove-MgUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Remove-MgUser — Export Results.

Get-Help Remove-MgUser -Full
Open →
Microsoft Graph
Get-MgGroup — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgGroup — Export Results.

Get-Help Get-MgGroup -Full
Open →
Microsoft Graph
Get-MgGroupMember — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgGroupMember — Export Results.

Get-Help Get-MgGroupMember -Full
Open →
Microsoft Graph
New-MgGroupMemberByRef — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for New-MgGroupMemberByRef — Export Results.

Get-Help New-MgGroupMemberByRef -Full
Open →
Microsoft Graph
Get-MgSubscribedSku — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgSubscribedSku — Export Results.

Get-Help Get-MgSubscribedSku -Full
Open →
Microsoft Graph
Set-MgUserLicense — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Set-MgUserLicense — Export Results.

Get-Help Set-MgUserLicense -Full
Open →
Microsoft Graph
Get-MgDevice — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgDevice — Export Results.

Get-Help Get-MgDevice -Full
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgAuditLogSignIn — Export Results.

Get-Help Get-MgAuditLogSignIn -Full
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgAuditLogDirectoryAudit — Export Results.

Get-Help Get-MgAuditLogDirectoryAudit -Full
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgUserAuthenticationMethod — Export Results.

Get-Help Get-MgUserAuthenticationMethod -Full
Open →
Microsoft Graph
Get-MgServicePrincipal — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgServicePrincipal — Export Results.

Get-Help Get-MgServicePrincipal -Full
Open →
Microsoft Graph
Get-MgApplication — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MgApplication — Export Results.

Get-Help Get-MgApplication -Full
Open →
Microsoft Graph
Invoke-MgGraphRequest — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-MgGraphRequest — Export Results.

Get-Help Invoke-MgGraphRequest -Full
Open →
Microsoft Graph
Connect-MgGraph — Formatted details

Display all Microsoft Graph result properties. Base task: Connect to Microsoft Graph PowerShell.

Connect-MgGraph -Scopes "User.Read.All" | Format-List *
Open →
Microsoft Graph
Connect-MgGraph — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Connect to Microsoft Graph PowerShell.

Connect-MgGraph -Scopes "User.Read.All" | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Connect-MgGraph — Convert results to JSON

Convert Graph objects to JSON. Base task: Connect to Microsoft Graph PowerShell.

Connect-MgGraph -Scopes "User.Read.All" | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Connect-MgGraph — Measure execution time

Measure Graph command execution time. Base task: Connect to Microsoft Graph PowerShell.

Measure-Command { Connect-MgGraph -Scopes "User.Read.All" }
Open →
Microsoft Graph
Connect-MgGraph — Stop on error

Use terminating error handling for Graph automation. Base task: Connect to Microsoft Graph PowerShell.

try { Connect-MgGraph -Scopes "User.Read.All" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgUser — Formatted details

Display all Microsoft Graph result properties. Base task: List Microsoft Entra ID users.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | Format-List *
Open →
Microsoft Graph
Get-MgUser — Export results to CSV

Export Graph PowerShell results to CSV. Base task: List Microsoft Entra ID users.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgUser — Convert results to JSON

Convert Graph objects to JSON. Base task: List Microsoft Entra ID users.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgUser — Measure execution time

Measure Graph command execution time. Base task: List Microsoft Entra ID users.

Measure-Command { Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled }
Open →
Microsoft Graph
Get-MgUser — Stop on error

Use terminating error handling for Graph automation. Base task: List Microsoft Entra ID users.

try { Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
New-MgUser — Formatted details

Display all Microsoft Graph result properties. Base task: Create a Microsoft Entra ID user.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | Format-List *
Open →
Microsoft Graph
New-MgUser — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Create a Microsoft Entra ID user.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
New-MgUser — Convert results to JSON

Convert Graph objects to JSON. Base task: Create a Microsoft Entra ID user.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
New-MgUser — Measure execution time

Measure Graph command execution time. Base task: Create a Microsoft Entra ID user.

Measure-Command { New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile }
Open →
Microsoft Graph
New-MgUser — Stop on error

Use terminating error handling for Graph automation. Base task: Create a Microsoft Entra ID user.

try { New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Update-MgUser — Formatted details

Display all Microsoft Graph result properties. Base task: Update a Microsoft Entra ID user.

Update-MgUser -UserId user@contoso.com -Department IT | Format-List *
Open →
Microsoft Graph
Update-MgUser — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Update a Microsoft Entra ID user.

Update-MgUser -UserId user@contoso.com -Department IT | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Update-MgUser — Convert results to JSON

Convert Graph objects to JSON. Base task: Update a Microsoft Entra ID user.

Update-MgUser -UserId user@contoso.com -Department IT | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Update-MgUser — Measure execution time

Measure Graph command execution time. Base task: Update a Microsoft Entra ID user.

Measure-Command { Update-MgUser -UserId user@contoso.com -Department IT }
Open →
Microsoft Graph
Update-MgUser — Stop on error

Use terminating error handling for Graph automation. Base task: Update a Microsoft Entra ID user.

try { Update-MgUser -UserId user@contoso.com -Department IT -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Remove-MgUser — Formatted details

Display all Microsoft Graph result properties. Base task: Delete a Microsoft Entra ID user.

Remove-MgUser -UserId user@contoso.com | Format-List *
Open →
Microsoft Graph
Remove-MgUser — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Delete a Microsoft Entra ID user.

Remove-MgUser -UserId user@contoso.com | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Remove-MgUser — Convert results to JSON

Convert Graph objects to JSON. Base task: Delete a Microsoft Entra ID user.

Remove-MgUser -UserId user@contoso.com | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Remove-MgUser — Measure execution time

Measure Graph command execution time. Base task: Delete a Microsoft Entra ID user.

Measure-Command { Remove-MgUser -UserId user@contoso.com }
Open →
Microsoft Graph
Remove-MgUser — Stop on error

Use terminating error handling for Graph automation. Base task: Delete a Microsoft Entra ID user.

try { Remove-MgUser -UserId user@contoso.com -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgGroup — Formatted details

Display all Microsoft Graph result properties. Base task: List Microsoft Entra ID groups.

Get-MgGroup -All | Format-List *
Open →
Microsoft Graph
Get-MgGroup — Export results to CSV

Export Graph PowerShell results to CSV. Base task: List Microsoft Entra ID groups.

Get-MgGroup -All | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgGroup — Convert results to JSON

Convert Graph objects to JSON. Base task: List Microsoft Entra ID groups.

Get-MgGroup -All | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgGroup — Measure execution time

Measure Graph command execution time. Base task: List Microsoft Entra ID groups.

Measure-Command { Get-MgGroup -All }
Open →
Microsoft Graph
Get-MgGroup — Stop on error

Use terminating error handling for Graph automation. Base task: List Microsoft Entra ID groups.

try { Get-MgGroup -All -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgGroupMember — Formatted details

Display all Microsoft Graph result properties. Base task: List Microsoft Entra ID group members.

Get-MgGroupMember -GroupId $groupId -All | Format-List *
Open →
Microsoft Graph
Get-MgGroupMember — Export results to CSV

Export Graph PowerShell results to CSV. Base task: List Microsoft Entra ID group members.

Get-MgGroupMember -GroupId $groupId -All | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgGroupMember — Convert results to JSON

Convert Graph objects to JSON. Base task: List Microsoft Entra ID group members.

Get-MgGroupMember -GroupId $groupId -All | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgGroupMember — Measure execution time

Measure Graph command execution time. Base task: List Microsoft Entra ID group members.

Measure-Command { Get-MgGroupMember -GroupId $groupId -All }
Open →
Microsoft Graph
Get-MgGroupMember — Stop on error

Use terminating error handling for Graph automation. Base task: List Microsoft Entra ID group members.

try { Get-MgGroupMember -GroupId $groupId -All -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
New-MgGroupMemberByRef — Formatted details

Display all Microsoft Graph result properties. Base task: Add a member to a Microsoft Entra ID group.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | Format-List *
Open →
Microsoft Graph
New-MgGroupMemberByRef — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Add a member to a Microsoft Entra ID group.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
New-MgGroupMemberByRef — Convert results to JSON

Convert Graph objects to JSON. Base task: Add a member to a Microsoft Entra ID group.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
New-MgGroupMemberByRef — Measure execution time

Measure Graph command execution time. Base task: Add a member to a Microsoft Entra ID group.

Measure-Command { New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} }
Open →
Microsoft Graph
New-MgGroupMemberByRef — Stop on error

Use terminating error handling for Graph automation. Base task: Add a member to a Microsoft Entra ID group.

try { New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgSubscribedSku — Formatted details

Display all Microsoft Graph result properties. Base task: List tenant license SKUs.

Get-MgSubscribedSku -All | Format-List *
Open →
Microsoft Graph
Get-MgSubscribedSku — Export results to CSV

Export Graph PowerShell results to CSV. Base task: List tenant license SKUs.

Get-MgSubscribedSku -All | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgSubscribedSku — Convert results to JSON

Convert Graph objects to JSON. Base task: List tenant license SKUs.

Get-MgSubscribedSku -All | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgSubscribedSku — Measure execution time

Measure Graph command execution time. Base task: List tenant license SKUs.

Measure-Command { Get-MgSubscribedSku -All }
Open →
Microsoft Graph
Get-MgSubscribedSku — Stop on error

Use terminating error handling for Graph automation. Base task: List tenant license SKUs.

try { Get-MgSubscribedSku -All -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Set-MgUserLicense — Formatted details

Display all Microsoft Graph result properties. Base task: Assign a Microsoft 365 license.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | Format-List *
Open →
Microsoft Graph
Set-MgUserLicense — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Assign a Microsoft 365 license.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Set-MgUserLicense — Convert results to JSON

Convert Graph objects to JSON. Base task: Assign a Microsoft 365 license.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Set-MgUserLicense — Measure execution time

Measure Graph command execution time. Base task: Assign a Microsoft 365 license.

Measure-Command { Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() }
Open →
Microsoft Graph
Set-MgUserLicense — Stop on error

Use terminating error handling for Graph automation. Base task: Assign a Microsoft 365 license.

try { Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgDevice — Formatted details

Display all Microsoft Graph result properties. Base task: List Microsoft Entra ID device objects.

Get-MgDevice -All | Format-List *
Open →
Microsoft Graph
Get-MgDevice — Export results to CSV

Export Graph PowerShell results to CSV. Base task: List Microsoft Entra ID device objects.

Get-MgDevice -All | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgDevice — Convert results to JSON

Convert Graph objects to JSON. Base task: List Microsoft Entra ID device objects.

Get-MgDevice -All | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgDevice — Measure execution time

Measure Graph command execution time. Base task: List Microsoft Entra ID device objects.

Measure-Command { Get-MgDevice -All }
Open →
Microsoft Graph
Get-MgDevice — Stop on error

Use terminating error handling for Graph automation. Base task: List Microsoft Entra ID device objects.

try { Get-MgDevice -All -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Formatted details

Display all Microsoft Graph result properties. Base task: Retrieve recent sign-in logs.

Get-MgAuditLogSignIn -Top 100 | Format-List *
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Retrieve recent sign-in logs.

Get-MgAuditLogSignIn -Top 100 | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Convert results to JSON

Convert Graph objects to JSON. Base task: Retrieve recent sign-in logs.

Get-MgAuditLogSignIn -Top 100 | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Measure execution time

Measure Graph command execution time. Base task: Retrieve recent sign-in logs.

Measure-Command { Get-MgAuditLogSignIn -Top 100 }
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Stop on error

Use terminating error handling for Graph automation. Base task: Retrieve recent sign-in logs.

try { Get-MgAuditLogSignIn -Top 100 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Formatted details

Display all Microsoft Graph result properties. Base task: Retrieve directory audit logs.

Get-MgAuditLogDirectoryAudit -Top 100 | Format-List *
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Retrieve directory audit logs.

Get-MgAuditLogDirectoryAudit -Top 100 | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Convert results to JSON

Convert Graph objects to JSON. Base task: Retrieve directory audit logs.

Get-MgAuditLogDirectoryAudit -Top 100 | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Measure execution time

Measure Graph command execution time. Base task: Retrieve directory audit logs.

Measure-Command { Get-MgAuditLogDirectoryAudit -Top 100 }
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Stop on error

Use terminating error handling for Graph automation. Base task: Retrieve directory audit logs.

try { Get-MgAuditLogDirectoryAudit -Top 100 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Formatted details

Display all Microsoft Graph result properties. Base task: List authentication methods registered by a user.

Get-MgUserAuthenticationMethod -UserId user@contoso.com | Format-List *
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Export results to CSV

Export Graph PowerShell results to CSV. Base task: List authentication methods registered by a user.

Get-MgUserAuthenticationMethod -UserId user@contoso.com | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Convert results to JSON

Convert Graph objects to JSON. Base task: List authentication methods registered by a user.

Get-MgUserAuthenticationMethod -UserId user@contoso.com | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Measure execution time

Measure Graph command execution time. Base task: List authentication methods registered by a user.

Measure-Command { Get-MgUserAuthenticationMethod -UserId user@contoso.com }
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Stop on error

Use terminating error handling for Graph automation. Base task: List authentication methods registered by a user.

try { Get-MgUserAuthenticationMethod -UserId user@contoso.com -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgServicePrincipal — Formatted details

Display all Microsoft Graph result properties. Base task: List enterprise applications and service principals.

Get-MgServicePrincipal -All | Format-List *
Open →
Microsoft Graph
Get-MgServicePrincipal — Export results to CSV

Export Graph PowerShell results to CSV. Base task: List enterprise applications and service principals.

Get-MgServicePrincipal -All | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgServicePrincipal — Convert results to JSON

Convert Graph objects to JSON. Base task: List enterprise applications and service principals.

Get-MgServicePrincipal -All | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgServicePrincipal — Measure execution time

Measure Graph command execution time. Base task: List enterprise applications and service principals.

Measure-Command { Get-MgServicePrincipal -All }
Open →
Microsoft Graph
Get-MgServicePrincipal — Stop on error

Use terminating error handling for Graph automation. Base task: List enterprise applications and service principals.

try { Get-MgServicePrincipal -All -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgApplication — Formatted details

Display all Microsoft Graph result properties. Base task: List application registrations.

Get-MgApplication -All | Format-List *
Open →
Microsoft Graph
Get-MgApplication — Export results to CSV

Export Graph PowerShell results to CSV. Base task: List application registrations.

Get-MgApplication -All | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgApplication — Convert results to JSON

Convert Graph objects to JSON. Base task: List application registrations.

Get-MgApplication -All | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgApplication — Measure execution time

Measure Graph command execution time. Base task: List application registrations.

Measure-Command { Get-MgApplication -All }
Open →
Microsoft Graph
Get-MgApplication — Stop on error

Use terminating error handling for Graph automation. Base task: List application registrations.

try { Get-MgApplication -All -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Invoke-MgGraphRequest — Formatted details

Display all Microsoft Graph result properties. Base task: Call Microsoft Graph directly.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | Format-List *
Open →
Microsoft Graph
Invoke-MgGraphRequest — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Call Microsoft Graph directly.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Invoke-MgGraphRequest — Convert results to JSON

Convert Graph objects to JSON. Base task: Call Microsoft Graph directly.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Invoke-MgGraphRequest — Measure execution time

Measure Graph command execution time. Base task: Call Microsoft Graph directly.

Measure-Command { Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" }
Open →
Microsoft Graph
Invoke-MgGraphRequest — Stop on error

Use terminating error handling for Graph automation. Base task: Call Microsoft Graph directly.

try { Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Connect-MgGraph — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Connect-MgGraph for documentation or review.

Connect-MgGraph -Scopes "User.Read.All" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Connect-MgGraph — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Connect-MgGraph for documentation or review.

Connect-MgGraph -Scopes "User.Read.All" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Connect-MgGraph — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Connect-MgGraph for documentation or review.

Connect-MgGraph -Scopes "User.Read.All" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Connect-MgGraph — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Connect-MgGraph for documentation or review.

Measure-Command { Connect-MgGraph -Scopes "User.Read.All" | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Connect-MgGraph — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Connect-MgGraph for documentation or review.

try { Connect-MgGraph -Scopes "User.Read.All" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgUser — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgUser for documentation or review.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgUser — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgUser for documentation or review.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgUser — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgUser for documentation or review.

Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgUser — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgUser for documentation or review.

Measure-Command { Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgUser — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgUser for documentation or review.

try { Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AccountEnabled | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
New-MgUser — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of New-MgUser for documentation or review.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
New-MgUser — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of New-MgUser for documentation or review.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
New-MgUser — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of New-MgUser for documentation or review.

New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
New-MgUser — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of New-MgUser for documentation or review.

Measure-Command { New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
New-MgUser — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of New-MgUser for documentation or review.

try { New-MgUser -DisplayName "Jane Smith" -UserPrincipalName jsmith@contoso.com -MailNickname jsmith -AccountEnabled -PasswordProfile $passwordProfile | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Update-MgUser — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Update-MgUser for documentation or review.

Update-MgUser -UserId user@contoso.com -Department IT | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Update-MgUser — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Update-MgUser for documentation or review.

Update-MgUser -UserId user@contoso.com -Department IT | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Update-MgUser — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Update-MgUser for documentation or review.

Update-MgUser -UserId user@contoso.com -Department IT | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Update-MgUser — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Update-MgUser for documentation or review.

Measure-Command { Update-MgUser -UserId user@contoso.com -Department IT | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Update-MgUser — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Update-MgUser for documentation or review.

try { Update-MgUser -UserId user@contoso.com -Department IT | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Remove-MgUser — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Remove-MgUser for documentation or review.

Remove-MgUser -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Remove-MgUser — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Remove-MgUser for documentation or review.

Remove-MgUser -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Remove-MgUser — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Remove-MgUser for documentation or review.

Remove-MgUser -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Remove-MgUser — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Remove-MgUser for documentation or review.

Measure-Command { Remove-MgUser -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Remove-MgUser — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Remove-MgUser for documentation or review.

try { Remove-MgUser -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgGroup — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgGroup for documentation or review.

Get-MgGroup -All | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgGroup — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgGroup for documentation or review.

Get-MgGroup -All | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgGroup — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgGroup for documentation or review.

Get-MgGroup -All | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgGroup — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgGroup for documentation or review.

Measure-Command { Get-MgGroup -All | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgGroup — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgGroup for documentation or review.

try { Get-MgGroup -All | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgGroupMember — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgGroupMember for documentation or review.

Get-MgGroupMember -GroupId $groupId -All | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgGroupMember — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgGroupMember for documentation or review.

Get-MgGroupMember -GroupId $groupId -All | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgGroupMember — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgGroupMember for documentation or review.

Get-MgGroupMember -GroupId $groupId -All | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgGroupMember — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgGroupMember for documentation or review.

Measure-Command { Get-MgGroupMember -GroupId $groupId -All | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgGroupMember — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgGroupMember for documentation or review.

try { Get-MgGroupMember -GroupId $groupId -All | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
New-MgGroupMemberByRef — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of New-MgGroupMemberByRef for documentation or review.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
New-MgGroupMemberByRef — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of New-MgGroupMemberByRef for documentation or review.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
New-MgGroupMemberByRef — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of New-MgGroupMemberByRef for documentation or review.

New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
New-MgGroupMemberByRef — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of New-MgGroupMemberByRef for documentation or review.

Measure-Command { New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
New-MgGroupMemberByRef — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of New-MgGroupMemberByRef for documentation or review.

try { New-MgGroupMemberByRef -GroupId $groupId -BodyParameter @{"@odata.id"="https://graph.microsoft.com/v1.0/directoryObjects/$userId"} | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgSubscribedSku — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgSubscribedSku for documentation or review.

Get-MgSubscribedSku -All | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgSubscribedSku — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgSubscribedSku for documentation or review.

Get-MgSubscribedSku -All | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgSubscribedSku — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgSubscribedSku for documentation or review.

Get-MgSubscribedSku -All | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgSubscribedSku — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgSubscribedSku for documentation or review.

Measure-Command { Get-MgSubscribedSku -All | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgSubscribedSku — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgSubscribedSku for documentation or review.

try { Get-MgSubscribedSku -All | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Set-MgUserLicense — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Set-MgUserLicense for documentation or review.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Set-MgUserLicense — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Set-MgUserLicense for documentation or review.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Set-MgUserLicense — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Set-MgUserLicense for documentation or review.

Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Set-MgUserLicense — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Set-MgUserLicense for documentation or review.

Measure-Command { Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Set-MgUserLicense — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Set-MgUserLicense for documentation or review.

try { Set-MgUserLicense -UserId user@contoso.com -AddLicenses @{SkuId=$skuId} -RemoveLicenses @() | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgDevice — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgDevice for documentation or review.

Get-MgDevice -All | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgDevice — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgDevice for documentation or review.

Get-MgDevice -All | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgDevice — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgDevice for documentation or review.

Get-MgDevice -All | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgDevice — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgDevice for documentation or review.

Measure-Command { Get-MgDevice -All | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgDevice — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgDevice for documentation or review.

try { Get-MgDevice -All | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgAuditLogSignIn for documentation or review.

Get-MgAuditLogSignIn -Top 100 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgAuditLogSignIn for documentation or review.

Get-MgAuditLogSignIn -Top 100 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgAuditLogSignIn for documentation or review.

Get-MgAuditLogSignIn -Top 100 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgAuditLogSignIn for documentation or review.

Measure-Command { Get-MgAuditLogSignIn -Top 100 | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgAuditLogSignIn — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgAuditLogSignIn for documentation or review.

try { Get-MgAuditLogSignIn -Top 100 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgAuditLogDirectoryAudit for documentation or review.

Get-MgAuditLogDirectoryAudit -Top 100 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgAuditLogDirectoryAudit for documentation or review.

Get-MgAuditLogDirectoryAudit -Top 100 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgAuditLogDirectoryAudit for documentation or review.

Get-MgAuditLogDirectoryAudit -Top 100 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgAuditLogDirectoryAudit for documentation or review.

Measure-Command { Get-MgAuditLogDirectoryAudit -Top 100 | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgAuditLogDirectoryAudit for documentation or review.

try { Get-MgAuditLogDirectoryAudit -Top 100 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgUserAuthenticationMethod for documentation or review.

Get-MgUserAuthenticationMethod -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgUserAuthenticationMethod for documentation or review.

Get-MgUserAuthenticationMethod -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgUserAuthenticationMethod for documentation or review.

Get-MgUserAuthenticationMethod -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgUserAuthenticationMethod for documentation or review.

Measure-Command { Get-MgUserAuthenticationMethod -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgUserAuthenticationMethod for documentation or review.

try { Get-MgUserAuthenticationMethod -UserId user@contoso.com | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgServicePrincipal — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgServicePrincipal for documentation or review.

Get-MgServicePrincipal -All | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgServicePrincipal — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgServicePrincipal for documentation or review.

Get-MgServicePrincipal -All | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgServicePrincipal — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgServicePrincipal for documentation or review.

Get-MgServicePrincipal -All | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgServicePrincipal — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgServicePrincipal for documentation or review.

Measure-Command { Get-MgServicePrincipal -All | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgServicePrincipal — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgServicePrincipal for documentation or review.

try { Get-MgServicePrincipal -All | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgApplication — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Get-MgApplication for documentation or review.

Get-MgApplication -All | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Get-MgApplication — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Get-MgApplication for documentation or review.

Get-MgApplication -All | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgApplication — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Get-MgApplication for documentation or review.

Get-MgApplication -All | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgApplication — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Get-MgApplication for documentation or review.

Measure-Command { Get-MgApplication -All | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Get-MgApplication — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Get-MgApplication for documentation or review.

try { Get-MgApplication -All | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Invoke-MgGraphRequest — Export Results — Formatted details

Display all Microsoft Graph result properties. Base task: Export the output of Invoke-MgGraphRequest for documentation or review.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
Microsoft Graph
Invoke-MgGraphRequest — Export Results — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Export the output of Invoke-MgGraphRequest for documentation or review.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Invoke-MgGraphRequest — Export Results — Convert results to JSON

Convert Graph objects to JSON. Base task: Export the output of Invoke-MgGraphRequest for documentation or review.

Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Invoke-MgGraphRequest — Export Results — Measure execution time

Measure Graph command execution time. Base task: Export the output of Invoke-MgGraphRequest for documentation or review.

Measure-Command { Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | Export-Csv .\output.csv -NoTypeInformation }
Open →
Microsoft Graph
Invoke-MgGraphRequest — Export Results — Stop on error

Use terminating error handling for Graph automation. Base task: Export the output of Invoke-MgGraphRequest for documentation or review.

try { Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/organization" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Connect-MgGraph Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Connect-MgGraph.

Get-Help Connect-MgGraph -Full | Format-List *
Open →
Microsoft Graph
Connect-MgGraph Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Connect-MgGraph.

Get-Help Connect-MgGraph -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Connect-MgGraph Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Connect-MgGraph.

Get-Help Connect-MgGraph -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Connect-MgGraph Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Connect-MgGraph.

Measure-Command { Get-Help Connect-MgGraph -Full }
Open →
Microsoft Graph
Connect-MgGraph Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Connect-MgGraph.

try { Get-Help Connect-MgGraph -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgUser Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgUser.

Get-Help Get-MgUser -Full | Format-List *
Open →
Microsoft Graph
Get-MgUser Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgUser.

Get-Help Get-MgUser -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgUser Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgUser.

Get-Help Get-MgUser -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgUser Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgUser.

Measure-Command { Get-Help Get-MgUser -Full }
Open →
Microsoft Graph
Get-MgUser Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgUser.

try { Get-Help Get-MgUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
New-MgUser Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for New-MgUser.

Get-Help New-MgUser -Full | Format-List *
Open →
Microsoft Graph
New-MgUser Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for New-MgUser.

Get-Help New-MgUser -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
New-MgUser Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for New-MgUser.

Get-Help New-MgUser -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
New-MgUser Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for New-MgUser.

Measure-Command { Get-Help New-MgUser -Full }
Open →
Microsoft Graph
New-MgUser Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for New-MgUser.

try { Get-Help New-MgUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Update-MgUser Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Update-MgUser.

Get-Help Update-MgUser -Full | Format-List *
Open →
Microsoft Graph
Update-MgUser Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Update-MgUser.

Get-Help Update-MgUser -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Update-MgUser Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Update-MgUser.

Get-Help Update-MgUser -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Update-MgUser Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Update-MgUser.

Measure-Command { Get-Help Update-MgUser -Full }
Open →
Microsoft Graph
Update-MgUser Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Update-MgUser.

try { Get-Help Update-MgUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Remove-MgUser Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Remove-MgUser.

Get-Help Remove-MgUser -Full | Format-List *
Open →
Microsoft Graph
Remove-MgUser Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Remove-MgUser.

Get-Help Remove-MgUser -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Remove-MgUser Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Remove-MgUser.

Get-Help Remove-MgUser -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Remove-MgUser Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Remove-MgUser.

Measure-Command { Get-Help Remove-MgUser -Full }
Open →
Microsoft Graph
Remove-MgUser Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Remove-MgUser.

try { Get-Help Remove-MgUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgGroup Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgGroup.

Get-Help Get-MgGroup -Full | Format-List *
Open →
Microsoft Graph
Get-MgGroup Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgGroup.

Get-Help Get-MgGroup -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgGroup Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgGroup.

Get-Help Get-MgGroup -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgGroup Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgGroup.

Measure-Command { Get-Help Get-MgGroup -Full }
Open →
Microsoft Graph
Get-MgGroup Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgGroup.

try { Get-Help Get-MgGroup -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgGroupMember Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgGroupMember.

Get-Help Get-MgGroupMember -Full | Format-List *
Open →
Microsoft Graph
Get-MgGroupMember Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgGroupMember.

Get-Help Get-MgGroupMember -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgGroupMember Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgGroupMember.

Get-Help Get-MgGroupMember -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgGroupMember Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgGroupMember.

Measure-Command { Get-Help Get-MgGroupMember -Full }
Open →
Microsoft Graph
Get-MgGroupMember Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgGroupMember.

try { Get-Help Get-MgGroupMember -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
New-MgGroupMemberByRef Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for New-MgGroupMemberByRef.

Get-Help New-MgGroupMemberByRef -Full | Format-List *
Open →
Microsoft Graph
New-MgGroupMemberByRef Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for New-MgGroupMemberByRef.

Get-Help New-MgGroupMemberByRef -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
New-MgGroupMemberByRef Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for New-MgGroupMemberByRef.

Get-Help New-MgGroupMemberByRef -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
New-MgGroupMemberByRef Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for New-MgGroupMemberByRef.

Measure-Command { Get-Help New-MgGroupMemberByRef -Full }
Open →
Microsoft Graph
New-MgGroupMemberByRef Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for New-MgGroupMemberByRef.

try { Get-Help New-MgGroupMemberByRef -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgSubscribedSku Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgSubscribedSku.

Get-Help Get-MgSubscribedSku -Full | Format-List *
Open →
Microsoft Graph
Get-MgSubscribedSku Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgSubscribedSku.

Get-Help Get-MgSubscribedSku -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgSubscribedSku Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgSubscribedSku.

Get-Help Get-MgSubscribedSku -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgSubscribedSku Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgSubscribedSku.

Measure-Command { Get-Help Get-MgSubscribedSku -Full }
Open →
Microsoft Graph
Get-MgSubscribedSku Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgSubscribedSku.

try { Get-Help Get-MgSubscribedSku -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Set-MgUserLicense Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Set-MgUserLicense.

Get-Help Set-MgUserLicense -Full | Format-List *
Open →
Microsoft Graph
Set-MgUserLicense Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Set-MgUserLicense.

Get-Help Set-MgUserLicense -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Set-MgUserLicense Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Set-MgUserLicense.

Get-Help Set-MgUserLicense -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Set-MgUserLicense Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Set-MgUserLicense.

Measure-Command { Get-Help Set-MgUserLicense -Full }
Open →
Microsoft Graph
Set-MgUserLicense Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Set-MgUserLicense.

try { Get-Help Set-MgUserLicense -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgDevice Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgDevice.

Get-Help Get-MgDevice -Full | Format-List *
Open →
Microsoft Graph
Get-MgDevice Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgDevice.

Get-Help Get-MgDevice -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgDevice Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgDevice.

Get-Help Get-MgDevice -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgDevice Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgDevice.

Measure-Command { Get-Help Get-MgDevice -Full }
Open →
Microsoft Graph
Get-MgDevice Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgDevice.

try { Get-Help Get-MgDevice -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgAuditLogSignIn Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogSignIn.

Get-Help Get-MgAuditLogSignIn -Full | Format-List *
Open →
Microsoft Graph
Get-MgAuditLogSignIn Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogSignIn.

Get-Help Get-MgAuditLogSignIn -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgAuditLogSignIn Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogSignIn.

Get-Help Get-MgAuditLogSignIn -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgAuditLogSignIn Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogSignIn.

Measure-Command { Get-Help Get-MgAuditLogSignIn -Full }
Open →
Microsoft Graph
Get-MgAuditLogSignIn Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogSignIn.

try { Get-Help Get-MgAuditLogSignIn -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogDirectoryAudit.

Get-Help Get-MgAuditLogDirectoryAudit -Full | Format-List *
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogDirectoryAudit.

Get-Help Get-MgAuditLogDirectoryAudit -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogDirectoryAudit.

Get-Help Get-MgAuditLogDirectoryAudit -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogDirectoryAudit.

Measure-Command { Get-Help Get-MgAuditLogDirectoryAudit -Full }
Open →
Microsoft Graph
Get-MgAuditLogDirectoryAudit Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgAuditLogDirectoryAudit.

try { Get-Help Get-MgAuditLogDirectoryAudit -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgUserAuthenticationMethod.

Get-Help Get-MgUserAuthenticationMethod -Full | Format-List *
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgUserAuthenticationMethod.

Get-Help Get-MgUserAuthenticationMethod -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgUserAuthenticationMethod.

Get-Help Get-MgUserAuthenticationMethod -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgUserAuthenticationMethod.

Measure-Command { Get-Help Get-MgUserAuthenticationMethod -Full }
Open →
Microsoft Graph
Get-MgUserAuthenticationMethod Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgUserAuthenticationMethod.

try { Get-Help Get-MgUserAuthenticationMethod -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgServicePrincipal Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgServicePrincipal.

Get-Help Get-MgServicePrincipal -Full | Format-List *
Open →
Microsoft Graph
Get-MgServicePrincipal Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgServicePrincipal.

Get-Help Get-MgServicePrincipal -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgServicePrincipal Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgServicePrincipal.

Get-Help Get-MgServicePrincipal -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgServicePrincipal Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgServicePrincipal.

Measure-Command { Get-Help Get-MgServicePrincipal -Full }
Open →
Microsoft Graph
Get-MgServicePrincipal Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgServicePrincipal.

try { Get-Help Get-MgServicePrincipal -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Get-MgApplication Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Get-MgApplication.

Get-Help Get-MgApplication -Full | Format-List *
Open →
Microsoft Graph
Get-MgApplication Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Get-MgApplication.

Get-Help Get-MgApplication -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Get-MgApplication Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Get-MgApplication.

Get-Help Get-MgApplication -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Get-MgApplication Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MgApplication.

Measure-Command { Get-Help Get-MgApplication -Full }
Open →
Microsoft Graph
Get-MgApplication Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Get-MgApplication.

try { Get-Help Get-MgApplication -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Microsoft Graph
Invoke-MgGraphRequest Help and Syntax — Formatted details

Display all Microsoft Graph result properties. Base task: Display complete syntax, parameter details, and examples for Invoke-MgGraphRequest.

Get-Help Invoke-MgGraphRequest -Full | Format-List *
Open →
Microsoft Graph
Invoke-MgGraphRequest Help and Syntax — Export results to CSV

Export Graph PowerShell results to CSV. Base task: Display complete syntax, parameter details, and examples for Invoke-MgGraphRequest.

Get-Help Invoke-MgGraphRequest -Full | Export-Csv -Path .\graph-results.csv -NoTypeInformation
Open →
Microsoft Graph
Invoke-MgGraphRequest Help and Syntax — Convert results to JSON

Convert Graph objects to JSON. Base task: Display complete syntax, parameter details, and examples for Invoke-MgGraphRequest.

Get-Help Invoke-MgGraphRequest -Full | ConvertTo-Json -Depth 8
Open →
Microsoft Graph
Invoke-MgGraphRequest Help and Syntax — Measure execution time

Measure Graph command execution time. Base task: Display complete syntax, parameter details, and examples for Invoke-MgGraphRequest.

Measure-Command { Get-Help Invoke-MgGraphRequest -Full }
Open →
Microsoft Graph
Invoke-MgGraphRequest Help and Syntax — Stop on error

Use terminating error handling for Graph automation. Base task: Display complete syntax, parameter details, and examples for Invoke-MgGraphRequest.

try { Get-Help Invoke-MgGraphRequest -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
Exchange Online

Exchange Online

Back to top ↑
Microsoft 365
Connect-ExchangeOnline

Connect to Exchange Online PowerShell.

Connect-ExchangeOnline
Open →
Microsoft 365
Get-EXOMailbox

List Exchange Online mailboxes.

Get-EXOMailbox -ResultSize Unlimited
Open →
Microsoft 365
Get-Mailbox

List Exchange Online mailboxes with the traditional cmdlet.

Get-Mailbox -ResultSize Unlimited
Open →
Microsoft 365
Get-MailboxPermission

Display mailbox permissions.

Get-MailboxPermission user@contoso.com
Open →
Microsoft 365
Add-MailboxPermission

Grant full mailbox access.

Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true
Open →
Microsoft 365
Remove-MailboxPermission

Remove full mailbox access.

Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false
Open →
Microsoft 365
Get-RecipientPermission

Display Send As permissions.

Get-RecipientPermission shared@contoso.com
Open →
Microsoft 365
Add-RecipientPermission

Grant Send As permission.

Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false
Open →
Microsoft 365
Get-MessageTraceV2

Trace recent Exchange Online messages.

Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date)
Open →
Microsoft 365
Get-TransportRule

List Exchange Online mail flow rules.

Get-TransportRule
Open →
Microsoft 365
Get-AcceptedDomain

List accepted domains in Exchange Online.

Get-AcceptedDomain
Open →
Microsoft 365
Get-DistributionGroup

List distribution groups.

Get-DistributionGroup -ResultSize Unlimited
Open →
Microsoft 365
Get-DistributionGroupMember

List distribution group members.

Get-DistributionGroupMember "All Staff"
Open →
Microsoft 365
Add-DistributionGroupMember

Add a distribution group member.

Add-DistributionGroupMember "All Staff" -Member user@contoso.com
Open →
Microsoft 365
Get-MobileDevice

List mobile devices associated with a mailbox.

Get-MobileDevice -Mailbox user@contoso.com
Open →
Microsoft 365
Get-MailboxStatistics

Display mailbox size and logon statistics.

Get-MailboxStatistics user@contoso.com
Open →
Microsoft 365
Get-MailboxFolderStatistics

Display mailbox folder sizes.

Get-MailboxFolderStatistics user@contoso.com
Open →
Microsoft 365
Set-Mailbox

Update mailbox settings.

Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true
Open →
Microsoft 365
New-Mailbox

Create a shared mailbox.

New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com
Open →
Microsoft 365
Get-OrganizationConfig

Display Exchange Online organization configuration.

Get-OrganizationConfig
Open →
Microsoft 365
Connect-ExchangeOnline — Basic Usage

Use Connect-ExchangeOnline for a standard administrative task.

Connect-ExchangeOnline
Open →
Microsoft 365
Get-EXOMailbox — Basic Usage

Use Get-EXOMailbox for a standard administrative task.

Get-EXOMailbox -ResultSize Unlimited
Open →
Microsoft 365
Get-Mailbox — Basic Usage

Use Get-Mailbox for a standard administrative task.

Get-Mailbox -ResultSize Unlimited
Open →
Microsoft 365
Get-MailboxPermission — Basic Usage

Use Get-MailboxPermission for a standard administrative task.

Get-MailboxPermission user@contoso.com
Open →
Microsoft 365
Add-MailboxPermission — Basic Usage

Use Add-MailboxPermission for a standard administrative task.

Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true
Open →
Microsoft 365
Remove-MailboxPermission — Basic Usage

Use Remove-MailboxPermission for a standard administrative task.

Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false
Open →
Microsoft 365
Get-RecipientPermission — Basic Usage

Use Get-RecipientPermission for a standard administrative task.

Get-RecipientPermission shared@contoso.com
Open →
Microsoft 365
Add-RecipientPermission — Basic Usage

Use Add-RecipientPermission for a standard administrative task.

Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false
Open →
Microsoft 365
Get-MessageTraceV2 — Basic Usage

Use Get-MessageTraceV2 for a standard administrative task.

Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date)
Open →
Microsoft 365
Get-TransportRule — Basic Usage

Use Get-TransportRule for a standard administrative task.

Get-TransportRule
Open →
Microsoft 365
Get-AcceptedDomain — Basic Usage

Use Get-AcceptedDomain for a standard administrative task.

Get-AcceptedDomain
Open →
Microsoft 365
Get-DistributionGroup — Basic Usage

Use Get-DistributionGroup for a standard administrative task.

Get-DistributionGroup -ResultSize Unlimited
Open →
Microsoft 365
Get-DistributionGroupMember — Basic Usage

Use Get-DistributionGroupMember for a standard administrative task.

Get-DistributionGroupMember "All Staff"
Open →
Microsoft 365
Add-DistributionGroupMember — Basic Usage

Use Add-DistributionGroupMember for a standard administrative task.

Add-DistributionGroupMember "All Staff" -Member user@contoso.com
Open →
Microsoft 365
Get-MobileDevice — Basic Usage

Use Get-MobileDevice for a standard administrative task.

Get-MobileDevice -Mailbox user@contoso.com
Open →
Microsoft 365
Get-MailboxStatistics — Basic Usage

Use Get-MailboxStatistics for a standard administrative task.

Get-MailboxStatistics user@contoso.com
Open →
Microsoft 365
Get-MailboxFolderStatistics — Basic Usage

Use Get-MailboxFolderStatistics for a standard administrative task.

Get-MailboxFolderStatistics user@contoso.com
Open →
Microsoft 365
Set-Mailbox — Basic Usage

Use Set-Mailbox for a standard administrative task.

Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true
Open →
Microsoft 365
New-Mailbox — Basic Usage

Use New-Mailbox for a standard administrative task.

New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com
Open →
Microsoft 365
Get-OrganizationConfig — Basic Usage

Use Get-OrganizationConfig for a standard administrative task.

Get-OrganizationConfig
Open →
Microsoft 365
Connect-ExchangeOnline — Export Results

Export the output of Connect-ExchangeOnline for documentation or review.

Connect-ExchangeOnline | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-EXOMailbox — Export Results

Export the output of Get-EXOMailbox for documentation or review.

Get-EXOMailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-Mailbox — Export Results

Export the output of Get-Mailbox for documentation or review.

Get-Mailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxPermission — Export Results

Export the output of Get-MailboxPermission for documentation or review.

Get-MailboxPermission user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-MailboxPermission — Export Results

Export the output of Add-MailboxPermission for documentation or review.

Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Remove-MailboxPermission — Export Results

Export the output of Remove-MailboxPermission for documentation or review.

Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-RecipientPermission — Export Results

Export the output of Get-RecipientPermission for documentation or review.

Get-RecipientPermission shared@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-RecipientPermission — Export Results

Export the output of Add-RecipientPermission for documentation or review.

Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MessageTraceV2 — Export Results

Export the output of Get-MessageTraceV2 for documentation or review.

Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-TransportRule — Export Results

Export the output of Get-TransportRule for documentation or review.

Get-TransportRule | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-AcceptedDomain — Export Results

Export the output of Get-AcceptedDomain for documentation or review.

Get-AcceptedDomain | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-DistributionGroup — Export Results

Export the output of Get-DistributionGroup for documentation or review.

Get-DistributionGroup -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-DistributionGroupMember — Export Results

Export the output of Get-DistributionGroupMember for documentation or review.

Get-DistributionGroupMember "All Staff" | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-DistributionGroupMember — Export Results

Export the output of Add-DistributionGroupMember for documentation or review.

Add-DistributionGroupMember "All Staff" -Member user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MobileDevice — Export Results

Export the output of Get-MobileDevice for documentation or review.

Get-MobileDevice -Mailbox user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxStatistics — Export Results

Export the output of Get-MailboxStatistics for documentation or review.

Get-MailboxStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxFolderStatistics — Export Results

Export the output of Get-MailboxFolderStatistics for documentation or review.

Get-MailboxFolderStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Set-Mailbox — Export Results

Export the output of Set-Mailbox for documentation or review.

Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
New-Mailbox — Export Results

Export the output of New-Mailbox for documentation or review.

New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-OrganizationConfig — Export Results

Export the output of Get-OrganizationConfig for documentation or review.

Get-OrganizationConfig | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Connect-ExchangeOnline Help and Syntax

Display complete syntax, parameter details, and examples for Connect-ExchangeOnline.

Get-Help Connect-ExchangeOnline -Full
Open →
Microsoft 365
Get-EXOMailbox Help and Syntax

Display complete syntax, parameter details, and examples for Get-EXOMailbox.

Get-Help Get-EXOMailbox -Full
Open →
Microsoft 365
Get-Mailbox Help and Syntax

Display complete syntax, parameter details, and examples for Get-Mailbox.

Get-Help Get-Mailbox -Full
Open →
Microsoft 365
Get-MailboxPermission Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxPermission.

Get-Help Get-MailboxPermission -Full
Open →
Microsoft 365
Add-MailboxPermission Help and Syntax

Display complete syntax, parameter details, and examples for Add-MailboxPermission.

Get-Help Add-MailboxPermission -Full
Open →
Microsoft 365
Remove-MailboxPermission Help and Syntax

Display complete syntax, parameter details, and examples for Remove-MailboxPermission.

Get-Help Remove-MailboxPermission -Full
Open →
Microsoft 365
Get-RecipientPermission Help and Syntax

Display complete syntax, parameter details, and examples for Get-RecipientPermission.

Get-Help Get-RecipientPermission -Full
Open →
Microsoft 365
Add-RecipientPermission Help and Syntax

Display complete syntax, parameter details, and examples for Add-RecipientPermission.

Get-Help Add-RecipientPermission -Full
Open →
Microsoft 365
Get-MessageTraceV2 Help and Syntax

Display complete syntax, parameter details, and examples for Get-MessageTraceV2.

Get-Help Get-MessageTraceV2 -Full
Open →
Microsoft 365
Get-TransportRule Help and Syntax

Display complete syntax, parameter details, and examples for Get-TransportRule.

Get-Help Get-TransportRule -Full
Open →
Microsoft 365
Get-AcceptedDomain Help and Syntax

Display complete syntax, parameter details, and examples for Get-AcceptedDomain.

Get-Help Get-AcceptedDomain -Full
Open →
Microsoft 365
Get-DistributionGroup Help and Syntax

Display complete syntax, parameter details, and examples for Get-DistributionGroup.

Get-Help Get-DistributionGroup -Full
Open →
Microsoft 365
Get-DistributionGroupMember Help and Syntax

Display complete syntax, parameter details, and examples for Get-DistributionGroupMember.

Get-Help Get-DistributionGroupMember -Full
Open →
Microsoft 365
Add-DistributionGroupMember Help and Syntax

Display complete syntax, parameter details, and examples for Add-DistributionGroupMember.

Get-Help Add-DistributionGroupMember -Full
Open →
Microsoft 365
Get-MobileDevice Help and Syntax

Display complete syntax, parameter details, and examples for Get-MobileDevice.

Get-Help Get-MobileDevice -Full
Open →
Microsoft 365
Get-MailboxStatistics Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxStatistics.

Get-Help Get-MailboxStatistics -Full
Open →
Microsoft 365
Get-MailboxFolderStatistics Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics.

Get-Help Get-MailboxFolderStatistics -Full
Open →
Microsoft 365
Set-Mailbox Help and Syntax

Display complete syntax, parameter details, and examples for Set-Mailbox.

Get-Help Set-Mailbox -Full
Open →
Microsoft 365
New-Mailbox Help and Syntax

Display complete syntax, parameter details, and examples for New-Mailbox.

Get-Help New-Mailbox -Full
Open →
Microsoft 365
Get-OrganizationConfig Help and Syntax

Display complete syntax, parameter details, and examples for Get-OrganizationConfig.

Get-Help Get-OrganizationConfig -Full
Open →
Microsoft 365
Connect-ExchangeOnline — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Connect-ExchangeOnline — Basic Usage.

Get-Help Connect-ExchangeOnline -Full
Open →
Microsoft 365
Get-EXOMailbox — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-EXOMailbox — Basic Usage.

Get-Help Get-EXOMailbox -Full
Open →
Microsoft 365
Get-Mailbox — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Mailbox — Basic Usage.

Get-Help Get-Mailbox -Full
Open →
Microsoft 365
Get-MailboxPermission — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxPermission — Basic Usage.

Get-Help Get-MailboxPermission -Full
Open →
Microsoft 365
Add-MailboxPermission — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Add-MailboxPermission — Basic Usage.

Get-Help Add-MailboxPermission -Full
Open →
Microsoft 365
Remove-MailboxPermission — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Remove-MailboxPermission — Basic Usage.

Get-Help Remove-MailboxPermission -Full
Open →
Microsoft 365
Get-RecipientPermission — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-RecipientPermission — Basic Usage.

Get-Help Get-RecipientPermission -Full
Open →
Microsoft 365
Add-RecipientPermission — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Add-RecipientPermission — Basic Usage.

Get-Help Add-RecipientPermission -Full
Open →
Microsoft 365
Get-MessageTraceV2 — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MessageTraceV2 — Basic Usage.

Get-Help Get-MessageTraceV2 -Full
Open →
Microsoft 365
Get-TransportRule — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-TransportRule — Basic Usage.

Get-Help Get-TransportRule -Full
Open →
Microsoft 365
Get-AcceptedDomain — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-AcceptedDomain — Basic Usage.

Get-Help Get-AcceptedDomain -Full
Open →
Microsoft 365
Get-DistributionGroup — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-DistributionGroup — Basic Usage.

Get-Help Get-DistributionGroup -Full
Open →
Microsoft 365
Get-DistributionGroupMember — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-DistributionGroupMember — Basic Usage.

Get-Help Get-DistributionGroupMember -Full
Open →
Microsoft 365
Add-DistributionGroupMember — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Add-DistributionGroupMember — Basic Usage.

Get-Help Add-DistributionGroupMember -Full
Open →
Microsoft 365
Get-MobileDevice — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MobileDevice — Basic Usage.

Get-Help Get-MobileDevice -Full
Open →
Microsoft 365
Get-MailboxStatistics — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxStatistics — Basic Usage.

Get-Help Get-MailboxStatistics -Full
Open →
Microsoft 365
Get-MailboxFolderStatistics — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics — Basic Usage.

Get-Help Get-MailboxFolderStatistics -Full
Open →
Microsoft 365
Set-Mailbox — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Set-Mailbox — Basic Usage.

Get-Help Set-Mailbox -Full
Open →
Microsoft 365
New-Mailbox — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for New-Mailbox — Basic Usage.

Get-Help New-Mailbox -Full
Open →
Microsoft 365
Get-OrganizationConfig — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-OrganizationConfig — Basic Usage.

Get-Help Get-OrganizationConfig -Full
Open →
Microsoft 365
Connect-ExchangeOnline — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Connect-ExchangeOnline — Export Results.

Get-Help Connect-ExchangeOnline -Full
Open →
Microsoft 365
Get-EXOMailbox — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-EXOMailbox — Export Results.

Get-Help Get-EXOMailbox -Full
Open →
Microsoft 365
Get-Mailbox — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Mailbox — Export Results.

Get-Help Get-Mailbox -Full
Open →
Microsoft 365
Get-MailboxPermission — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxPermission — Export Results.

Get-Help Get-MailboxPermission -Full
Open →
Microsoft 365
Add-MailboxPermission — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Add-MailboxPermission — Export Results.

Get-Help Add-MailboxPermission -Full
Open →
Microsoft 365
Remove-MailboxPermission — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Remove-MailboxPermission — Export Results.

Get-Help Remove-MailboxPermission -Full
Open →
Microsoft 365
Get-RecipientPermission — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-RecipientPermission — Export Results.

Get-Help Get-RecipientPermission -Full
Open →
Microsoft 365
Add-RecipientPermission — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Add-RecipientPermission — Export Results.

Get-Help Add-RecipientPermission -Full
Open →
Microsoft 365
Get-MessageTraceV2 — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MessageTraceV2 — Export Results.

Get-Help Get-MessageTraceV2 -Full
Open →
Microsoft 365
Get-TransportRule — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-TransportRule — Export Results.

Get-Help Get-TransportRule -Full
Open →
Microsoft 365
Get-AcceptedDomain — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-AcceptedDomain — Export Results.

Get-Help Get-AcceptedDomain -Full
Open →
Microsoft 365
Get-DistributionGroup — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-DistributionGroup — Export Results.

Get-Help Get-DistributionGroup -Full
Open →
Microsoft 365
Get-DistributionGroupMember — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-DistributionGroupMember — Export Results.

Get-Help Get-DistributionGroupMember -Full
Open →
Microsoft 365
Add-DistributionGroupMember — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Add-DistributionGroupMember — Export Results.

Get-Help Add-DistributionGroupMember -Full
Open →
Microsoft 365
Get-MobileDevice — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MobileDevice — Export Results.

Get-Help Get-MobileDevice -Full
Open →
Microsoft 365
Get-MailboxStatistics — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxStatistics — Export Results.

Get-Help Get-MailboxStatistics -Full
Open →
Microsoft 365
Get-MailboxFolderStatistics — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics — Export Results.

Get-Help Get-MailboxFolderStatistics -Full
Open →
Microsoft 365
Set-Mailbox — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Set-Mailbox — Export Results.

Get-Help Set-Mailbox -Full
Open →
Microsoft 365
New-Mailbox — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for New-Mailbox — Export Results.

Get-Help New-Mailbox -Full
Open →
Microsoft 365
Get-OrganizationConfig — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-OrganizationConfig — Export Results.

Get-Help Get-OrganizationConfig -Full
Open →
Microsoft 365
Connect-ExchangeOnline — Save output

Save standard output and errors to a text file. Base task: Connect to Exchange Online PowerShell.

Connect-ExchangeOnline > command-results.txt 2>&1
Open →
Microsoft 365
Connect-ExchangeOnline — Display and save output

Display output while saving it to a file. Base task: Connect to Exchange Online PowerShell.

Connect-ExchangeOnline 2>&1 | tee command-results.txt
Open →
Microsoft 365
Connect-ExchangeOnline — Measure execution time

Measure the command execution time. Base task: Connect to Exchange Online PowerShell.

time Connect-ExchangeOnline
Open →
Microsoft 365
Connect-ExchangeOnline — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Connect to Exchange Online PowerShell.

watch -n 5 'Connect-ExchangeOnline'
Open →
Microsoft 365
Connect-ExchangeOnline — Run with timestamp

Print a timestamp immediately before running the command. Base task: Connect to Exchange Online PowerShell.

date --iso-8601=seconds; Connect-ExchangeOnline
Open →
Microsoft 365
Connect-ExchangeOnline — Run in background

Run the command in the background and log its output. Base task: Connect to Exchange Online PowerShell.

nohup sh -c 'Connect-ExchangeOnline' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-EXOMailbox — Save output

Save standard output and errors to a text file. Base task: List Exchange Online mailboxes.

Get-EXOMailbox -ResultSize Unlimited > command-results.txt 2>&1
Open →
Microsoft 365
Get-EXOMailbox — Display and save output

Display output while saving it to a file. Base task: List Exchange Online mailboxes.

Get-EXOMailbox -ResultSize Unlimited 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-EXOMailbox — Measure execution time

Measure the command execution time. Base task: List Exchange Online mailboxes.

time Get-EXOMailbox -ResultSize Unlimited
Open →
Microsoft 365
Get-EXOMailbox — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List Exchange Online mailboxes.

watch -n 5 'Get-EXOMailbox -ResultSize Unlimited'
Open →
Microsoft 365
Get-EXOMailbox — Run with timestamp

Print a timestamp immediately before running the command. Base task: List Exchange Online mailboxes.

date --iso-8601=seconds; Get-EXOMailbox -ResultSize Unlimited
Open →
Microsoft 365
Get-EXOMailbox — Run in background

Run the command in the background and log its output. Base task: List Exchange Online mailboxes.

nohup sh -c 'Get-EXOMailbox -ResultSize Unlimited' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-Mailbox — Save output

Save standard output and errors to a text file. Base task: List Exchange Online mailboxes with the traditional cmdlet.

Get-Mailbox -ResultSize Unlimited > command-results.txt 2>&1
Open →
Microsoft 365
Get-Mailbox — Display and save output

Display output while saving it to a file. Base task: List Exchange Online mailboxes with the traditional cmdlet.

Get-Mailbox -ResultSize Unlimited 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-Mailbox — Measure execution time

Measure the command execution time. Base task: List Exchange Online mailboxes with the traditional cmdlet.

time Get-Mailbox -ResultSize Unlimited
Open →
Microsoft 365
Get-Mailbox — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List Exchange Online mailboxes with the traditional cmdlet.

watch -n 5 'Get-Mailbox -ResultSize Unlimited'
Open →
Microsoft 365
Get-Mailbox — Run with timestamp

Print a timestamp immediately before running the command. Base task: List Exchange Online mailboxes with the traditional cmdlet.

date --iso-8601=seconds; Get-Mailbox -ResultSize Unlimited
Open →
Microsoft 365
Get-Mailbox — Run in background

Run the command in the background and log its output. Base task: List Exchange Online mailboxes with the traditional cmdlet.

nohup sh -c 'Get-Mailbox -ResultSize Unlimited' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxPermission — Save output

Save standard output and errors to a text file. Base task: Display mailbox permissions.

Get-MailboxPermission user@contoso.com > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxPermission — Display and save output

Display output while saving it to a file. Base task: Display mailbox permissions.

Get-MailboxPermission user@contoso.com 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxPermission — Measure execution time

Measure the command execution time. Base task: Display mailbox permissions.

time Get-MailboxPermission user@contoso.com
Open →
Microsoft 365
Get-MailboxPermission — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display mailbox permissions.

watch -n 5 'Get-MailboxPermission user@contoso.com'
Open →
Microsoft 365
Get-MailboxPermission — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display mailbox permissions.

date --iso-8601=seconds; Get-MailboxPermission user@contoso.com
Open →
Microsoft 365
Get-MailboxPermission — Run in background

Run the command in the background and log its output. Base task: Display mailbox permissions.

nohup sh -c 'Get-MailboxPermission user@contoso.com' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-MailboxPermission — Save output

Save standard output and errors to a text file. Base task: Grant full mailbox access.

Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true > command-results.txt 2>&1
Open →
Microsoft 365
Add-MailboxPermission — Display and save output

Display output while saving it to a file. Base task: Grant full mailbox access.

Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-MailboxPermission — Measure execution time

Measure the command execution time. Base task: Grant full mailbox access.

time Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true
Open →
Microsoft 365
Add-MailboxPermission — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Grant full mailbox access.

watch -n 5 'Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true'
Open →
Microsoft 365
Add-MailboxPermission — Run with timestamp

Print a timestamp immediately before running the command. Base task: Grant full mailbox access.

date --iso-8601=seconds; Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true
Open →
Microsoft 365
Add-MailboxPermission — Run in background

Run the command in the background and log its output. Base task: Grant full mailbox access.

nohup sh -c 'Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true' > command-results.log 2>&1 &
Open →
Microsoft 365
Remove-MailboxPermission — Save output

Save standard output and errors to a text file. Base task: Remove full mailbox access.

Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false > command-results.txt 2>&1
Open →
Microsoft 365
Remove-MailboxPermission — Display and save output

Display output while saving it to a file. Base task: Remove full mailbox access.

Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false 2>&1 | tee command-results.txt
Open →
Microsoft 365
Remove-MailboxPermission — Measure execution time

Measure the command execution time. Base task: Remove full mailbox access.

time Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false
Open →
Microsoft 365
Remove-MailboxPermission — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Remove full mailbox access.

watch -n 5 'Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false'
Open →
Microsoft 365
Remove-MailboxPermission — Run with timestamp

Print a timestamp immediately before running the command. Base task: Remove full mailbox access.

date --iso-8601=seconds; Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false
Open →
Microsoft 365
Remove-MailboxPermission — Run in background

Run the command in the background and log its output. Base task: Remove full mailbox access.

nohup sh -c 'Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-RecipientPermission — Save output

Save standard output and errors to a text file. Base task: Display Send As permissions.

Get-RecipientPermission shared@contoso.com > command-results.txt 2>&1
Open →
Microsoft 365
Get-RecipientPermission — Display and save output

Display output while saving it to a file. Base task: Display Send As permissions.

Get-RecipientPermission shared@contoso.com 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-RecipientPermission — Measure execution time

Measure the command execution time. Base task: Display Send As permissions.

time Get-RecipientPermission shared@contoso.com
Open →
Microsoft 365
Get-RecipientPermission — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display Send As permissions.

watch -n 5 'Get-RecipientPermission shared@contoso.com'
Open →
Microsoft 365
Get-RecipientPermission — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display Send As permissions.

date --iso-8601=seconds; Get-RecipientPermission shared@contoso.com
Open →
Microsoft 365
Get-RecipientPermission — Run in background

Run the command in the background and log its output. Base task: Display Send As permissions.

nohup sh -c 'Get-RecipientPermission shared@contoso.com' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-RecipientPermission — Save output

Save standard output and errors to a text file. Base task: Grant Send As permission.

Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false > command-results.txt 2>&1
Open →
Microsoft 365
Add-RecipientPermission — Display and save output

Display output while saving it to a file. Base task: Grant Send As permission.

Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-RecipientPermission — Measure execution time

Measure the command execution time. Base task: Grant Send As permission.

time Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false
Open →
Microsoft 365
Add-RecipientPermission — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Grant Send As permission.

watch -n 5 'Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false'
Open →
Microsoft 365
Add-RecipientPermission — Run with timestamp

Print a timestamp immediately before running the command. Base task: Grant Send As permission.

date --iso-8601=seconds; Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false
Open →
Microsoft 365
Add-RecipientPermission — Run in background

Run the command in the background and log its output. Base task: Grant Send As permission.

nohup sh -c 'Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MessageTraceV2 — Save output

Save standard output and errors to a text file. Base task: Trace recent Exchange Online messages.

Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) > command-results.txt 2>&1
Open →
Microsoft 365
Get-MessageTraceV2 — Display and save output

Display output while saving it to a file. Base task: Trace recent Exchange Online messages.

Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MessageTraceV2 — Measure execution time

Measure the command execution time. Base task: Trace recent Exchange Online messages.

time Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date)
Open →
Microsoft 365
Get-MessageTraceV2 — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Trace recent Exchange Online messages.

watch -n 5 'Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date)'
Open →
Microsoft 365
Get-MessageTraceV2 — Run with timestamp

Print a timestamp immediately before running the command. Base task: Trace recent Exchange Online messages.

date --iso-8601=seconds; Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date)
Open →
Microsoft 365
Get-MessageTraceV2 — Run in background

Run the command in the background and log its output. Base task: Trace recent Exchange Online messages.

nohup sh -c 'Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date)' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-TransportRule — Save output

Save standard output and errors to a text file. Base task: List Exchange Online mail flow rules.

Get-TransportRule > command-results.txt 2>&1
Open →
Microsoft 365
Get-TransportRule — Display and save output

Display output while saving it to a file. Base task: List Exchange Online mail flow rules.

Get-TransportRule 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-TransportRule — Measure execution time

Measure the command execution time. Base task: List Exchange Online mail flow rules.

time Get-TransportRule
Open →
Microsoft 365
Get-TransportRule — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List Exchange Online mail flow rules.

watch -n 5 'Get-TransportRule'
Open →
Microsoft 365
Get-TransportRule — Run with timestamp

Print a timestamp immediately before running the command. Base task: List Exchange Online mail flow rules.

date --iso-8601=seconds; Get-TransportRule
Open →
Microsoft 365
Get-TransportRule — Run in background

Run the command in the background and log its output. Base task: List Exchange Online mail flow rules.

nohup sh -c 'Get-TransportRule' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-AcceptedDomain — Save output

Save standard output and errors to a text file. Base task: List accepted domains in Exchange Online.

Get-AcceptedDomain > command-results.txt 2>&1
Open →
Microsoft 365
Get-AcceptedDomain — Display and save output

Display output while saving it to a file. Base task: List accepted domains in Exchange Online.

Get-AcceptedDomain 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-AcceptedDomain — Measure execution time

Measure the command execution time. Base task: List accepted domains in Exchange Online.

time Get-AcceptedDomain
Open →
Microsoft 365
Get-AcceptedDomain — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List accepted domains in Exchange Online.

watch -n 5 'Get-AcceptedDomain'
Open →
Microsoft 365
Get-AcceptedDomain — Run with timestamp

Print a timestamp immediately before running the command. Base task: List accepted domains in Exchange Online.

date --iso-8601=seconds; Get-AcceptedDomain
Open →
Microsoft 365
Get-AcceptedDomain — Run in background

Run the command in the background and log its output. Base task: List accepted domains in Exchange Online.

nohup sh -c 'Get-AcceptedDomain' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-DistributionGroup — Save output

Save standard output and errors to a text file. Base task: List distribution groups.

Get-DistributionGroup -ResultSize Unlimited > command-results.txt 2>&1
Open →
Microsoft 365
Get-DistributionGroup — Display and save output

Display output while saving it to a file. Base task: List distribution groups.

Get-DistributionGroup -ResultSize Unlimited 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-DistributionGroup — Measure execution time

Measure the command execution time. Base task: List distribution groups.

time Get-DistributionGroup -ResultSize Unlimited
Open →
Microsoft 365
Get-DistributionGroup — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List distribution groups.

watch -n 5 'Get-DistributionGroup -ResultSize Unlimited'
Open →
Microsoft 365
Get-DistributionGroup — Run with timestamp

Print a timestamp immediately before running the command. Base task: List distribution groups.

date --iso-8601=seconds; Get-DistributionGroup -ResultSize Unlimited
Open →
Microsoft 365
Get-DistributionGroup — Run in background

Run the command in the background and log its output. Base task: List distribution groups.

nohup sh -c 'Get-DistributionGroup -ResultSize Unlimited' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-DistributionGroupMember — Save output

Save standard output and errors to a text file. Base task: List distribution group members.

Get-DistributionGroupMember "All Staff" > command-results.txt 2>&1
Open →
Microsoft 365
Get-DistributionGroupMember — Display and save output

Display output while saving it to a file. Base task: List distribution group members.

Get-DistributionGroupMember "All Staff" 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-DistributionGroupMember — Measure execution time

Measure the command execution time. Base task: List distribution group members.

time Get-DistributionGroupMember "All Staff"
Open →
Microsoft 365
Get-DistributionGroupMember — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List distribution group members.

watch -n 5 'Get-DistributionGroupMember "All Staff"'
Open →
Microsoft 365
Get-DistributionGroupMember — Run with timestamp

Print a timestamp immediately before running the command. Base task: List distribution group members.

date --iso-8601=seconds; Get-DistributionGroupMember "All Staff"
Open →
Microsoft 365
Get-DistributionGroupMember — Run in background

Run the command in the background and log its output. Base task: List distribution group members.

nohup sh -c 'Get-DistributionGroupMember "All Staff"' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-DistributionGroupMember — Save output

Save standard output and errors to a text file. Base task: Add a distribution group member.

Add-DistributionGroupMember "All Staff" -Member user@contoso.com > command-results.txt 2>&1
Open →
Microsoft 365
Add-DistributionGroupMember — Display and save output

Display output while saving it to a file. Base task: Add a distribution group member.

Add-DistributionGroupMember "All Staff" -Member user@contoso.com 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-DistributionGroupMember — Measure execution time

Measure the command execution time. Base task: Add a distribution group member.

time Add-DistributionGroupMember "All Staff" -Member user@contoso.com
Open →
Microsoft 365
Add-DistributionGroupMember — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Add a distribution group member.

watch -n 5 'Add-DistributionGroupMember "All Staff" -Member user@contoso.com'
Open →
Microsoft 365
Add-DistributionGroupMember — Run with timestamp

Print a timestamp immediately before running the command. Base task: Add a distribution group member.

date --iso-8601=seconds; Add-DistributionGroupMember "All Staff" -Member user@contoso.com
Open →
Microsoft 365
Add-DistributionGroupMember — Run in background

Run the command in the background and log its output. Base task: Add a distribution group member.

nohup sh -c 'Add-DistributionGroupMember "All Staff" -Member user@contoso.com' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MobileDevice — Save output

Save standard output and errors to a text file. Base task: List mobile devices associated with a mailbox.

Get-MobileDevice -Mailbox user@contoso.com > command-results.txt 2>&1
Open →
Microsoft 365
Get-MobileDevice — Display and save output

Display output while saving it to a file. Base task: List mobile devices associated with a mailbox.

Get-MobileDevice -Mailbox user@contoso.com 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MobileDevice — Measure execution time

Measure the command execution time. Base task: List mobile devices associated with a mailbox.

time Get-MobileDevice -Mailbox user@contoso.com
Open →
Microsoft 365
Get-MobileDevice — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List mobile devices associated with a mailbox.

watch -n 5 'Get-MobileDevice -Mailbox user@contoso.com'
Open →
Microsoft 365
Get-MobileDevice — Run with timestamp

Print a timestamp immediately before running the command. Base task: List mobile devices associated with a mailbox.

date --iso-8601=seconds; Get-MobileDevice -Mailbox user@contoso.com
Open →
Microsoft 365
Get-MobileDevice — Run in background

Run the command in the background and log its output. Base task: List mobile devices associated with a mailbox.

nohup sh -c 'Get-MobileDevice -Mailbox user@contoso.com' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxStatistics — Save output

Save standard output and errors to a text file. Base task: Display mailbox size and logon statistics.

Get-MailboxStatistics user@contoso.com > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxStatistics — Display and save output

Display output while saving it to a file. Base task: Display mailbox size and logon statistics.

Get-MailboxStatistics user@contoso.com 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxStatistics — Measure execution time

Measure the command execution time. Base task: Display mailbox size and logon statistics.

time Get-MailboxStatistics user@contoso.com
Open →
Microsoft 365
Get-MailboxStatistics — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display mailbox size and logon statistics.

watch -n 5 'Get-MailboxStatistics user@contoso.com'
Open →
Microsoft 365
Get-MailboxStatistics — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display mailbox size and logon statistics.

date --iso-8601=seconds; Get-MailboxStatistics user@contoso.com
Open →
Microsoft 365
Get-MailboxStatistics — Run in background

Run the command in the background and log its output. Base task: Display mailbox size and logon statistics.

nohup sh -c 'Get-MailboxStatistics user@contoso.com' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxFolderStatistics — Save output

Save standard output and errors to a text file. Base task: Display mailbox folder sizes.

Get-MailboxFolderStatistics user@contoso.com > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxFolderStatistics — Display and save output

Display output while saving it to a file. Base task: Display mailbox folder sizes.

Get-MailboxFolderStatistics user@contoso.com 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxFolderStatistics — Measure execution time

Measure the command execution time. Base task: Display mailbox folder sizes.

time Get-MailboxFolderStatistics user@contoso.com
Open →
Microsoft 365
Get-MailboxFolderStatistics — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display mailbox folder sizes.

watch -n 5 'Get-MailboxFolderStatistics user@contoso.com'
Open →
Microsoft 365
Get-MailboxFolderStatistics — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display mailbox folder sizes.

date --iso-8601=seconds; Get-MailboxFolderStatistics user@contoso.com
Open →
Microsoft 365
Get-MailboxFolderStatistics — Run in background

Run the command in the background and log its output. Base task: Display mailbox folder sizes.

nohup sh -c 'Get-MailboxFolderStatistics user@contoso.com' > command-results.log 2>&1 &
Open →
Microsoft 365
Set-Mailbox — Save output

Save standard output and errors to a text file. Base task: Update mailbox settings.

Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true > command-results.txt 2>&1
Open →
Microsoft 365
Set-Mailbox — Display and save output

Display output while saving it to a file. Base task: Update mailbox settings.

Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true 2>&1 | tee command-results.txt
Open →
Microsoft 365
Set-Mailbox — Measure execution time

Measure the command execution time. Base task: Update mailbox settings.

time Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true
Open →
Microsoft 365
Set-Mailbox — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Update mailbox settings.

watch -n 5 'Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true'
Open →
Microsoft 365
Set-Mailbox — Run with timestamp

Print a timestamp immediately before running the command. Base task: Update mailbox settings.

date --iso-8601=seconds; Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true
Open →
Microsoft 365
Set-Mailbox — Run in background

Run the command in the background and log its output. Base task: Update mailbox settings.

nohup sh -c 'Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true' > command-results.log 2>&1 &
Open →
Microsoft 365
New-Mailbox — Save output

Save standard output and errors to a text file. Base task: Create a shared mailbox.

New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com > command-results.txt 2>&1
Open →
Microsoft 365
New-Mailbox — Display and save output

Display output while saving it to a file. Base task: Create a shared mailbox.

New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com 2>&1 | tee command-results.txt
Open →
Microsoft 365
New-Mailbox — Measure execution time

Measure the command execution time. Base task: Create a shared mailbox.

time New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com
Open →
Microsoft 365
New-Mailbox — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create a shared mailbox.

watch -n 5 'New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com'
Open →
Microsoft 365
New-Mailbox — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create a shared mailbox.

date --iso-8601=seconds; New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com
Open →
Microsoft 365
New-Mailbox — Run in background

Run the command in the background and log its output. Base task: Create a shared mailbox.

nohup sh -c 'New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-OrganizationConfig — Save output

Save standard output and errors to a text file. Base task: Display Exchange Online organization configuration.

Get-OrganizationConfig > command-results.txt 2>&1
Open →
Microsoft 365
Get-OrganizationConfig — Display and save output

Display output while saving it to a file. Base task: Display Exchange Online organization configuration.

Get-OrganizationConfig 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-OrganizationConfig — Measure execution time

Measure the command execution time. Base task: Display Exchange Online organization configuration.

time Get-OrganizationConfig
Open →
Microsoft 365
Get-OrganizationConfig — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display Exchange Online organization configuration.

watch -n 5 'Get-OrganizationConfig'
Open →
Microsoft 365
Get-OrganizationConfig — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display Exchange Online organization configuration.

date --iso-8601=seconds; Get-OrganizationConfig
Open →
Microsoft 365
Get-OrganizationConfig — Run in background

Run the command in the background and log its output. Base task: Display Exchange Online organization configuration.

nohup sh -c 'Get-OrganizationConfig' > command-results.log 2>&1 &
Open →
Microsoft 365
Connect-ExchangeOnline — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Connect-ExchangeOnline for documentation or review.

Connect-ExchangeOnline | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Connect-ExchangeOnline — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Connect-ExchangeOnline for documentation or review.

Connect-ExchangeOnline | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Connect-ExchangeOnline — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Connect-ExchangeOnline for documentation or review.

time Connect-ExchangeOnline | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Connect-ExchangeOnline — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Connect-ExchangeOnline for documentation or review.

watch -n 5 'Connect-ExchangeOnline | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Connect-ExchangeOnline — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Connect-ExchangeOnline for documentation or review.

date --iso-8601=seconds; Connect-ExchangeOnline | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Connect-ExchangeOnline — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Connect-ExchangeOnline for documentation or review.

nohup sh -c 'Connect-ExchangeOnline | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-EXOMailbox — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-EXOMailbox for documentation or review.

Get-EXOMailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-EXOMailbox — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-EXOMailbox for documentation or review.

Get-EXOMailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-EXOMailbox — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-EXOMailbox for documentation or review.

time Get-EXOMailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-EXOMailbox — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-EXOMailbox for documentation or review.

watch -n 5 'Get-EXOMailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-EXOMailbox — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-EXOMailbox for documentation or review.

date --iso-8601=seconds; Get-EXOMailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-EXOMailbox — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-EXOMailbox for documentation or review.

nohup sh -c 'Get-EXOMailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-Mailbox — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-Mailbox for documentation or review.

Get-Mailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-Mailbox — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-Mailbox for documentation or review.

Get-Mailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-Mailbox — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-Mailbox for documentation or review.

time Get-Mailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-Mailbox — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-Mailbox for documentation or review.

watch -n 5 'Get-Mailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-Mailbox — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-Mailbox for documentation or review.

date --iso-8601=seconds; Get-Mailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-Mailbox — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-Mailbox for documentation or review.

nohup sh -c 'Get-Mailbox -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxPermission — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-MailboxPermission for documentation or review.

Get-MailboxPermission user@contoso.com | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxPermission — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-MailboxPermission for documentation or review.

Get-MailboxPermission user@contoso.com | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxPermission — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-MailboxPermission for documentation or review.

time Get-MailboxPermission user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxPermission — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-MailboxPermission for documentation or review.

watch -n 5 'Get-MailboxPermission user@contoso.com | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-MailboxPermission — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-MailboxPermission for documentation or review.

date --iso-8601=seconds; Get-MailboxPermission user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxPermission — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-MailboxPermission for documentation or review.

nohup sh -c 'Get-MailboxPermission user@contoso.com | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-MailboxPermission — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Add-MailboxPermission for documentation or review.

Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Add-MailboxPermission — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Add-MailboxPermission for documentation or review.

Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-MailboxPermission — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Add-MailboxPermission for documentation or review.

time Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-MailboxPermission — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Add-MailboxPermission for documentation or review.

watch -n 5 'Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Add-MailboxPermission — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Add-MailboxPermission for documentation or review.

date --iso-8601=seconds; Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-MailboxPermission — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Add-MailboxPermission for documentation or review.

nohup sh -c 'Add-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -AutoMapping $true | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Remove-MailboxPermission — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Remove-MailboxPermission for documentation or review.

Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Remove-MailboxPermission — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Remove-MailboxPermission for documentation or review.

Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Remove-MailboxPermission — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Remove-MailboxPermission for documentation or review.

time Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Remove-MailboxPermission — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Remove-MailboxPermission for documentation or review.

watch -n 5 'Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Remove-MailboxPermission — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Remove-MailboxPermission for documentation or review.

date --iso-8601=seconds; Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Remove-MailboxPermission — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Remove-MailboxPermission for documentation or review.

nohup sh -c 'Remove-MailboxPermission shared@contoso.com -User user@contoso.com -AccessRights FullAccess -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-RecipientPermission — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-RecipientPermission for documentation or review.

Get-RecipientPermission shared@contoso.com | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-RecipientPermission — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-RecipientPermission for documentation or review.

Get-RecipientPermission shared@contoso.com | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-RecipientPermission — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-RecipientPermission for documentation or review.

time Get-RecipientPermission shared@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-RecipientPermission — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-RecipientPermission for documentation or review.

watch -n 5 'Get-RecipientPermission shared@contoso.com | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-RecipientPermission — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-RecipientPermission for documentation or review.

date --iso-8601=seconds; Get-RecipientPermission shared@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-RecipientPermission — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-RecipientPermission for documentation or review.

nohup sh -c 'Get-RecipientPermission shared@contoso.com | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-RecipientPermission — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Add-RecipientPermission for documentation or review.

Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Add-RecipientPermission — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Add-RecipientPermission for documentation or review.

Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-RecipientPermission — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Add-RecipientPermission for documentation or review.

time Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-RecipientPermission — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Add-RecipientPermission for documentation or review.

watch -n 5 'Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Add-RecipientPermission — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Add-RecipientPermission for documentation or review.

date --iso-8601=seconds; Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-RecipientPermission — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Add-RecipientPermission for documentation or review.

nohup sh -c 'Add-RecipientPermission shared@contoso.com -Trustee user@contoso.com -AccessRights SendAs -Confirm:$false | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MessageTraceV2 — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-MessageTraceV2 for documentation or review.

Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-MessageTraceV2 — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-MessageTraceV2 for documentation or review.

Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MessageTraceV2 — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-MessageTraceV2 for documentation or review.

time Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MessageTraceV2 — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-MessageTraceV2 for documentation or review.

watch -n 5 'Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-MessageTraceV2 — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-MessageTraceV2 for documentation or review.

date --iso-8601=seconds; Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MessageTraceV2 — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-MessageTraceV2 for documentation or review.

nohup sh -c 'Get-MessageTraceV2 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date) | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-TransportRule — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-TransportRule for documentation or review.

Get-TransportRule | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-TransportRule — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-TransportRule for documentation or review.

Get-TransportRule | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-TransportRule — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-TransportRule for documentation or review.

time Get-TransportRule | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-TransportRule — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-TransportRule for documentation or review.

watch -n 5 'Get-TransportRule | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-TransportRule — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-TransportRule for documentation or review.

date --iso-8601=seconds; Get-TransportRule | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-TransportRule — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-TransportRule for documentation or review.

nohup sh -c 'Get-TransportRule | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-AcceptedDomain — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-AcceptedDomain for documentation or review.

Get-AcceptedDomain | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-AcceptedDomain — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-AcceptedDomain for documentation or review.

Get-AcceptedDomain | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-AcceptedDomain — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-AcceptedDomain for documentation or review.

time Get-AcceptedDomain | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-AcceptedDomain — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-AcceptedDomain for documentation or review.

watch -n 5 'Get-AcceptedDomain | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-AcceptedDomain — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-AcceptedDomain for documentation or review.

date --iso-8601=seconds; Get-AcceptedDomain | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-AcceptedDomain — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-AcceptedDomain for documentation or review.

nohup sh -c 'Get-AcceptedDomain | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-DistributionGroup — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-DistributionGroup for documentation or review.

Get-DistributionGroup -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-DistributionGroup — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-DistributionGroup for documentation or review.

Get-DistributionGroup -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-DistributionGroup — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-DistributionGroup for documentation or review.

time Get-DistributionGroup -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-DistributionGroup — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-DistributionGroup for documentation or review.

watch -n 5 'Get-DistributionGroup -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-DistributionGroup — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-DistributionGroup for documentation or review.

date --iso-8601=seconds; Get-DistributionGroup -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-DistributionGroup — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-DistributionGroup for documentation or review.

nohup sh -c 'Get-DistributionGroup -ResultSize Unlimited | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-DistributionGroupMember — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-DistributionGroupMember for documentation or review.

Get-DistributionGroupMember "All Staff" | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-DistributionGroupMember — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-DistributionGroupMember for documentation or review.

Get-DistributionGroupMember "All Staff" | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-DistributionGroupMember — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-DistributionGroupMember for documentation or review.

time Get-DistributionGroupMember "All Staff" | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-DistributionGroupMember — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-DistributionGroupMember for documentation or review.

watch -n 5 'Get-DistributionGroupMember "All Staff" | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-DistributionGroupMember — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-DistributionGroupMember for documentation or review.

date --iso-8601=seconds; Get-DistributionGroupMember "All Staff" | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-DistributionGroupMember — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-DistributionGroupMember for documentation or review.

nohup sh -c 'Get-DistributionGroupMember "All Staff" | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-DistributionGroupMember — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Add-DistributionGroupMember for documentation or review.

Add-DistributionGroupMember "All Staff" -Member user@contoso.com | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Add-DistributionGroupMember — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Add-DistributionGroupMember for documentation or review.

Add-DistributionGroupMember "All Staff" -Member user@contoso.com | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-DistributionGroupMember — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Add-DistributionGroupMember for documentation or review.

time Add-DistributionGroupMember "All Staff" -Member user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-DistributionGroupMember — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Add-DistributionGroupMember for documentation or review.

watch -n 5 'Add-DistributionGroupMember "All Staff" -Member user@contoso.com | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Add-DistributionGroupMember — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Add-DistributionGroupMember for documentation or review.

date --iso-8601=seconds; Add-DistributionGroupMember "All Staff" -Member user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Add-DistributionGroupMember — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Add-DistributionGroupMember for documentation or review.

nohup sh -c 'Add-DistributionGroupMember "All Staff" -Member user@contoso.com | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MobileDevice — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-MobileDevice for documentation or review.

Get-MobileDevice -Mailbox user@contoso.com | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-MobileDevice — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-MobileDevice for documentation or review.

Get-MobileDevice -Mailbox user@contoso.com | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MobileDevice — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-MobileDevice for documentation or review.

time Get-MobileDevice -Mailbox user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MobileDevice — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-MobileDevice for documentation or review.

watch -n 5 'Get-MobileDevice -Mailbox user@contoso.com | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-MobileDevice — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-MobileDevice for documentation or review.

date --iso-8601=seconds; Get-MobileDevice -Mailbox user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MobileDevice — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-MobileDevice for documentation or review.

nohup sh -c 'Get-MobileDevice -Mailbox user@contoso.com | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxStatistics — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-MailboxStatistics for documentation or review.

Get-MailboxStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxStatistics — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-MailboxStatistics for documentation or review.

Get-MailboxStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxStatistics — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-MailboxStatistics for documentation or review.

time Get-MailboxStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxStatistics — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-MailboxStatistics for documentation or review.

watch -n 5 'Get-MailboxStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-MailboxStatistics — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-MailboxStatistics for documentation or review.

date --iso-8601=seconds; Get-MailboxStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxStatistics — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-MailboxStatistics for documentation or review.

nohup sh -c 'Get-MailboxStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxFolderStatistics — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-MailboxFolderStatistics for documentation or review.

Get-MailboxFolderStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxFolderStatistics — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-MailboxFolderStatistics for documentation or review.

Get-MailboxFolderStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxFolderStatistics — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-MailboxFolderStatistics for documentation or review.

time Get-MailboxFolderStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxFolderStatistics — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-MailboxFolderStatistics for documentation or review.

watch -n 5 'Get-MailboxFolderStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-MailboxFolderStatistics — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-MailboxFolderStatistics for documentation or review.

date --iso-8601=seconds; Get-MailboxFolderStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-MailboxFolderStatistics — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-MailboxFolderStatistics for documentation or review.

nohup sh -c 'Get-MailboxFolderStatistics user@contoso.com | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Set-Mailbox — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Set-Mailbox for documentation or review.

Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Set-Mailbox — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Set-Mailbox for documentation or review.

Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Set-Mailbox — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Set-Mailbox for documentation or review.

time Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Set-Mailbox — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Set-Mailbox for documentation or review.

watch -n 5 'Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Set-Mailbox — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Set-Mailbox for documentation or review.

date --iso-8601=seconds; Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Set-Mailbox — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Set-Mailbox for documentation or review.

nohup sh -c 'Set-Mailbox shared@contoso.com -HiddenFromAddressListsEnabled $true | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
New-Mailbox — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of New-Mailbox for documentation or review.

New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
New-Mailbox — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of New-Mailbox for documentation or review.

New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
New-Mailbox — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of New-Mailbox for documentation or review.

time New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
New-Mailbox — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of New-Mailbox for documentation or review.

watch -n 5 'New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
New-Mailbox — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of New-Mailbox for documentation or review.

date --iso-8601=seconds; New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
New-Mailbox — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of New-Mailbox for documentation or review.

nohup sh -c 'New-Mailbox -Shared -Name "Support" -PrimarySmtpAddress support@contoso.com | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-OrganizationConfig — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of Get-OrganizationConfig for documentation or review.

Get-OrganizationConfig | Export-Csv .\output.csv -NoTypeInformation > command-results.txt 2>&1
Open →
Microsoft 365
Get-OrganizationConfig — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of Get-OrganizationConfig for documentation or review.

Get-OrganizationConfig | Export-Csv .\output.csv -NoTypeInformation 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-OrganizationConfig — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of Get-OrganizationConfig for documentation or review.

time Get-OrganizationConfig | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-OrganizationConfig — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of Get-OrganizationConfig for documentation or review.

watch -n 5 'Get-OrganizationConfig | Export-Csv .\output.csv -NoTypeInformation'
Open →
Microsoft 365
Get-OrganizationConfig — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of Get-OrganizationConfig for documentation or review.

date --iso-8601=seconds; Get-OrganizationConfig | Export-Csv .\output.csv -NoTypeInformation
Open →
Microsoft 365
Get-OrganizationConfig — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of Get-OrganizationConfig for documentation or review.

nohup sh -c 'Get-OrganizationConfig | Export-Csv .\output.csv -NoTypeInformation' > command-results.log 2>&1 &
Open →
Microsoft 365
Connect-ExchangeOnline Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Connect-ExchangeOnline.

Get-Help Connect-ExchangeOnline -Full > command-results.txt 2>&1
Open →
Microsoft 365
Connect-ExchangeOnline Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Connect-ExchangeOnline.

Get-Help Connect-ExchangeOnline -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Connect-ExchangeOnline Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Connect-ExchangeOnline.

time Get-Help Connect-ExchangeOnline -Full
Open →
Microsoft 365
Connect-ExchangeOnline Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Connect-ExchangeOnline.

watch -n 5 'Get-Help Connect-ExchangeOnline -Full'
Open →
Microsoft 365
Connect-ExchangeOnline Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Connect-ExchangeOnline.

date --iso-8601=seconds; Get-Help Connect-ExchangeOnline -Full
Open →
Microsoft 365
Connect-ExchangeOnline Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Connect-ExchangeOnline.

nohup sh -c 'Get-Help Connect-ExchangeOnline -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-EXOMailbox Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-EXOMailbox.

Get-Help Get-EXOMailbox -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-EXOMailbox Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-EXOMailbox.

Get-Help Get-EXOMailbox -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-EXOMailbox Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-EXOMailbox.

time Get-Help Get-EXOMailbox -Full
Open →
Microsoft 365
Get-EXOMailbox Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-EXOMailbox.

watch -n 5 'Get-Help Get-EXOMailbox -Full'
Open →
Microsoft 365
Get-EXOMailbox Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-EXOMailbox.

date --iso-8601=seconds; Get-Help Get-EXOMailbox -Full
Open →
Microsoft 365
Get-EXOMailbox Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-EXOMailbox.

nohup sh -c 'Get-Help Get-EXOMailbox -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-Mailbox Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-Mailbox.

Get-Help Get-Mailbox -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-Mailbox Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-Mailbox.

Get-Help Get-Mailbox -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-Mailbox Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-Mailbox.

time Get-Help Get-Mailbox -Full
Open →
Microsoft 365
Get-Mailbox Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-Mailbox.

watch -n 5 'Get-Help Get-Mailbox -Full'
Open →
Microsoft 365
Get-Mailbox Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-Mailbox.

date --iso-8601=seconds; Get-Help Get-Mailbox -Full
Open →
Microsoft 365
Get-Mailbox Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-Mailbox.

nohup sh -c 'Get-Help Get-Mailbox -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxPermission Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-MailboxPermission.

Get-Help Get-MailboxPermission -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxPermission Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-MailboxPermission.

Get-Help Get-MailboxPermission -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxPermission Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MailboxPermission.

time Get-Help Get-MailboxPermission -Full
Open →
Microsoft 365
Get-MailboxPermission Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-MailboxPermission.

watch -n 5 'Get-Help Get-MailboxPermission -Full'
Open →
Microsoft 365
Get-MailboxPermission Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-MailboxPermission.

date --iso-8601=seconds; Get-Help Get-MailboxPermission -Full
Open →
Microsoft 365
Get-MailboxPermission Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-MailboxPermission.

nohup sh -c 'Get-Help Get-MailboxPermission -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-MailboxPermission Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Add-MailboxPermission.

Get-Help Add-MailboxPermission -Full > command-results.txt 2>&1
Open →
Microsoft 365
Add-MailboxPermission Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Add-MailboxPermission.

Get-Help Add-MailboxPermission -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-MailboxPermission Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Add-MailboxPermission.

time Get-Help Add-MailboxPermission -Full
Open →
Microsoft 365
Add-MailboxPermission Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Add-MailboxPermission.

watch -n 5 'Get-Help Add-MailboxPermission -Full'
Open →
Microsoft 365
Add-MailboxPermission Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Add-MailboxPermission.

date --iso-8601=seconds; Get-Help Add-MailboxPermission -Full
Open →
Microsoft 365
Add-MailboxPermission Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Add-MailboxPermission.

nohup sh -c 'Get-Help Add-MailboxPermission -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Remove-MailboxPermission Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Remove-MailboxPermission.

Get-Help Remove-MailboxPermission -Full > command-results.txt 2>&1
Open →
Microsoft 365
Remove-MailboxPermission Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Remove-MailboxPermission.

Get-Help Remove-MailboxPermission -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Remove-MailboxPermission Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Remove-MailboxPermission.

time Get-Help Remove-MailboxPermission -Full
Open →
Microsoft 365
Remove-MailboxPermission Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Remove-MailboxPermission.

watch -n 5 'Get-Help Remove-MailboxPermission -Full'
Open →
Microsoft 365
Remove-MailboxPermission Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Remove-MailboxPermission.

date --iso-8601=seconds; Get-Help Remove-MailboxPermission -Full
Open →
Microsoft 365
Remove-MailboxPermission Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Remove-MailboxPermission.

nohup sh -c 'Get-Help Remove-MailboxPermission -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-RecipientPermission Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-RecipientPermission.

Get-Help Get-RecipientPermission -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-RecipientPermission Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-RecipientPermission.

Get-Help Get-RecipientPermission -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-RecipientPermission Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-RecipientPermission.

time Get-Help Get-RecipientPermission -Full
Open →
Microsoft 365
Get-RecipientPermission Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-RecipientPermission.

watch -n 5 'Get-Help Get-RecipientPermission -Full'
Open →
Microsoft 365
Get-RecipientPermission Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-RecipientPermission.

date --iso-8601=seconds; Get-Help Get-RecipientPermission -Full
Open →
Microsoft 365
Get-RecipientPermission Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-RecipientPermission.

nohup sh -c 'Get-Help Get-RecipientPermission -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-RecipientPermission Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Add-RecipientPermission.

Get-Help Add-RecipientPermission -Full > command-results.txt 2>&1
Open →
Microsoft 365
Add-RecipientPermission Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Add-RecipientPermission.

Get-Help Add-RecipientPermission -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-RecipientPermission Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Add-RecipientPermission.

time Get-Help Add-RecipientPermission -Full
Open →
Microsoft 365
Add-RecipientPermission Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Add-RecipientPermission.

watch -n 5 'Get-Help Add-RecipientPermission -Full'
Open →
Microsoft 365
Add-RecipientPermission Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Add-RecipientPermission.

date --iso-8601=seconds; Get-Help Add-RecipientPermission -Full
Open →
Microsoft 365
Add-RecipientPermission Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Add-RecipientPermission.

nohup sh -c 'Get-Help Add-RecipientPermission -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MessageTraceV2 Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-MessageTraceV2.

Get-Help Get-MessageTraceV2 -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-MessageTraceV2 Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-MessageTraceV2.

Get-Help Get-MessageTraceV2 -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MessageTraceV2 Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MessageTraceV2.

time Get-Help Get-MessageTraceV2 -Full
Open →
Microsoft 365
Get-MessageTraceV2 Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-MessageTraceV2.

watch -n 5 'Get-Help Get-MessageTraceV2 -Full'
Open →
Microsoft 365
Get-MessageTraceV2 Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-MessageTraceV2.

date --iso-8601=seconds; Get-Help Get-MessageTraceV2 -Full
Open →
Microsoft 365
Get-MessageTraceV2 Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-MessageTraceV2.

nohup sh -c 'Get-Help Get-MessageTraceV2 -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-TransportRule Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-TransportRule.

Get-Help Get-TransportRule -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-TransportRule Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-TransportRule.

Get-Help Get-TransportRule -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-TransportRule Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-TransportRule.

time Get-Help Get-TransportRule -Full
Open →
Microsoft 365
Get-TransportRule Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-TransportRule.

watch -n 5 'Get-Help Get-TransportRule -Full'
Open →
Microsoft 365
Get-TransportRule Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-TransportRule.

date --iso-8601=seconds; Get-Help Get-TransportRule -Full
Open →
Microsoft 365
Get-TransportRule Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-TransportRule.

nohup sh -c 'Get-Help Get-TransportRule -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-AcceptedDomain Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-AcceptedDomain.

Get-Help Get-AcceptedDomain -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-AcceptedDomain Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-AcceptedDomain.

Get-Help Get-AcceptedDomain -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-AcceptedDomain Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-AcceptedDomain.

time Get-Help Get-AcceptedDomain -Full
Open →
Microsoft 365
Get-AcceptedDomain Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-AcceptedDomain.

watch -n 5 'Get-Help Get-AcceptedDomain -Full'
Open →
Microsoft 365
Get-AcceptedDomain Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-AcceptedDomain.

date --iso-8601=seconds; Get-Help Get-AcceptedDomain -Full
Open →
Microsoft 365
Get-AcceptedDomain Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-AcceptedDomain.

nohup sh -c 'Get-Help Get-AcceptedDomain -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-DistributionGroup Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroup.

Get-Help Get-DistributionGroup -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-DistributionGroup Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroup.

Get-Help Get-DistributionGroup -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-DistributionGroup Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroup.

time Get-Help Get-DistributionGroup -Full
Open →
Microsoft 365
Get-DistributionGroup Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroup.

watch -n 5 'Get-Help Get-DistributionGroup -Full'
Open →
Microsoft 365
Get-DistributionGroup Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroup.

date --iso-8601=seconds; Get-Help Get-DistributionGroup -Full
Open →
Microsoft 365
Get-DistributionGroup Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroup.

nohup sh -c 'Get-Help Get-DistributionGroup -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-DistributionGroupMember Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroupMember.

Get-Help Get-DistributionGroupMember -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-DistributionGroupMember Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroupMember.

Get-Help Get-DistributionGroupMember -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-DistributionGroupMember Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroupMember.

time Get-Help Get-DistributionGroupMember -Full
Open →
Microsoft 365
Get-DistributionGroupMember Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroupMember.

watch -n 5 'Get-Help Get-DistributionGroupMember -Full'
Open →
Microsoft 365
Get-DistributionGroupMember Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroupMember.

date --iso-8601=seconds; Get-Help Get-DistributionGroupMember -Full
Open →
Microsoft 365
Get-DistributionGroupMember Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-DistributionGroupMember.

nohup sh -c 'Get-Help Get-DistributionGroupMember -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Add-DistributionGroupMember Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Add-DistributionGroupMember.

Get-Help Add-DistributionGroupMember -Full > command-results.txt 2>&1
Open →
Microsoft 365
Add-DistributionGroupMember Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Add-DistributionGroupMember.

Get-Help Add-DistributionGroupMember -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Add-DistributionGroupMember Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Add-DistributionGroupMember.

time Get-Help Add-DistributionGroupMember -Full
Open →
Microsoft 365
Add-DistributionGroupMember Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Add-DistributionGroupMember.

watch -n 5 'Get-Help Add-DistributionGroupMember -Full'
Open →
Microsoft 365
Add-DistributionGroupMember Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Add-DistributionGroupMember.

date --iso-8601=seconds; Get-Help Add-DistributionGroupMember -Full
Open →
Microsoft 365
Add-DistributionGroupMember Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Add-DistributionGroupMember.

nohup sh -c 'Get-Help Add-DistributionGroupMember -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MobileDevice Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-MobileDevice.

Get-Help Get-MobileDevice -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-MobileDevice Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-MobileDevice.

Get-Help Get-MobileDevice -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MobileDevice Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MobileDevice.

time Get-Help Get-MobileDevice -Full
Open →
Microsoft 365
Get-MobileDevice Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-MobileDevice.

watch -n 5 'Get-Help Get-MobileDevice -Full'
Open →
Microsoft 365
Get-MobileDevice Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-MobileDevice.

date --iso-8601=seconds; Get-Help Get-MobileDevice -Full
Open →
Microsoft 365
Get-MobileDevice Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-MobileDevice.

nohup sh -c 'Get-Help Get-MobileDevice -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxStatistics Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-MailboxStatistics.

Get-Help Get-MailboxStatistics -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxStatistics Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-MailboxStatistics.

Get-Help Get-MailboxStatistics -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxStatistics Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MailboxStatistics.

time Get-Help Get-MailboxStatistics -Full
Open →
Microsoft 365
Get-MailboxStatistics Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-MailboxStatistics.

watch -n 5 'Get-Help Get-MailboxStatistics -Full'
Open →
Microsoft 365
Get-MailboxStatistics Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-MailboxStatistics.

date --iso-8601=seconds; Get-Help Get-MailboxStatistics -Full
Open →
Microsoft 365
Get-MailboxStatistics Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-MailboxStatistics.

nohup sh -c 'Get-Help Get-MailboxStatistics -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-MailboxFolderStatistics Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics.

Get-Help Get-MailboxFolderStatistics -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-MailboxFolderStatistics Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics.

Get-Help Get-MailboxFolderStatistics -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-MailboxFolderStatistics Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics.

time Get-Help Get-MailboxFolderStatistics -Full
Open →
Microsoft 365
Get-MailboxFolderStatistics Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics.

watch -n 5 'Get-Help Get-MailboxFolderStatistics -Full'
Open →
Microsoft 365
Get-MailboxFolderStatistics Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics.

date --iso-8601=seconds; Get-Help Get-MailboxFolderStatistics -Full
Open →
Microsoft 365
Get-MailboxFolderStatistics Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-MailboxFolderStatistics.

nohup sh -c 'Get-Help Get-MailboxFolderStatistics -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Set-Mailbox Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Set-Mailbox.

Get-Help Set-Mailbox -Full > command-results.txt 2>&1
Open →
Microsoft 365
Set-Mailbox Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Set-Mailbox.

Get-Help Set-Mailbox -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Set-Mailbox Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Set-Mailbox.

time Get-Help Set-Mailbox -Full
Open →
Microsoft 365
Set-Mailbox Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Set-Mailbox.

watch -n 5 'Get-Help Set-Mailbox -Full'
Open →
Microsoft 365
Set-Mailbox Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Set-Mailbox.

date --iso-8601=seconds; Get-Help Set-Mailbox -Full
Open →
Microsoft 365
Set-Mailbox Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Set-Mailbox.

nohup sh -c 'Get-Help Set-Mailbox -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
New-Mailbox Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for New-Mailbox.

Get-Help New-Mailbox -Full > command-results.txt 2>&1
Open →
Microsoft 365
New-Mailbox Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for New-Mailbox.

Get-Help New-Mailbox -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
New-Mailbox Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for New-Mailbox.

time Get-Help New-Mailbox -Full
Open →
Microsoft 365
New-Mailbox Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for New-Mailbox.

watch -n 5 'Get-Help New-Mailbox -Full'
Open →
Microsoft 365
New-Mailbox Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for New-Mailbox.

date --iso-8601=seconds; Get-Help New-Mailbox -Full
Open →
Microsoft 365
New-Mailbox Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for New-Mailbox.

nohup sh -c 'Get-Help New-Mailbox -Full' > command-results.log 2>&1 &
Open →
Microsoft 365
Get-OrganizationConfig Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display complete syntax, parameter details, and examples for Get-OrganizationConfig.

Get-Help Get-OrganizationConfig -Full > command-results.txt 2>&1
Open →
Microsoft 365
Get-OrganizationConfig Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display complete syntax, parameter details, and examples for Get-OrganizationConfig.

Get-Help Get-OrganizationConfig -Full 2>&1 | tee command-results.txt
Open →
Microsoft 365
Get-OrganizationConfig Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display complete syntax, parameter details, and examples for Get-OrganizationConfig.

time Get-Help Get-OrganizationConfig -Full
Open →
Microsoft 365
Get-OrganizationConfig Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display complete syntax, parameter details, and examples for Get-OrganizationConfig.

watch -n 5 'Get-Help Get-OrganizationConfig -Full'
Open →
Microsoft 365
Get-OrganizationConfig Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display complete syntax, parameter details, and examples for Get-OrganizationConfig.

date --iso-8601=seconds; Get-Help Get-OrganizationConfig -Full
Open →
Microsoft 365
Get-OrganizationConfig Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display complete syntax, parameter details, and examples for Get-OrganizationConfig.

nohup sh -c 'Get-Help Get-OrganizationConfig -Full' > command-results.log 2>&1 &
Open →
Linux and Bash

Linux and Bash

Back to top ↑
Linux
ls

List files with permissions and sizes.

ls -lah /var/log
Open →
Linux
cd

Change the current directory.

cd /var/log
Open →
Linux
pwd

Print the current working directory.

pwd
Open →
Linux
cp

Copy files while preserving attributes.

cp -a /source/. /backup/
Open →
Linux
mv

Move or rename a file.

mv old.log archive/
Open →
Linux
rm

Remove a file interactively.

rm -i old.log
Open →
Linux
mkdir

Create nested directories.

mkdir -p /opt/app/logs
Open →
Linux
touch

Create an empty file or update its timestamp.

touch /tmp/healthcheck.txt
Open →
Linux
cat

Display file contents.

cat /etc/os-release
Open →
Linux
less

View a text file interactively.

less /var/log/syslog
Open →
Linux
head

Display the first lines of a file.

head -n 20 /var/log/syslog
Open →
Linux
tail

Follow new lines appended to a log.

tail -f /var/log/syslog
Open →
Linux
grep

Search recursively for text.

grep -Rni "error" /var/log/app
Open →
Linux
find

Find files modified within the last day.

find /var/log -type f -mtime -1
Open →
Linux
locate

Find files using the locate database.

locate sshd_config
Open →
Linux
which

Show the executable resolved by the shell.

which python3
Open →
Linux
whereis

Locate binary, source, and manual paths.

whereis nginx
Open →
Linux
chmod

Change file permissions.

chmod 640 /etc/app.conf
Open →
Linux
chown

Change file ownership.

chown root:app /etc/app.conf
Open →
Linux
ln

Create a symbolic link.

ln -s /opt/app/current /var/www/app
Open →
Linux
df

Display filesystem usage.

df -hT
Open →
Linux
du

Display directory sizes.

du -sh /var/log/* | sort -h
Open →
Linux
free

Display memory usage.

free -h
Open →
Linux
uptime

Display uptime and load averages.

uptime
Open →
Linux
top

Display real-time process activity.

top
Open →
Linux
ps

List processes sorted by memory use.

ps aux --sort=-%mem | head
Open →
Linux
kill

Send a termination signal to a process.

kill -TERM 1234
Open →
Linux
pkill

Signal processes matching a pattern.

pkill -f app-worker
Open →
Linux
nice

Start a process with adjusted priority.

nice -n 10 long-running-command
Open →
Linux
renice

Change the priority of a running process.

renice 5 -p 1234
Open →
Linux
systemctl status

Display a systemd service status.

systemctl status nginx
Open →
Linux
systemctl start

Start a systemd service.

sudo systemctl start nginx
Open →
Linux
systemctl stop

Stop a systemd service.

sudo systemctl stop nginx
Open →
Linux
systemctl restart

Restart a systemd service.

sudo systemctl restart nginx
Open →
Linux
systemctl enable

Enable and start a service.

sudo systemctl enable --now nginx
Open →
Linux
journalctl

Query systemd journal logs.

journalctl -u nginx --since "1 hour ago"
Open →
Linux
dmesg

Display kernel warnings and errors.

dmesg --level=err,warn
Open →
Linux
ip addr

Display network interface addresses.

ip addr show
Open →
Linux
ip route

Display the routing table.

ip route show
Open →
Linux
ip neigh

Display the neighbor table.

ip neigh show
Open →
Linux
ss

List listening TCP and UDP sockets.

ss -tulpn
Open →
Linux
ping

Test ICMP reachability.

ping -c 4 example.com
Open →
Linux
traceroute

Trace the network path to a host.

traceroute example.com
Open →
Linux
dig

Query DNS records.

dig example.com MX +short
Open →
Linux
host

Perform a DNS lookup.

host -t txt example.com
Open →
Linux
curl

Fetch HTTP response headers.

curl -I https://example.com
Open →
Linux
wget

Download a file.

wget -O file.zip https://example.com/file.zip
Open →
Linux
ssh

Open a secure shell session.

ssh admin@server01
Open →
Linux
scp

Copy a file over SSH.

scp backup.tar.gz admin@server01:/backups/
Open →
Linux
rsync

Synchronize directories.

rsync -avh --delete /source/ /backup/
Open →
Linux
tar

Create a compressed tar archive.

tar -czf backup.tar.gz /etc/app
Open →
Linux
gzip

Compress a file with gzip.

gzip -k large.log
Open →
Linux
unzip

Extract a ZIP archive.

unzip package.zip -d /opt/app
Open →
Linux
sed

Replace text in a file.

sed -i "s/old/new/g" config.txt
Open →
Linux
awk

Process delimited text.

awk -F: "{print $1}" /etc/passwd
Open →
Linux
cut

Extract selected columns.

cut -d, -f1,3 users.csv
Open →
Linux
sort

Sort and deduplicate lines.

sort -u names.txt
Open →
Linux
uniq

Count repeated adjacent lines.

sort access.log | uniq -c
Open →
Linux
wc

Count lines in a file.

wc -l access.log
Open →
Linux
xargs

Build command arguments from input.

find /tmp -name "*.tmp" -print0 | xargs -0 rm -f
Open →
Linux
tee

Write output to a file with elevated privileges.

echo "enabled=true" | sudo tee /etc/app.conf
Open →
Linux
env

Display environment variables.

env | sort
Open →
Linux
export

Set an environment variable for the shell.

export APP_ENV=production
Open →
Linux
crontab

List the current user cron jobs.

crontab -l
Open →
Linux
apt update

Refresh package indexes on Debian or Ubuntu.

sudo apt update
Open →
Linux
apt upgrade

Install available package upgrades.

sudo apt upgrade
Open →
Linux
dnf update

Update packages on modern RHEL-family systems.

sudo dnf update
Open →
Linux
rpm query

List installed RPM packages.

rpm -qa | sort
Open →
Linux
dpkg query

List installed Debian packages.

dpkg -l
Open →
Linux
uname

Display kernel and architecture information.

uname -a
Open →
Linux
hostnamectl

Display host and operating system information.

hostnamectl
Open →
Linux
timedatectl

Display time and timezone settings.

timedatectl
Open →
Linux
lsblk

List block devices and filesystems.

lsblk -f
Open →
Linux
mount

Display mounted filesystems.

mount | column -t
Open →
Linux
fdisk

List disk partition tables.

sudo fdisk -l
Open →
Linux
lsof

List processes using a network port.

sudo lsof -i :443
Open →
Linux
openssl s_client

Inspect a TLS connection and certificate chain.

openssl s_client -connect example.com:443 -servername example.com
Open →
Linux
openssl x509

Display certificate details.

openssl x509 -in cert.pem -noout -text
Open →
Linux
sha256sum

Calculate a SHA-256 checksum.

sha256sum installer.iso
Open →
Linux
ls — Basic Usage

Use ls for a standard administrative task.

ls -lah /var/log
Open →
Linux
cd — Basic Usage

Use cd for a standard administrative task.

cd /var/log
Open →
Linux
pwd — Basic Usage

Use pwd for a standard administrative task.

pwd
Open →
Linux
cp — Basic Usage

Use cp for a standard administrative task.

cp -a /source/. /backup/
Open →
Linux
mv — Basic Usage

Use mv for a standard administrative task.

mv old.log archive/
Open →
Linux
rm — Basic Usage

Use rm for a standard administrative task.

rm -i old.log
Open →
Linux
mkdir — Basic Usage

Use mkdir for a standard administrative task.

mkdir -p /opt/app/logs
Open →
Linux
touch — Basic Usage

Use touch for a standard administrative task.

touch /tmp/healthcheck.txt
Open →
Linux
cat — Basic Usage

Use cat for a standard administrative task.

cat /etc/os-release
Open →
Linux
less — Basic Usage

Use less for a standard administrative task.

less /var/log/syslog
Open →
Linux
head — Basic Usage

Use head for a standard administrative task.

head -n 20 /var/log/syslog
Open →
Linux
tail — Basic Usage

Use tail for a standard administrative task.

tail -f /var/log/syslog
Open →
Linux
grep — Basic Usage

Use grep for a standard administrative task.

grep -Rni "error" /var/log/app
Open →
Linux
find — Basic Usage

Use find for a standard administrative task.

find /var/log -type f -mtime -1
Open →
Linux
locate — Basic Usage

Use locate for a standard administrative task.

locate sshd_config
Open →
Linux
which — Basic Usage

Use which for a standard administrative task.

which python3
Open →
Linux
whereis — Basic Usage

Use whereis for a standard administrative task.

whereis nginx
Open →
Linux
chmod — Basic Usage

Use chmod for a standard administrative task.

chmod 640 /etc/app.conf
Open →
Linux
chown — Basic Usage

Use chown for a standard administrative task.

chown root:app /etc/app.conf
Open →
Linux
ln — Basic Usage

Use ln for a standard administrative task.

ln -s /opt/app/current /var/www/app
Open →
Linux
df — Basic Usage

Use df for a standard administrative task.

df -hT
Open →
Linux
du — Basic Usage

Use du for a standard administrative task.

du -sh /var/log/* | sort -h
Open →
Linux
free — Basic Usage

Use free for a standard administrative task.

free -h
Open →
Linux
uptime — Basic Usage

Use uptime for a standard administrative task.

uptime
Open →
Linux
top — Basic Usage

Use top for a standard administrative task.

top
Open →
Linux
ps — Basic Usage

Use ps for a standard administrative task.

ps aux --sort=-%mem | head
Open →
Linux
kill — Basic Usage

Use kill for a standard administrative task.

kill -TERM 1234
Open →
Linux
pkill — Basic Usage

Use pkill for a standard administrative task.

pkill -f app-worker
Open →
Linux
nice — Basic Usage

Use nice for a standard administrative task.

nice -n 10 long-running-command
Open →
Linux
renice — Basic Usage

Use renice for a standard administrative task.

renice 5 -p 1234
Open →
Linux
systemctl status — Basic Usage

Use systemctl status for a standard administrative task.

systemctl status nginx
Open →
Linux
systemctl start — Basic Usage

Use systemctl start for a standard administrative task.

sudo systemctl start nginx
Open →
Linux
systemctl stop — Basic Usage

Use systemctl stop for a standard administrative task.

sudo systemctl stop nginx
Open →
Linux
systemctl restart — Basic Usage

Use systemctl restart for a standard administrative task.

sudo systemctl restart nginx
Open →
Linux
systemctl enable — Basic Usage

Use systemctl enable for a standard administrative task.

sudo systemctl enable --now nginx
Open →
Linux
journalctl — Basic Usage

Use journalctl for a standard administrative task.

journalctl -u nginx --since "1 hour ago"
Open →
Linux
dmesg — Basic Usage

Use dmesg for a standard administrative task.

dmesg --level=err,warn
Open →
Linux
ip addr — Basic Usage

Use ip addr for a standard administrative task.

ip addr show
Open →
Linux
ip route — Basic Usage

Use ip route for a standard administrative task.

ip route show
Open →
Linux
ip neigh — Basic Usage

Use ip neigh for a standard administrative task.

ip neigh show
Open →
Linux
ss — Basic Usage

Use ss for a standard administrative task.

ss -tulpn
Open →
Linux
ping — Basic Usage

Use ping for a standard administrative task.

ping -c 4 example.com
Open →
Linux
traceroute — Basic Usage

Use traceroute for a standard administrative task.

traceroute example.com
Open →
Linux
dig — Basic Usage

Use dig for a standard administrative task.

dig example.com MX +short
Open →
Linux
host — Basic Usage

Use host for a standard administrative task.

host -t txt example.com
Open →
Linux
curl — Basic Usage

Use curl for a standard administrative task.

curl -I https://example.com
Open →
Linux
wget — Basic Usage

Use wget for a standard administrative task.

wget -O file.zip https://example.com/file.zip
Open →
Linux
ssh — Basic Usage

Use ssh for a standard administrative task.

ssh admin@server01
Open →
Linux
scp — Basic Usage

Use scp for a standard administrative task.

scp backup.tar.gz admin@server01:/backups/
Open →
Linux
rsync — Basic Usage

Use rsync for a standard administrative task.

rsync -avh --delete /source/ /backup/
Open →
Linux
tar — Basic Usage

Use tar for a standard administrative task.

tar -czf backup.tar.gz /etc/app
Open →
Linux
gzip — Basic Usage

Use gzip for a standard administrative task.

gzip -k large.log
Open →
Linux
unzip — Basic Usage

Use unzip for a standard administrative task.

unzip package.zip -d /opt/app
Open →
Linux
sed — Basic Usage

Use sed for a standard administrative task.

sed -i "s/old/new/g" config.txt
Open →
Linux
awk — Basic Usage

Use awk for a standard administrative task.

awk -F: "{print $1}" /etc/passwd
Open →
Linux
cut — Basic Usage

Use cut for a standard administrative task.

cut -d, -f1,3 users.csv
Open →
Linux
sort — Basic Usage

Use sort for a standard administrative task.

sort -u names.txt
Open →
Linux
uniq — Basic Usage

Use uniq for a standard administrative task.

sort access.log | uniq -c
Open →
Linux
wc — Basic Usage

Use wc for a standard administrative task.

wc -l access.log
Open →
Linux
xargs — Basic Usage

Use xargs for a standard administrative task.

find /tmp -name "*.tmp" -print0 | xargs -0 rm -f
Open →
Linux
tee — Basic Usage

Use tee for a standard administrative task.

echo "enabled=true" | sudo tee /etc/app.conf
Open →
Linux
env — Basic Usage

Use env for a standard administrative task.

env | sort
Open →
Linux
export — Basic Usage

Use export for a standard administrative task.

export APP_ENV=production
Open →
Linux
crontab — Basic Usage

Use crontab for a standard administrative task.

crontab -l
Open →
Linux
apt update — Basic Usage

Use apt update for a standard administrative task.

sudo apt update
Open →
Linux
apt upgrade — Basic Usage

Use apt upgrade for a standard administrative task.

sudo apt upgrade
Open →
Linux
dnf update — Basic Usage

Use dnf update for a standard administrative task.

sudo dnf update
Open →
Linux
rpm query — Basic Usage

Use rpm query for a standard administrative task.

rpm -qa | sort
Open →
Linux
dpkg query — Basic Usage

Use dpkg query for a standard administrative task.

dpkg -l
Open →
Linux
uname — Basic Usage

Use uname for a standard administrative task.

uname -a
Open →
Linux
hostnamectl — Basic Usage

Use hostnamectl for a standard administrative task.

hostnamectl
Open →
Linux
timedatectl — Basic Usage

Use timedatectl for a standard administrative task.

timedatectl
Open →
Linux
lsblk — Basic Usage

Use lsblk for a standard administrative task.

lsblk -f
Open →
Linux
mount — Basic Usage

Use mount for a standard administrative task.

mount | column -t
Open →
Linux
fdisk — Basic Usage

Use fdisk for a standard administrative task.

sudo fdisk -l
Open →
Linux
lsof — Basic Usage

Use lsof for a standard administrative task.

sudo lsof -i :443
Open →
Linux
openssl s_client — Basic Usage

Use openssl s_client for a standard administrative task.

openssl s_client -connect example.com:443 -servername example.com
Open →
Linux
openssl x509 — Basic Usage

Use openssl x509 for a standard administrative task.

openssl x509 -in cert.pem -noout -text
Open →
Linux
sha256sum — Basic Usage

Use sha256sum for a standard administrative task.

sha256sum installer.iso
Open →
Linux
ls — Export Results

Export the output of ls for documentation or review.

ls -lah /var/log > output.txt
Open →
Linux
cd — Export Results

Export the output of cd for documentation or review.

cd /var/log > output.txt
Open →
Linux
pwd — Export Results

Export the output of pwd for documentation or review.

pwd > output.txt
Open →
Linux
cp — Export Results

Export the output of cp for documentation or review.

cp -a /source/. /backup/ > output.txt
Open →
Linux
mv — Export Results

Export the output of mv for documentation or review.

mv old.log archive/ > output.txt
Open →
Linux
rm — Export Results

Export the output of rm for documentation or review.

rm -i old.log > output.txt
Open →
Linux
mkdir — Export Results

Export the output of mkdir for documentation or review.

mkdir -p /opt/app/logs > output.txt
Open →
Linux
touch — Export Results

Export the output of touch for documentation or review.

touch /tmp/healthcheck.txt > output.txt
Open →
Linux
cat — Export Results

Export the output of cat for documentation or review.

cat /etc/os-release > output.txt
Open →
Linux
less — Export Results

Export the output of less for documentation or review.

less /var/log/syslog > output.txt
Open →
Linux
head — Export Results

Export the output of head for documentation or review.

head -n 20 /var/log/syslog > output.txt
Open →
Linux
tail — Export Results

Export the output of tail for documentation or review.

tail -f /var/log/syslog > output.txt
Open →
Linux
grep — Export Results

Export the output of grep for documentation or review.

grep -Rni "error" /var/log/app > output.txt
Open →
Linux
find — Export Results

Export the output of find for documentation or review.

find /var/log -type f -mtime -1 > output.txt
Open →
Linux
locate — Export Results

Export the output of locate for documentation or review.

locate sshd_config > output.txt
Open →
Linux
which — Export Results

Export the output of which for documentation or review.

which python3 > output.txt
Open →
Linux
whereis — Export Results

Export the output of whereis for documentation or review.

whereis nginx > output.txt
Open →
Linux
chmod — Export Results

Export the output of chmod for documentation or review.

chmod 640 /etc/app.conf > output.txt
Open →
Linux
chown — Export Results

Export the output of chown for documentation or review.

chown root:app /etc/app.conf > output.txt
Open →
Linux
ln — Export Results

Export the output of ln for documentation or review.

ln -s /opt/app/current /var/www/app > output.txt
Open →
Linux
df — Export Results

Export the output of df for documentation or review.

df -hT > output.txt
Open →
Linux
du — Export Results

Export the output of du for documentation or review.

du -sh /var/log/* | sort -h > output.txt
Open →
Linux
free — Export Results

Export the output of free for documentation or review.

free -h > output.txt
Open →
Linux
uptime — Export Results

Export the output of uptime for documentation or review.

uptime > output.txt
Open →
Linux
top — Export Results

Export the output of top for documentation or review.

top > output.txt
Open →
Linux
ps — Export Results

Export the output of ps for documentation or review.

ps aux --sort=-%mem | head > output.txt
Open →
Linux
kill — Export Results

Export the output of kill for documentation or review.

kill -TERM 1234 > output.txt
Open →
Linux
pkill — Export Results

Export the output of pkill for documentation or review.

pkill -f app-worker > output.txt
Open →
Linux
nice — Export Results

Export the output of nice for documentation or review.

nice -n 10 long-running-command > output.txt
Open →
Linux
renice — Export Results

Export the output of renice for documentation or review.

renice 5 -p 1234 > output.txt
Open →
Linux
systemctl status — Export Results

Export the output of systemctl status for documentation or review.

systemctl status nginx > output.txt
Open →
Linux
systemctl start — Export Results

Export the output of systemctl start for documentation or review.

sudo systemctl start nginx > output.txt
Open →
Linux
systemctl stop — Export Results

Export the output of systemctl stop for documentation or review.

sudo systemctl stop nginx > output.txt
Open →
Linux
systemctl restart — Export Results

Export the output of systemctl restart for documentation or review.

sudo systemctl restart nginx > output.txt
Open →
Linux
systemctl enable — Export Results

Export the output of systemctl enable for documentation or review.

sudo systemctl enable --now nginx > output.txt
Open →
Linux
journalctl — Export Results

Export the output of journalctl for documentation or review.

journalctl -u nginx --since "1 hour ago" > output.txt
Open →
Linux
dmesg — Export Results

Export the output of dmesg for documentation or review.

dmesg --level=err,warn > output.txt
Open →
Linux
ip addr — Export Results

Export the output of ip addr for documentation or review.

ip addr show > output.txt
Open →
Linux
ip route — Export Results

Export the output of ip route for documentation or review.

ip route show > output.txt
Open →
Linux
ip neigh — Export Results

Export the output of ip neigh for documentation or review.

ip neigh show > output.txt
Open →
Linux
ss — Export Results

Export the output of ss for documentation or review.

ss -tulpn > output.txt
Open →
Linux
ping — Export Results

Export the output of ping for documentation or review.

ping -c 4 example.com > output.txt
Open →
Linux
traceroute — Export Results

Export the output of traceroute for documentation or review.

traceroute example.com > output.txt
Open →
Linux
dig — Export Results

Export the output of dig for documentation or review.

dig example.com MX +short > output.txt
Open →
Linux
host — Export Results

Export the output of host for documentation or review.

host -t txt example.com > output.txt
Open →
Linux
curl — Export Results

Export the output of curl for documentation or review.

curl -I https://example.com > output.txt
Open →
Linux
wget — Export Results

Export the output of wget for documentation or review.

wget -O file.zip https://example.com/file.zip > output.txt
Open →
Linux
ssh — Export Results

Export the output of ssh for documentation or review.

ssh admin@server01 > output.txt
Open →
Linux
scp — Export Results

Export the output of scp for documentation or review.

scp backup.tar.gz admin@server01:/backups/ > output.txt
Open →
Linux
rsync — Export Results

Export the output of rsync for documentation or review.

rsync -avh --delete /source/ /backup/ > output.txt
Open →
Linux
tar — Export Results

Export the output of tar for documentation or review.

tar -czf backup.tar.gz /etc/app > output.txt
Open →
Linux
gzip — Export Results

Export the output of gzip for documentation or review.

gzip -k large.log > output.txt
Open →
Linux
unzip — Export Results

Export the output of unzip for documentation or review.

unzip package.zip -d /opt/app > output.txt
Open →
Linux
sed — Export Results

Export the output of sed for documentation or review.

sed -i "s/old/new/g" config.txt > output.txt
Open →
Linux
awk — Export Results

Export the output of awk for documentation or review.

awk -F: "{print $1}" /etc/passwd > output.txt
Open →
Linux
cut — Export Results

Export the output of cut for documentation or review.

cut -d, -f1,3 users.csv > output.txt
Open →
Linux
sort — Export Results

Export the output of sort for documentation or review.

sort -u names.txt > output.txt
Open →
Linux
uniq — Export Results

Export the output of uniq for documentation or review.

sort access.log | uniq -c > output.txt
Open →
Linux
wc — Export Results

Export the output of wc for documentation or review.

wc -l access.log > output.txt
Open →
Linux
xargs — Export Results

Export the output of xargs for documentation or review.

find /tmp -name "*.tmp" -print0 | xargs -0 rm -f > output.txt
Open →
Linux
tee — Export Results

Export the output of tee for documentation or review.

echo "enabled=true" | sudo tee /etc/app.conf > output.txt
Open →
Linux
env — Export Results

Export the output of env for documentation or review.

env | sort > output.txt
Open →
Linux
export — Export Results

Export the output of export for documentation or review.

export APP_ENV=production > output.txt
Open →
Linux
crontab — Export Results

Export the output of crontab for documentation or review.

crontab -l > output.txt
Open →
Linux
apt update — Export Results

Export the output of apt update for documentation or review.

sudo apt update > output.txt
Open →
Linux
apt upgrade — Export Results

Export the output of apt upgrade for documentation or review.

sudo apt upgrade > output.txt
Open →
Linux
dnf update — Export Results

Export the output of dnf update for documentation or review.

sudo dnf update > output.txt
Open →
Linux
rpm query — Export Results

Export the output of rpm query for documentation or review.

rpm -qa | sort > output.txt
Open →
Linux
dpkg query — Export Results

Export the output of dpkg query for documentation or review.

dpkg -l > output.txt
Open →
Linux
uname — Export Results

Export the output of uname for documentation or review.

uname -a > output.txt
Open →
Linux
hostnamectl — Export Results

Export the output of hostnamectl for documentation or review.

hostnamectl > output.txt
Open →
Linux
timedatectl — Export Results

Export the output of timedatectl for documentation or review.

timedatectl > output.txt
Open →
Linux
ls Help and Syntax

Display usage, options, and built-in help for the Linux command ls.

ls --help
Open →
Linux
cd Help and Syntax

Display usage, options, and built-in help for the Linux command cd.

cd --help
Open →
Linux
pwd Help and Syntax

Display usage, options, and built-in help for the Linux command pwd.

pwd --help
Open →
Linux
cp Help and Syntax

Display usage, options, and built-in help for the Linux command cp.

cp --help
Open →
Linux
mv Help and Syntax

Display usage, options, and built-in help for the Linux command mv.

mv --help
Open →
Linux
rm Help and Syntax

Display usage, options, and built-in help for the Linux command rm.

rm --help
Open →
Linux
mkdir Help and Syntax

Display usage, options, and built-in help for the Linux command mkdir.

mkdir --help
Open →
Linux
touch Help and Syntax

Display usage, options, and built-in help for the Linux command touch.

touch --help
Open →
Linux
cat Help and Syntax

Display usage, options, and built-in help for the Linux command cat.

cat --help
Open →
Linux
less Help and Syntax

Display usage, options, and built-in help for the Linux command less.

less --help
Open →
Linux
head Help and Syntax

Display usage, options, and built-in help for the Linux command head.

head --help
Open →
Linux
tail Help and Syntax

Display usage, options, and built-in help for the Linux command tail.

tail --help
Open →
Linux
grep Help and Syntax

Display usage, options, and built-in help for the Linux command grep.

grep --help
Open →
Linux
find Help and Syntax

Display usage, options, and built-in help for the Linux command find.

find --help
Open →
Linux
locate Help and Syntax

Display usage, options, and built-in help for the Linux command locate.

locate --help
Open →
Linux
which Help and Syntax

Display usage, options, and built-in help for the Linux command which.

which --help
Open →
Linux
whereis Help and Syntax

Display usage, options, and built-in help for the Linux command whereis.

whereis --help
Open →
Linux
chmod Help and Syntax

Display usage, options, and built-in help for the Linux command chmod.

chmod --help
Open →
Linux
chown Help and Syntax

Display usage, options, and built-in help for the Linux command chown.

chown --help
Open →
Linux
ln Help and Syntax

Display usage, options, and built-in help for the Linux command ln.

ln --help
Open →
Linux
df Help and Syntax

Display usage, options, and built-in help for the Linux command df.

df --help
Open →
Linux
du Help and Syntax

Display usage, options, and built-in help for the Linux command du.

du --help
Open →
Linux
free Help and Syntax

Display usage, options, and built-in help for the Linux command free.

free --help
Open →
Linux
uptime Help and Syntax

Display usage, options, and built-in help for the Linux command uptime.

uptime --help
Open →
Linux
top Help and Syntax

Display usage, options, and built-in help for the Linux command top.

top --help
Open →
Linux
ps Help and Syntax

Display usage, options, and built-in help for the Linux command ps.

ps --help
Open →
Linux
kill Help and Syntax

Display usage, options, and built-in help for the Linux command kill.

kill --help
Open →
Linux
pkill Help and Syntax

Display usage, options, and built-in help for the Linux command pkill.

pkill --help
Open →
Linux
nice Help and Syntax

Display usage, options, and built-in help for the Linux command nice.

nice --help
Open →
Linux
renice Help and Syntax

Display usage, options, and built-in help for the Linux command renice.

renice --help
Open →
Linux
systemctl status Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl status.

systemctl --help
Open →
Linux
systemctl start Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl start.

systemctl --help
Open →
Linux
systemctl stop Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl stop.

systemctl --help
Open →
Linux
systemctl restart Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl restart.

systemctl --help
Open →
Linux
systemctl enable Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl enable.

systemctl --help
Open →
Linux
journalctl Help and Syntax

Display usage, options, and built-in help for the Linux command journalctl.

journalctl --help
Open →
Linux
dmesg Help and Syntax

Display usage, options, and built-in help for the Linux command dmesg.

dmesg --help
Open →
Linux
ip addr Help and Syntax

Display usage, options, and built-in help for the Linux command ip addr.

ip --help
Open →
Linux
ip route Help and Syntax

Display usage, options, and built-in help for the Linux command ip route.

ip --help
Open →
Linux
ip neigh Help and Syntax

Display usage, options, and built-in help for the Linux command ip neigh.

ip --help
Open →
Linux
ss Help and Syntax

Display usage, options, and built-in help for the Linux command ss.

ss --help
Open →
Linux
ping Help and Syntax

Display usage, options, and built-in help for the Linux command ping.

ping --help
Open →
Linux
traceroute Help and Syntax

Display usage, options, and built-in help for the Linux command traceroute.

traceroute --help
Open →
Linux
dig Help and Syntax

Display usage, options, and built-in help for the Linux command dig.

dig --help
Open →
Linux
host Help and Syntax

Display usage, options, and built-in help for the Linux command host.

host --help
Open →
Linux
curl Help and Syntax

Display usage, options, and built-in help for the Linux command curl.

curl --help
Open →
Linux
wget Help and Syntax

Display usage, options, and built-in help for the Linux command wget.

wget --help
Open →
Linux
ssh Help and Syntax

Display usage, options, and built-in help for the Linux command ssh.

ssh --help
Open →
Linux
scp Help and Syntax

Display usage, options, and built-in help for the Linux command scp.

scp --help
Open →
Linux
rsync Help and Syntax

Display usage, options, and built-in help for the Linux command rsync.

rsync --help
Open →
Linux
tar Help and Syntax

Display usage, options, and built-in help for the Linux command tar.

tar --help
Open →
Linux
gzip Help and Syntax

Display usage, options, and built-in help for the Linux command gzip.

gzip --help
Open →
Linux
unzip Help and Syntax

Display usage, options, and built-in help for the Linux command unzip.

unzip --help
Open →
Linux
sed Help and Syntax

Display usage, options, and built-in help for the Linux command sed.

sed --help
Open →
Linux
awk Help and Syntax

Display usage, options, and built-in help for the Linux command awk.

awk --help
Open →
Linux
cut Help and Syntax

Display usage, options, and built-in help for the Linux command cut.

cut --help
Open →
Linux
sort Help and Syntax

Display usage, options, and built-in help for the Linux command sort.

sort --help
Open →
Linux
uniq Help and Syntax

Display usage, options, and built-in help for the Linux command uniq.

sort --help
Open →
Linux
wc Help and Syntax

Display usage, options, and built-in help for the Linux command wc.

wc --help
Open →
Linux
xargs Help and Syntax

Display usage, options, and built-in help for the Linux command xargs.

find --help
Open →
Linux
tee Help and Syntax

Display usage, options, and built-in help for the Linux command tee.

echo --help
Open →
Linux
env Help and Syntax

Display usage, options, and built-in help for the Linux command env.

env --help
Open →
Linux
export Help and Syntax

Display usage, options, and built-in help for the Linux command export.

export --help
Open →
Linux
crontab Help and Syntax

Display usage, options, and built-in help for the Linux command crontab.

crontab --help
Open →
Linux
apt update Help and Syntax

Display usage, options, and built-in help for the Linux command apt update.

apt --help
Open →
Linux
apt upgrade Help and Syntax

Display usage, options, and built-in help for the Linux command apt upgrade.

apt --help
Open →
Linux
dnf update Help and Syntax

Display usage, options, and built-in help for the Linux command dnf update.

dnf --help
Open →
Linux
rpm query Help and Syntax

Display usage, options, and built-in help for the Linux command rpm query.

rpm --help
Open →
Linux
dpkg query Help and Syntax

Display usage, options, and built-in help for the Linux command dpkg query.

dpkg --help
Open →
Linux
uname Help and Syntax

Display usage, options, and built-in help for the Linux command uname.

uname --help
Open →
Linux
hostnamectl Help and Syntax

Display usage, options, and built-in help for the Linux command hostnamectl.

hostnamectl --help
Open →
Linux
timedatectl Help and Syntax

Display usage, options, and built-in help for the Linux command timedatectl.

timedatectl --help
Open →
Linux
lsblk Help and Syntax

Display usage, options, and built-in help for the Linux command lsblk.

lsblk --help
Open →
Linux
mount Help and Syntax

Display usage, options, and built-in help for the Linux command mount.

mount --help
Open →
Linux
fdisk Help and Syntax

Display usage, options, and built-in help for the Linux command fdisk.

fdisk --help
Open →
Linux
lsof Help and Syntax

Display usage, options, and built-in help for the Linux command lsof.

lsof --help
Open →
Linux
openssl s_client Help and Syntax

Display usage, options, and built-in help for the Linux command openssl s_client.

openssl --help
Open →
Linux
openssl x509 Help and Syntax

Display usage, options, and built-in help for the Linux command openssl x509.

openssl --help
Open →
Linux
sha256sum Help and Syntax

Display usage, options, and built-in help for the Linux command sha256sum.

sha256sum --help
Open →
Linux
ls — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ls — Basic Usage.

ls --help
Open →
Linux
cd — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command cd — Basic Usage.

cd --help
Open →
Linux
pwd — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command pwd — Basic Usage.

pwd --help
Open →
Linux
cp — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command cp — Basic Usage.

cp --help
Open →
Linux
mv — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command mv — Basic Usage.

mv --help
Open →
Linux
rm — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command rm — Basic Usage.

rm --help
Open →
Linux
mkdir — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command mkdir — Basic Usage.

mkdir --help
Open →
Linux
touch — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command touch — Basic Usage.

touch --help
Open →
Linux
cat — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command cat — Basic Usage.

cat --help
Open →
Linux
less — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command less — Basic Usage.

less --help
Open →
Linux
head — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command head — Basic Usage.

head --help
Open →
Linux
tail — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command tail — Basic Usage.

tail --help
Open →
Linux
grep — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command grep — Basic Usage.

grep --help
Open →
Linux
find — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command find — Basic Usage.

find --help
Open →
Linux
locate — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command locate — Basic Usage.

locate --help
Open →
Linux
which — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command which — Basic Usage.

which --help
Open →
Linux
whereis — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command whereis — Basic Usage.

whereis --help
Open →
Linux
chmod — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command chmod — Basic Usage.

chmod --help
Open →
Linux
chown — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command chown — Basic Usage.

chown --help
Open →
Linux
ln — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ln — Basic Usage.

ln --help
Open →
Linux
df — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command df — Basic Usage.

df --help
Open →
Linux
du — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command du — Basic Usage.

du --help
Open →
Linux
free — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command free — Basic Usage.

free --help
Open →
Linux
uptime — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command uptime — Basic Usage.

uptime --help
Open →
Linux
top — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command top — Basic Usage.

top --help
Open →
Linux
ps — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ps — Basic Usage.

ps --help
Open →
Linux
kill — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command kill — Basic Usage.

kill --help
Open →
Linux
pkill — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command pkill — Basic Usage.

pkill --help
Open →
Linux
nice — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command nice — Basic Usage.

nice --help
Open →
Linux
renice — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command renice — Basic Usage.

renice --help
Open →
Linux
systemctl status — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl status — Basic Usage.

systemctl --help
Open →
Linux
systemctl start — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl start — Basic Usage.

systemctl --help
Open →
Linux
systemctl stop — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl stop — Basic Usage.

systemctl --help
Open →
Linux
systemctl restart — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl restart — Basic Usage.

systemctl --help
Open →
Linux
systemctl enable — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl enable — Basic Usage.

systemctl --help
Open →
Linux
journalctl — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command journalctl — Basic Usage.

journalctl --help
Open →
Linux
dmesg — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command dmesg — Basic Usage.

dmesg --help
Open →
Linux
ip addr — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ip addr — Basic Usage.

ip --help
Open →
Linux
ip route — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ip route — Basic Usage.

ip --help
Open →
Linux
ip neigh — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ip neigh — Basic Usage.

ip --help
Open →
Linux
ss — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ss — Basic Usage.

ss --help
Open →
Linux
ping — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ping — Basic Usage.

ping --help
Open →
Linux
traceroute — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command traceroute — Basic Usage.

traceroute --help
Open →
Linux
dig — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command dig — Basic Usage.

dig --help
Open →
Linux
host — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command host — Basic Usage.

host --help
Open →
Linux
curl — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command curl — Basic Usage.

curl --help
Open →
Linux
wget — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command wget — Basic Usage.

wget --help
Open →
Linux
ssh — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command ssh — Basic Usage.

ssh --help
Open →
Linux
scp — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command scp — Basic Usage.

scp --help
Open →
Linux
rsync — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command rsync — Basic Usage.

rsync --help
Open →
Linux
tar — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command tar — Basic Usage.

tar --help
Open →
Linux
gzip — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command gzip — Basic Usage.

gzip --help
Open →
Linux
unzip — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command unzip — Basic Usage.

unzip --help
Open →
Linux
sed — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command sed — Basic Usage.

sed --help
Open →
Linux
awk — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command awk — Basic Usage.

awk --help
Open →
Linux
cut — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command cut — Basic Usage.

cut --help
Open →
Linux
sort — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command sort — Basic Usage.

sort --help
Open →
Linux
uniq — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command uniq — Basic Usage.

sort --help
Open →
Linux
wc — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command wc — Basic Usage.

wc --help
Open →
Linux
xargs — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command xargs — Basic Usage.

find --help
Open →
Linux
tee — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command tee — Basic Usage.

echo --help
Open →
Linux
env — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command env — Basic Usage.

env --help
Open →
Linux
export — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command export — Basic Usage.

export --help
Open →
Linux
crontab — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command crontab — Basic Usage.

crontab --help
Open →
Linux
apt update — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command apt update — Basic Usage.

apt --help
Open →
Linux
apt upgrade — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command apt upgrade — Basic Usage.

apt --help
Open →
Linux
dnf update — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command dnf update — Basic Usage.

dnf --help
Open →
Linux
rpm query — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command rpm query — Basic Usage.

rpm --help
Open →
Linux
dpkg query — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command dpkg query — Basic Usage.

dpkg --help
Open →
Linux
uname — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command uname — Basic Usage.

uname --help
Open →
Linux
hostnamectl — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command hostnamectl — Basic Usage.

hostnamectl --help
Open →
Linux
timedatectl — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command timedatectl — Basic Usage.

timedatectl --help
Open →
Linux
lsblk — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command lsblk — Basic Usage.

lsblk --help
Open →
Linux
mount — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command mount — Basic Usage.

mount --help
Open →
Linux
fdisk — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command fdisk — Basic Usage.

fdisk --help
Open →
Linux
lsof — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command lsof — Basic Usage.

lsof --help
Open →
Linux
openssl s_client — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command openssl s_client — Basic Usage.

openssl --help
Open →
Linux
openssl x509 — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command openssl x509 — Basic Usage.

openssl --help
Open →
Linux
sha256sum — Basic Usage Help and Syntax

Display usage, options, and built-in help for the Linux command sha256sum — Basic Usage.

sha256sum --help
Open →
Linux
ls — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ls — Export Results.

ls --help
Open →
Linux
cd — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command cd — Export Results.

cd --help
Open →
Linux
pwd — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command pwd — Export Results.

pwd --help
Open →
Linux
cp — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command cp — Export Results.

cp --help
Open →
Linux
mv — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command mv — Export Results.

mv --help
Open →
Linux
rm — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command rm — Export Results.

rm --help
Open →
Linux
mkdir — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command mkdir — Export Results.

mkdir --help
Open →
Linux
touch — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command touch — Export Results.

touch --help
Open →
Linux
cat — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command cat — Export Results.

cat --help
Open →
Linux
less — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command less — Export Results.

less --help
Open →
Linux
head — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command head — Export Results.

head --help
Open →
Linux
tail — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command tail — Export Results.

tail --help
Open →
Linux
grep — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command grep — Export Results.

grep --help
Open →
Linux
find — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command find — Export Results.

find --help
Open →
Linux
locate — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command locate — Export Results.

locate --help
Open →
Linux
which — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command which — Export Results.

which --help
Open →
Linux
whereis — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command whereis — Export Results.

whereis --help
Open →
Linux
chmod — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command chmod — Export Results.

chmod --help
Open →
Linux
chown — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command chown — Export Results.

chown --help
Open →
Linux
ln — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ln — Export Results.

ln --help
Open →
Linux
df — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command df — Export Results.

df --help
Open →
Linux
du — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command du — Export Results.

du --help
Open →
Linux
free — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command free — Export Results.

free --help
Open →
Linux
uptime — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command uptime — Export Results.

uptime --help
Open →
Linux
top — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command top — Export Results.

top --help
Open →
Linux
ps — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ps — Export Results.

ps --help
Open →
Linux
kill — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command kill — Export Results.

kill --help
Open →
Linux
pkill — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command pkill — Export Results.

pkill --help
Open →
Linux
nice — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command nice — Export Results.

nice --help
Open →
Linux
renice — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command renice — Export Results.

renice --help
Open →
Linux
systemctl status — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl status — Export Results.

systemctl --help
Open →
Linux
systemctl start — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl start — Export Results.

systemctl --help
Open →
Linux
systemctl stop — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl stop — Export Results.

systemctl --help
Open →
Linux
systemctl restart — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl restart — Export Results.

systemctl --help
Open →
Linux
systemctl enable — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command systemctl enable — Export Results.

systemctl --help
Open →
Linux
journalctl — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command journalctl — Export Results.

journalctl --help
Open →
Linux
dmesg — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command dmesg — Export Results.

dmesg --help
Open →
Linux
ip addr — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ip addr — Export Results.

ip --help
Open →
Linux
ip route — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ip route — Export Results.

ip --help
Open →
Linux
ip neigh — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ip neigh — Export Results.

ip --help
Open →
Linux
ss — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ss — Export Results.

ss --help
Open →
Linux
ping — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ping — Export Results.

ping --help
Open →
Linux
traceroute — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command traceroute — Export Results.

traceroute --help
Open →
Linux
dig — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command dig — Export Results.

dig --help
Open →
Linux
host — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command host — Export Results.

host --help
Open →
Linux
curl — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command curl — Export Results.

curl --help
Open →
Linux
wget — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command wget — Export Results.

wget --help
Open →
Linux
ssh — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command ssh — Export Results.

ssh --help
Open →
Linux
scp — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command scp — Export Results.

scp --help
Open →
Linux
rsync — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command rsync — Export Results.

rsync --help
Open →
Linux
tar — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command tar — Export Results.

tar --help
Open →
Linux
gzip — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command gzip — Export Results.

gzip --help
Open →
Linux
unzip — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command unzip — Export Results.

unzip --help
Open →
Linux
sed — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command sed — Export Results.

sed --help
Open →
Linux
awk — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command awk — Export Results.

awk --help
Open →
Linux
cut — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command cut — Export Results.

cut --help
Open →
Linux
sort — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command sort — Export Results.

sort --help
Open →
Linux
uniq — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command uniq — Export Results.

sort --help
Open →
Linux
wc — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command wc — Export Results.

wc --help
Open →
Linux
xargs — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command xargs — Export Results.

find --help
Open →
Linux
tee — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command tee — Export Results.

echo --help
Open →
Linux
env — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command env — Export Results.

env --help
Open →
Linux
export — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command export — Export Results.

export --help
Open →
Linux
crontab — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command crontab — Export Results.

crontab --help
Open →
Linux
apt update — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command apt update — Export Results.

apt --help
Open →
Linux
apt upgrade — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command apt upgrade — Export Results.

apt --help
Open →
Linux
dnf update — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command dnf update — Export Results.

dnf --help
Open →
Linux
rpm query — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command rpm query — Export Results.

rpm --help
Open →
Linux
dpkg query — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command dpkg query — Export Results.

dpkg --help
Open →
Linux
uname — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command uname — Export Results.

uname --help
Open →
Linux
hostnamectl — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command hostnamectl — Export Results.

hostnamectl --help
Open →
Linux
timedatectl — Export Results Help and Syntax

Display usage, options, and built-in help for the Linux command timedatectl — Export Results.

timedatectl --help
Open →
Linux
ls — Save output

Save standard output and errors to a text file. Base task: List files with permissions and sizes.

ls -lah /var/log > command-results.txt 2>&1
Open →
Linux
ls — Display and save output

Display output while saving it to a file. Base task: List files with permissions and sizes.

ls -lah /var/log 2>&1 | tee command-results.txt
Open →
Linux
ls — Measure execution time

Measure the command execution time. Base task: List files with permissions and sizes.

time ls -lah /var/log
Open →
Linux
ls — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List files with permissions and sizes.

watch -n 5 'ls -lah /var/log'
Open →
Linux
ls — Run with timestamp

Print a timestamp immediately before running the command. Base task: List files with permissions and sizes.

date --iso-8601=seconds; ls -lah /var/log
Open →
Linux
ls — Run in background

Run the command in the background and log its output. Base task: List files with permissions and sizes.

nohup sh -c 'ls -lah /var/log' > command-results.log 2>&1 &
Open →
Linux
cd — Save output

Save standard output and errors to a text file. Base task: Change the current directory.

cd /var/log > command-results.txt 2>&1
Open →
Linux
cd — Display and save output

Display output while saving it to a file. Base task: Change the current directory.

cd /var/log 2>&1 | tee command-results.txt
Open →
Linux
cd — Measure execution time

Measure the command execution time. Base task: Change the current directory.

time cd /var/log
Open →
Linux
cd — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Change the current directory.

watch -n 5 'cd /var/log'
Open →
Linux
cd — Run with timestamp

Print a timestamp immediately before running the command. Base task: Change the current directory.

date --iso-8601=seconds; cd /var/log
Open →
Linux
cd — Run in background

Run the command in the background and log its output. Base task: Change the current directory.

nohup sh -c 'cd /var/log' > command-results.log 2>&1 &
Open →
Linux
pwd — Save output

Save standard output and errors to a text file. Base task: Print the current working directory.

pwd > command-results.txt 2>&1
Open →
Linux
pwd — Display and save output

Display output while saving it to a file. Base task: Print the current working directory.

pwd 2>&1 | tee command-results.txt
Open →
Linux
pwd — Measure execution time

Measure the command execution time. Base task: Print the current working directory.

time pwd
Open →
Linux
pwd — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Print the current working directory.

watch -n 5 'pwd'
Open →
Linux
pwd — Run with timestamp

Print a timestamp immediately before running the command. Base task: Print the current working directory.

date --iso-8601=seconds; pwd
Open →
Linux
pwd — Run in background

Run the command in the background and log its output. Base task: Print the current working directory.

nohup sh -c 'pwd' > command-results.log 2>&1 &
Open →
Linux
cp — Save output

Save standard output and errors to a text file. Base task: Copy files while preserving attributes.

cp -a /source/. /backup/ > command-results.txt 2>&1
Open →
Linux
cp — Display and save output

Display output while saving it to a file. Base task: Copy files while preserving attributes.

cp -a /source/. /backup/ 2>&1 | tee command-results.txt
Open →
Linux
cp — Measure execution time

Measure the command execution time. Base task: Copy files while preserving attributes.

time cp -a /source/. /backup/
Open →
Linux
cp — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Copy files while preserving attributes.

watch -n 5 'cp -a /source/. /backup/'
Open →
Linux
cp — Run with timestamp

Print a timestamp immediately before running the command. Base task: Copy files while preserving attributes.

date --iso-8601=seconds; cp -a /source/. /backup/
Open →
Linux
cp — Run in background

Run the command in the background and log its output. Base task: Copy files while preserving attributes.

nohup sh -c 'cp -a /source/. /backup/' > command-results.log 2>&1 &
Open →
Linux
mv — Save output

Save standard output and errors to a text file. Base task: Move or rename a file.

mv old.log archive/ > command-results.txt 2>&1
Open →
Linux
mv — Display and save output

Display output while saving it to a file. Base task: Move or rename a file.

mv old.log archive/ 2>&1 | tee command-results.txt
Open →
Linux
mv — Measure execution time

Measure the command execution time. Base task: Move or rename a file.

time mv old.log archive/
Open →
Linux
mv — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Move or rename a file.

watch -n 5 'mv old.log archive/'
Open →
Linux
mv — Run with timestamp

Print a timestamp immediately before running the command. Base task: Move or rename a file.

date --iso-8601=seconds; mv old.log archive/
Open →
Linux
mv — Run in background

Run the command in the background and log its output. Base task: Move or rename a file.

nohup sh -c 'mv old.log archive/' > command-results.log 2>&1 &
Open →
Linux
rm — Save output

Save standard output and errors to a text file. Base task: Remove a file interactively.

rm -i old.log > command-results.txt 2>&1
Open →
Linux
rm — Display and save output

Display output while saving it to a file. Base task: Remove a file interactively.

rm -i old.log 2>&1 | tee command-results.txt
Open →
Linux
rm — Measure execution time

Measure the command execution time. Base task: Remove a file interactively.

time rm -i old.log
Open →
Linux
rm — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Remove a file interactively.

watch -n 5 'rm -i old.log'
Open →
Linux
rm — Run with timestamp

Print a timestamp immediately before running the command. Base task: Remove a file interactively.

date --iso-8601=seconds; rm -i old.log
Open →
Linux
rm — Run in background

Run the command in the background and log its output. Base task: Remove a file interactively.

nohup sh -c 'rm -i old.log' > command-results.log 2>&1 &
Open →
Linux
mkdir — Save output

Save standard output and errors to a text file. Base task: Create nested directories.

mkdir -p /opt/app/logs > command-results.txt 2>&1
Open →
Linux
mkdir — Display and save output

Display output while saving it to a file. Base task: Create nested directories.

mkdir -p /opt/app/logs 2>&1 | tee command-results.txt
Open →
Linux
mkdir — Measure execution time

Measure the command execution time. Base task: Create nested directories.

time mkdir -p /opt/app/logs
Open →
Linux
mkdir — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create nested directories.

watch -n 5 'mkdir -p /opt/app/logs'
Open →
Linux
mkdir — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create nested directories.

date --iso-8601=seconds; mkdir -p /opt/app/logs
Open →
Linux
mkdir — Run in background

Run the command in the background and log its output. Base task: Create nested directories.

nohup sh -c 'mkdir -p /opt/app/logs' > command-results.log 2>&1 &
Open →
Linux
touch — Save output

Save standard output and errors to a text file. Base task: Create an empty file or update its timestamp.

touch /tmp/healthcheck.txt > command-results.txt 2>&1
Open →
Linux
touch — Display and save output

Display output while saving it to a file. Base task: Create an empty file or update its timestamp.

touch /tmp/healthcheck.txt 2>&1 | tee command-results.txt
Open →
Linux
touch — Measure execution time

Measure the command execution time. Base task: Create an empty file or update its timestamp.

time touch /tmp/healthcheck.txt
Open →
Linux
touch — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create an empty file or update its timestamp.

watch -n 5 'touch /tmp/healthcheck.txt'
Open →
Linux
touch — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create an empty file or update its timestamp.

date --iso-8601=seconds; touch /tmp/healthcheck.txt
Open →
Linux
touch — Run in background

Run the command in the background and log its output. Base task: Create an empty file or update its timestamp.

nohup sh -c 'touch /tmp/healthcheck.txt' > command-results.log 2>&1 &
Open →
Linux
cat — Save output

Save standard output and errors to a text file. Base task: Display file contents.

cat /etc/os-release > command-results.txt 2>&1
Open →
Linux
cat — Display and save output

Display output while saving it to a file. Base task: Display file contents.

cat /etc/os-release 2>&1 | tee command-results.txt
Open →
Linux
cat — Measure execution time

Measure the command execution time. Base task: Display file contents.

time cat /etc/os-release
Open →
Linux
cat — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display file contents.

watch -n 5 'cat /etc/os-release'
Open →
Linux
cat — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display file contents.

date --iso-8601=seconds; cat /etc/os-release
Open →
Linux
cat — Run in background

Run the command in the background and log its output. Base task: Display file contents.

nohup sh -c 'cat /etc/os-release' > command-results.log 2>&1 &
Open →
Linux
less — Save output

Save standard output and errors to a text file. Base task: View a text file interactively.

less /var/log/syslog > command-results.txt 2>&1
Open →
Linux
less — Display and save output

Display output while saving it to a file. Base task: View a text file interactively.

less /var/log/syslog 2>&1 | tee command-results.txt
Open →
Linux
less — Measure execution time

Measure the command execution time. Base task: View a text file interactively.

time less /var/log/syslog
Open →
Linux
less — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: View a text file interactively.

watch -n 5 'less /var/log/syslog'
Open →
Linux
less — Run with timestamp

Print a timestamp immediately before running the command. Base task: View a text file interactively.

date --iso-8601=seconds; less /var/log/syslog
Open →
Linux
less — Run in background

Run the command in the background and log its output. Base task: View a text file interactively.

nohup sh -c 'less /var/log/syslog' > command-results.log 2>&1 &
Open →
Linux
head — Save output

Save standard output and errors to a text file. Base task: Display the first lines of a file.

head -n 20 /var/log/syslog > command-results.txt 2>&1
Open →
Linux
head — Display and save output

Display output while saving it to a file. Base task: Display the first lines of a file.

head -n 20 /var/log/syslog 2>&1 | tee command-results.txt
Open →
Linux
head — Measure execution time

Measure the command execution time. Base task: Display the first lines of a file.

time head -n 20 /var/log/syslog
Open →
Linux
head — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display the first lines of a file.

watch -n 5 'head -n 20 /var/log/syslog'
Open →
Linux
head — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display the first lines of a file.

date --iso-8601=seconds; head -n 20 /var/log/syslog
Open →
Linux
head — Run in background

Run the command in the background and log its output. Base task: Display the first lines of a file.

nohup sh -c 'head -n 20 /var/log/syslog' > command-results.log 2>&1 &
Open →
Linux
tail — Save output

Save standard output and errors to a text file. Base task: Follow new lines appended to a log.

tail -f /var/log/syslog > command-results.txt 2>&1
Open →
Linux
tail — Display and save output

Display output while saving it to a file. Base task: Follow new lines appended to a log.

tail -f /var/log/syslog 2>&1 | tee command-results.txt
Open →
Linux
tail — Measure execution time

Measure the command execution time. Base task: Follow new lines appended to a log.

time tail -f /var/log/syslog
Open →
Linux
tail — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Follow new lines appended to a log.

watch -n 5 'tail -f /var/log/syslog'
Open →
Linux
tail — Run with timestamp

Print a timestamp immediately before running the command. Base task: Follow new lines appended to a log.

date --iso-8601=seconds; tail -f /var/log/syslog
Open →
Linux
tail — Run in background

Run the command in the background and log its output. Base task: Follow new lines appended to a log.

nohup sh -c 'tail -f /var/log/syslog' > command-results.log 2>&1 &
Open →
Linux
grep — Save output

Save standard output and errors to a text file. Base task: Search recursively for text.

grep -Rni "error" /var/log/app > command-results.txt 2>&1
Open →
Linux
grep — Display and save output

Display output while saving it to a file. Base task: Search recursively for text.

grep -Rni "error" /var/log/app 2>&1 | tee command-results.txt
Open →
Linux
grep — Measure execution time

Measure the command execution time. Base task: Search recursively for text.

time grep -Rni "error" /var/log/app
Open →
Linux
grep — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Search recursively for text.

watch -n 5 'grep -Rni "error" /var/log/app'
Open →
Linux
grep — Run with timestamp

Print a timestamp immediately before running the command. Base task: Search recursively for text.

date --iso-8601=seconds; grep -Rni "error" /var/log/app
Open →
Linux
grep — Run in background

Run the command in the background and log its output. Base task: Search recursively for text.

nohup sh -c 'grep -Rni "error" /var/log/app' > command-results.log 2>&1 &
Open →
Linux
find — Save output

Save standard output and errors to a text file. Base task: Find files modified within the last day.

find /var/log -type f -mtime -1 > command-results.txt 2>&1
Open →
Linux
find — Display and save output

Display output while saving it to a file. Base task: Find files modified within the last day.

find /var/log -type f -mtime -1 2>&1 | tee command-results.txt
Open →
Linux
find — Measure execution time

Measure the command execution time. Base task: Find files modified within the last day.

time find /var/log -type f -mtime -1
Open →
Linux
find — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Find files modified within the last day.

watch -n 5 'find /var/log -type f -mtime -1'
Open →
Linux
find — Run with timestamp

Print a timestamp immediately before running the command. Base task: Find files modified within the last day.

date --iso-8601=seconds; find /var/log -type f -mtime -1
Open →
Linux
find — Run in background

Run the command in the background and log its output. Base task: Find files modified within the last day.

nohup sh -c 'find /var/log -type f -mtime -1' > command-results.log 2>&1 &
Open →
Linux
locate — Save output

Save standard output and errors to a text file. Base task: Find files using the locate database.

locate sshd_config > command-results.txt 2>&1
Open →
Linux
locate — Display and save output

Display output while saving it to a file. Base task: Find files using the locate database.

locate sshd_config 2>&1 | tee command-results.txt
Open →
Linux
locate — Measure execution time

Measure the command execution time. Base task: Find files using the locate database.

time locate sshd_config
Open →
Linux
locate — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Find files using the locate database.

watch -n 5 'locate sshd_config'
Open →
Linux
locate — Run with timestamp

Print a timestamp immediately before running the command. Base task: Find files using the locate database.

date --iso-8601=seconds; locate sshd_config
Open →
Linux
locate — Run in background

Run the command in the background and log its output. Base task: Find files using the locate database.

nohup sh -c 'locate sshd_config' > command-results.log 2>&1 &
Open →
Linux
which — Save output

Save standard output and errors to a text file. Base task: Show the executable resolved by the shell.

which python3 > command-results.txt 2>&1
Open →
Linux
which — Display and save output

Display output while saving it to a file. Base task: Show the executable resolved by the shell.

which python3 2>&1 | tee command-results.txt
Open →
Linux
which — Measure execution time

Measure the command execution time. Base task: Show the executable resolved by the shell.

time which python3
Open →
Linux
which — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Show the executable resolved by the shell.

watch -n 5 'which python3'
Open →
Linux
which — Run with timestamp

Print a timestamp immediately before running the command. Base task: Show the executable resolved by the shell.

date --iso-8601=seconds; which python3
Open →
Linux
which — Run in background

Run the command in the background and log its output. Base task: Show the executable resolved by the shell.

nohup sh -c 'which python3' > command-results.log 2>&1 &
Open →
Linux
whereis — Save output

Save standard output and errors to a text file. Base task: Locate binary, source, and manual paths.

whereis nginx > command-results.txt 2>&1
Open →
Linux
whereis — Display and save output

Display output while saving it to a file. Base task: Locate binary, source, and manual paths.

whereis nginx 2>&1 | tee command-results.txt
Open →
Linux
whereis — Measure execution time

Measure the command execution time. Base task: Locate binary, source, and manual paths.

time whereis nginx
Open →
Linux
whereis — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Locate binary, source, and manual paths.

watch -n 5 'whereis nginx'
Open →
Linux
whereis — Run with timestamp

Print a timestamp immediately before running the command. Base task: Locate binary, source, and manual paths.

date --iso-8601=seconds; whereis nginx
Open →
Linux
whereis — Run in background

Run the command in the background and log its output. Base task: Locate binary, source, and manual paths.

nohup sh -c 'whereis nginx' > command-results.log 2>&1 &
Open →
Linux
chmod — Save output

Save standard output and errors to a text file. Base task: Change file permissions.

chmod 640 /etc/app.conf > command-results.txt 2>&1
Open →
Linux
chmod — Display and save output

Display output while saving it to a file. Base task: Change file permissions.

chmod 640 /etc/app.conf 2>&1 | tee command-results.txt
Open →
Linux
chmod — Measure execution time

Measure the command execution time. Base task: Change file permissions.

time chmod 640 /etc/app.conf
Open →
Linux
chmod — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Change file permissions.

watch -n 5 'chmod 640 /etc/app.conf'
Open →
Linux
chmod — Run with timestamp

Print a timestamp immediately before running the command. Base task: Change file permissions.

date --iso-8601=seconds; chmod 640 /etc/app.conf
Open →
Linux
chmod — Run in background

Run the command in the background and log its output. Base task: Change file permissions.

nohup sh -c 'chmod 640 /etc/app.conf' > command-results.log 2>&1 &
Open →
Linux
chown — Save output

Save standard output and errors to a text file. Base task: Change file ownership.

chown root:app /etc/app.conf > command-results.txt 2>&1
Open →
Linux
chown — Display and save output

Display output while saving it to a file. Base task: Change file ownership.

chown root:app /etc/app.conf 2>&1 | tee command-results.txt
Open →
Linux
chown — Measure execution time

Measure the command execution time. Base task: Change file ownership.

time chown root:app /etc/app.conf
Open →
Linux
chown — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Change file ownership.

watch -n 5 'chown root:app /etc/app.conf'
Open →
Linux
chown — Run with timestamp

Print a timestamp immediately before running the command. Base task: Change file ownership.

date --iso-8601=seconds; chown root:app /etc/app.conf
Open →
Linux
chown — Run in background

Run the command in the background and log its output. Base task: Change file ownership.

nohup sh -c 'chown root:app /etc/app.conf' > command-results.log 2>&1 &
Open →
Linux
ln — Save output

Save standard output and errors to a text file. Base task: Create a symbolic link.

ln -s /opt/app/current /var/www/app > command-results.txt 2>&1
Open →
Linux
ln — Display and save output

Display output while saving it to a file. Base task: Create a symbolic link.

ln -s /opt/app/current /var/www/app 2>&1 | tee command-results.txt
Open →
Linux
ln — Measure execution time

Measure the command execution time. Base task: Create a symbolic link.

time ln -s /opt/app/current /var/www/app
Open →
Linux
ln — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create a symbolic link.

watch -n 5 'ln -s /opt/app/current /var/www/app'
Open →
Linux
ln — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create a symbolic link.

date --iso-8601=seconds; ln -s /opt/app/current /var/www/app
Open →
Linux
ln — Run in background

Run the command in the background and log its output. Base task: Create a symbolic link.

nohup sh -c 'ln -s /opt/app/current /var/www/app' > command-results.log 2>&1 &
Open →
Linux
df — Save output

Save standard output and errors to a text file. Base task: Display filesystem usage.

df -hT > command-results.txt 2>&1
Open →
Linux
df — Display and save output

Display output while saving it to a file. Base task: Display filesystem usage.

df -hT 2>&1 | tee command-results.txt
Open →
Linux
df — Measure execution time

Measure the command execution time. Base task: Display filesystem usage.

time df -hT
Open →
Linux
df — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display filesystem usage.

watch -n 5 'df -hT'
Open →
Linux
df — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display filesystem usage.

date --iso-8601=seconds; df -hT
Open →
Linux
df — Run in background

Run the command in the background and log its output. Base task: Display filesystem usage.

nohup sh -c 'df -hT' > command-results.log 2>&1 &
Open →
Linux
du — Save output

Save standard output and errors to a text file. Base task: Display directory sizes.

du -sh /var/log/* | sort -h > command-results.txt 2>&1
Open →
Linux
du — Display and save output

Display output while saving it to a file. Base task: Display directory sizes.

du -sh /var/log/* | sort -h 2>&1 | tee command-results.txt
Open →
Linux
du — Measure execution time

Measure the command execution time. Base task: Display directory sizes.

time du -sh /var/log/* | sort -h
Open →
Linux
du — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display directory sizes.

watch -n 5 'du -sh /var/log/* | sort -h'
Open →
Linux
du — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display directory sizes.

date --iso-8601=seconds; du -sh /var/log/* | sort -h
Open →
Linux
du — Run in background

Run the command in the background and log its output. Base task: Display directory sizes.

nohup sh -c 'du -sh /var/log/* | sort -h' > command-results.log 2>&1 &
Open →
Linux
free — Save output

Save standard output and errors to a text file. Base task: Display memory usage.

free -h > command-results.txt 2>&1
Open →
Linux
free — Display and save output

Display output while saving it to a file. Base task: Display memory usage.

free -h 2>&1 | tee command-results.txt
Open →
Linux
free — Measure execution time

Measure the command execution time. Base task: Display memory usage.

time free -h
Open →
Linux
free — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display memory usage.

watch -n 5 'free -h'
Open →
Linux
free — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display memory usage.

date --iso-8601=seconds; free -h
Open →
Linux
free — Run in background

Run the command in the background and log its output. Base task: Display memory usage.

nohup sh -c 'free -h' > command-results.log 2>&1 &
Open →
Linux
uptime — Save output

Save standard output and errors to a text file. Base task: Display uptime and load averages.

uptime > command-results.txt 2>&1
Open →
Linux
uptime — Display and save output

Display output while saving it to a file. Base task: Display uptime and load averages.

uptime 2>&1 | tee command-results.txt
Open →
Linux
uptime — Measure execution time

Measure the command execution time. Base task: Display uptime and load averages.

time uptime
Open →
Linux
uptime — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display uptime and load averages.

watch -n 5 'uptime'
Open →
Linux
uptime — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display uptime and load averages.

date --iso-8601=seconds; uptime
Open →
Linux
uptime — Run in background

Run the command in the background and log its output. Base task: Display uptime and load averages.

nohup sh -c 'uptime' > command-results.log 2>&1 &
Open →
Linux
top — Save output

Save standard output and errors to a text file. Base task: Display real-time process activity.

top > command-results.txt 2>&1
Open →
Linux
top — Display and save output

Display output while saving it to a file. Base task: Display real-time process activity.

top 2>&1 | tee command-results.txt
Open →
Linux
top — Measure execution time

Measure the command execution time. Base task: Display real-time process activity.

time top
Open →
Linux
top — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display real-time process activity.

watch -n 5 'top'
Open →
Linux
top — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display real-time process activity.

date --iso-8601=seconds; top
Open →
Linux
top — Run in background

Run the command in the background and log its output. Base task: Display real-time process activity.

nohup sh -c 'top' > command-results.log 2>&1 &
Open →
Linux
ps — Save output

Save standard output and errors to a text file. Base task: List processes sorted by memory use.

ps aux --sort=-%mem | head > command-results.txt 2>&1
Open →
Linux
ps — Display and save output

Display output while saving it to a file. Base task: List processes sorted by memory use.

ps aux --sort=-%mem | head 2>&1 | tee command-results.txt
Open →
Linux
ps — Measure execution time

Measure the command execution time. Base task: List processes sorted by memory use.

time ps aux --sort=-%mem | head
Open →
Linux
ps — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List processes sorted by memory use.

watch -n 5 'ps aux --sort=-%mem | head'
Open →
Linux
ps — Run with timestamp

Print a timestamp immediately before running the command. Base task: List processes sorted by memory use.

date --iso-8601=seconds; ps aux --sort=-%mem | head
Open →
Linux
ps — Run in background

Run the command in the background and log its output. Base task: List processes sorted by memory use.

nohup sh -c 'ps aux --sort=-%mem | head' > command-results.log 2>&1 &
Open →
Linux
kill — Save output

Save standard output and errors to a text file. Base task: Send a termination signal to a process.

kill -TERM 1234 > command-results.txt 2>&1
Open →
Linux
kill — Display and save output

Display output while saving it to a file. Base task: Send a termination signal to a process.

kill -TERM 1234 2>&1 | tee command-results.txt
Open →
Linux
kill — Measure execution time

Measure the command execution time. Base task: Send a termination signal to a process.

time kill -TERM 1234
Open →
Linux
kill — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Send a termination signal to a process.

watch -n 5 'kill -TERM 1234'
Open →
Linux
kill — Run with timestamp

Print a timestamp immediately before running the command. Base task: Send a termination signal to a process.

date --iso-8601=seconds; kill -TERM 1234
Open →
Linux
kill — Run in background

Run the command in the background and log its output. Base task: Send a termination signal to a process.

nohup sh -c 'kill -TERM 1234' > command-results.log 2>&1 &
Open →
Linux
pkill — Save output

Save standard output and errors to a text file. Base task: Signal processes matching a pattern.

pkill -f app-worker > command-results.txt 2>&1
Open →
Linux
pkill — Display and save output

Display output while saving it to a file. Base task: Signal processes matching a pattern.

pkill -f app-worker 2>&1 | tee command-results.txt
Open →
Linux
pkill — Measure execution time

Measure the command execution time. Base task: Signal processes matching a pattern.

time pkill -f app-worker
Open →
Linux
pkill — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Signal processes matching a pattern.

watch -n 5 'pkill -f app-worker'
Open →
Linux
pkill — Run with timestamp

Print a timestamp immediately before running the command. Base task: Signal processes matching a pattern.

date --iso-8601=seconds; pkill -f app-worker
Open →
Linux
pkill — Run in background

Run the command in the background and log its output. Base task: Signal processes matching a pattern.

nohup sh -c 'pkill -f app-worker' > command-results.log 2>&1 &
Open →
Linux
nice — Save output

Save standard output and errors to a text file. Base task: Start a process with adjusted priority.

nice -n 10 long-running-command > command-results.txt 2>&1
Open →
Linux
nice — Display and save output

Display output while saving it to a file. Base task: Start a process with adjusted priority.

nice -n 10 long-running-command 2>&1 | tee command-results.txt
Open →
Linux
nice — Measure execution time

Measure the command execution time. Base task: Start a process with adjusted priority.

time nice -n 10 long-running-command
Open →
Linux
nice — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Start a process with adjusted priority.

watch -n 5 'nice -n 10 long-running-command'
Open →
Linux
nice — Run with timestamp

Print a timestamp immediately before running the command. Base task: Start a process with adjusted priority.

date --iso-8601=seconds; nice -n 10 long-running-command
Open →
Linux
nice — Run in background

Run the command in the background and log its output. Base task: Start a process with adjusted priority.

nohup sh -c 'nice -n 10 long-running-command' > command-results.log 2>&1 &
Open →
Linux
renice — Save output

Save standard output and errors to a text file. Base task: Change the priority of a running process.

renice 5 -p 1234 > command-results.txt 2>&1
Open →
Linux
renice — Display and save output

Display output while saving it to a file. Base task: Change the priority of a running process.

renice 5 -p 1234 2>&1 | tee command-results.txt
Open →
Linux
renice — Measure execution time

Measure the command execution time. Base task: Change the priority of a running process.

time renice 5 -p 1234
Open →
Linux
renice — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Change the priority of a running process.

watch -n 5 'renice 5 -p 1234'
Open →
Linux
renice — Run with timestamp

Print a timestamp immediately before running the command. Base task: Change the priority of a running process.

date --iso-8601=seconds; renice 5 -p 1234
Open →
Linux
renice — Run in background

Run the command in the background and log its output. Base task: Change the priority of a running process.

nohup sh -c 'renice 5 -p 1234' > command-results.log 2>&1 &
Open →
Linux
systemctl status — Save output

Save standard output and errors to a text file. Base task: Display a systemd service status.

systemctl status nginx > command-results.txt 2>&1
Open →
Linux
systemctl status — Display and save output

Display output while saving it to a file. Base task: Display a systemd service status.

systemctl status nginx 2>&1 | tee command-results.txt
Open →
Linux
systemctl status — Measure execution time

Measure the command execution time. Base task: Display a systemd service status.

time systemctl status nginx
Open →
Linux
systemctl status — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display a systemd service status.

watch -n 5 'systemctl status nginx'
Open →
Linux
systemctl status — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display a systemd service status.

date --iso-8601=seconds; systemctl status nginx
Open →
Linux
systemctl status — Run in background

Run the command in the background and log its output. Base task: Display a systemd service status.

nohup sh -c 'systemctl status nginx' > command-results.log 2>&1 &
Open →
Linux
systemctl start — Save output

Save standard output and errors to a text file. Base task: Start a systemd service.

sudo systemctl start nginx > command-results.txt 2>&1
Open →
Linux
systemctl start — Display and save output

Display output while saving it to a file. Base task: Start a systemd service.

sudo systemctl start nginx 2>&1 | tee command-results.txt
Open →
Linux
systemctl start — Measure execution time

Measure the command execution time. Base task: Start a systemd service.

time sudo systemctl start nginx
Open →
Linux
systemctl start — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Start a systemd service.

watch -n 5 'sudo systemctl start nginx'
Open →
Linux
systemctl start — Run with timestamp

Print a timestamp immediately before running the command. Base task: Start a systemd service.

date --iso-8601=seconds; sudo systemctl start nginx
Open →
Linux
systemctl start — Run in background

Run the command in the background and log its output. Base task: Start a systemd service.

nohup sh -c 'sudo systemctl start nginx' > command-results.log 2>&1 &
Open →
Linux
systemctl stop — Save output

Save standard output and errors to a text file. Base task: Stop a systemd service.

sudo systemctl stop nginx > command-results.txt 2>&1
Open →
Linux
systemctl stop — Display and save output

Display output while saving it to a file. Base task: Stop a systemd service.

sudo systemctl stop nginx 2>&1 | tee command-results.txt
Open →
Linux
systemctl stop — Measure execution time

Measure the command execution time. Base task: Stop a systemd service.

time sudo systemctl stop nginx
Open →
Linux
systemctl stop — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Stop a systemd service.

watch -n 5 'sudo systemctl stop nginx'
Open →
Linux
systemctl stop — Run with timestamp

Print a timestamp immediately before running the command. Base task: Stop a systemd service.

date --iso-8601=seconds; sudo systemctl stop nginx
Open →
Linux
systemctl stop — Run in background

Run the command in the background and log its output. Base task: Stop a systemd service.

nohup sh -c 'sudo systemctl stop nginx' > command-results.log 2>&1 &
Open →
Linux
systemctl restart — Save output

Save standard output and errors to a text file. Base task: Restart a systemd service.

sudo systemctl restart nginx > command-results.txt 2>&1
Open →
Linux
systemctl restart — Display and save output

Display output while saving it to a file. Base task: Restart a systemd service.

sudo systemctl restart nginx 2>&1 | tee command-results.txt
Open →
Linux
systemctl restart — Measure execution time

Measure the command execution time. Base task: Restart a systemd service.

time sudo systemctl restart nginx
Open →
Linux
systemctl restart — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Restart a systemd service.

watch -n 5 'sudo systemctl restart nginx'
Open →
Linux
systemctl restart — Run with timestamp

Print a timestamp immediately before running the command. Base task: Restart a systemd service.

date --iso-8601=seconds; sudo systemctl restart nginx
Open →
Linux
systemctl restart — Run in background

Run the command in the background and log its output. Base task: Restart a systemd service.

nohup sh -c 'sudo systemctl restart nginx' > command-results.log 2>&1 &
Open →
Linux
systemctl enable — Save output

Save standard output and errors to a text file. Base task: Enable and start a service.

sudo systemctl enable --now nginx > command-results.txt 2>&1
Open →
Linux
systemctl enable — Display and save output

Display output while saving it to a file. Base task: Enable and start a service.

sudo systemctl enable --now nginx 2>&1 | tee command-results.txt
Open →
Linux
systemctl enable — Measure execution time

Measure the command execution time. Base task: Enable and start a service.

time sudo systemctl enable --now nginx
Open →
Linux
systemctl enable — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Enable and start a service.

watch -n 5 'sudo systemctl enable --now nginx'
Open →
Linux
systemctl enable — Run with timestamp

Print a timestamp immediately before running the command. Base task: Enable and start a service.

date --iso-8601=seconds; sudo systemctl enable --now nginx
Open →
Linux
systemctl enable — Run in background

Run the command in the background and log its output. Base task: Enable and start a service.

nohup sh -c 'sudo systemctl enable --now nginx' > command-results.log 2>&1 &
Open →
Linux
journalctl — Save output

Save standard output and errors to a text file. Base task: Query systemd journal logs.

journalctl -u nginx --since "1 hour ago" > command-results.txt 2>&1
Open →
Linux
journalctl — Display and save output

Display output while saving it to a file. Base task: Query systemd journal logs.

journalctl -u nginx --since "1 hour ago" 2>&1 | tee command-results.txt
Open →
Linux
journalctl — Measure execution time

Measure the command execution time. Base task: Query systemd journal logs.

time journalctl -u nginx --since "1 hour ago"
Open →
Linux
journalctl — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Query systemd journal logs.

watch -n 5 'journalctl -u nginx --since "1 hour ago"'
Open →
Linux
journalctl — Run with timestamp

Print a timestamp immediately before running the command. Base task: Query systemd journal logs.

date --iso-8601=seconds; journalctl -u nginx --since "1 hour ago"
Open →
Linux
journalctl — Run in background

Run the command in the background and log its output. Base task: Query systemd journal logs.

nohup sh -c 'journalctl -u nginx --since "1 hour ago"' > command-results.log 2>&1 &
Open →
Linux
dmesg — Save output

Save standard output and errors to a text file. Base task: Display kernel warnings and errors.

dmesg --level=err,warn > command-results.txt 2>&1
Open →
Linux
dmesg — Display and save output

Display output while saving it to a file. Base task: Display kernel warnings and errors.

dmesg --level=err,warn 2>&1 | tee command-results.txt
Open →
Linux
dmesg — Measure execution time

Measure the command execution time. Base task: Display kernel warnings and errors.

time dmesg --level=err,warn
Open →
Linux
dmesg — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display kernel warnings and errors.

watch -n 5 'dmesg --level=err,warn'
Open →
Linux
dmesg — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display kernel warnings and errors.

date --iso-8601=seconds; dmesg --level=err,warn
Open →
Linux
dmesg — Run in background

Run the command in the background and log its output. Base task: Display kernel warnings and errors.

nohup sh -c 'dmesg --level=err,warn' > command-results.log 2>&1 &
Open →
Linux
ip addr — Save output

Save standard output and errors to a text file. Base task: Display network interface addresses.

ip addr show > command-results.txt 2>&1
Open →
Linux
ip addr — Display and save output

Display output while saving it to a file. Base task: Display network interface addresses.

ip addr show 2>&1 | tee command-results.txt
Open →
Linux
ip addr — Measure execution time

Measure the command execution time. Base task: Display network interface addresses.

time ip addr show
Open →
Linux
ip addr — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display network interface addresses.

watch -n 5 'ip addr show'
Open →
Linux
ip addr — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display network interface addresses.

date --iso-8601=seconds; ip addr show
Open →
Linux
ip addr — Run in background

Run the command in the background and log its output. Base task: Display network interface addresses.

nohup sh -c 'ip addr show' > command-results.log 2>&1 &
Open →
Linux
ip route — Save output

Save standard output and errors to a text file. Base task: Display the routing table.

ip route show > command-results.txt 2>&1
Open →
Linux
ip route — Display and save output

Display output while saving it to a file. Base task: Display the routing table.

ip route show 2>&1 | tee command-results.txt
Open →
Linux
ip route — Measure execution time

Measure the command execution time. Base task: Display the routing table.

time ip route show
Open →
Linux
ip route — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display the routing table.

watch -n 5 'ip route show'
Open →
Linux
ip route — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display the routing table.

date --iso-8601=seconds; ip route show
Open →
Linux
ip route — Run in background

Run the command in the background and log its output. Base task: Display the routing table.

nohup sh -c 'ip route show' > command-results.log 2>&1 &
Open →
Linux
ip neigh — Save output

Save standard output and errors to a text file. Base task: Display the neighbor table.

ip neigh show > command-results.txt 2>&1
Open →
Linux
ip neigh — Display and save output

Display output while saving it to a file. Base task: Display the neighbor table.

ip neigh show 2>&1 | tee command-results.txt
Open →
Linux
ip neigh — Measure execution time

Measure the command execution time. Base task: Display the neighbor table.

time ip neigh show
Open →
Linux
ip neigh — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display the neighbor table.

watch -n 5 'ip neigh show'
Open →
Linux
ip neigh — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display the neighbor table.

date --iso-8601=seconds; ip neigh show
Open →
Linux
ip neigh — Run in background

Run the command in the background and log its output. Base task: Display the neighbor table.

nohup sh -c 'ip neigh show' > command-results.log 2>&1 &
Open →
Linux
ss — Save output

Save standard output and errors to a text file. Base task: List listening TCP and UDP sockets.

ss -tulpn > command-results.txt 2>&1
Open →
Linux
ss — Display and save output

Display output while saving it to a file. Base task: List listening TCP and UDP sockets.

ss -tulpn 2>&1 | tee command-results.txt
Open →
Linux
ss — Measure execution time

Measure the command execution time. Base task: List listening TCP and UDP sockets.

time ss -tulpn
Open →
Linux
ss — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List listening TCP and UDP sockets.

watch -n 5 'ss -tulpn'
Open →
Linux
ss — Run with timestamp

Print a timestamp immediately before running the command. Base task: List listening TCP and UDP sockets.

date --iso-8601=seconds; ss -tulpn
Open →
Linux
ss — Run in background

Run the command in the background and log its output. Base task: List listening TCP and UDP sockets.

nohup sh -c 'ss -tulpn' > command-results.log 2>&1 &
Open →
Linux
ping — Save output

Save standard output and errors to a text file. Base task: Test ICMP reachability.

ping -c 4 example.com > command-results.txt 2>&1
Open →
Linux
ping — Display and save output

Display output while saving it to a file. Base task: Test ICMP reachability.

ping -c 4 example.com 2>&1 | tee command-results.txt
Open →
Linux
ping — Measure execution time

Measure the command execution time. Base task: Test ICMP reachability.

time ping -c 4 example.com
Open →
Linux
ping — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Test ICMP reachability.

watch -n 5 'ping -c 4 example.com'
Open →
Linux
ping — Run with timestamp

Print a timestamp immediately before running the command. Base task: Test ICMP reachability.

date --iso-8601=seconds; ping -c 4 example.com
Open →
Linux
ping — Run in background

Run the command in the background and log its output. Base task: Test ICMP reachability.

nohup sh -c 'ping -c 4 example.com' > command-results.log 2>&1 &
Open →
Linux
traceroute — Save output

Save standard output and errors to a text file. Base task: Trace the network path to a host.

traceroute example.com > command-results.txt 2>&1
Open →
Linux
traceroute — Display and save output

Display output while saving it to a file. Base task: Trace the network path to a host.

traceroute example.com 2>&1 | tee command-results.txt
Open →
Linux
traceroute — Measure execution time

Measure the command execution time. Base task: Trace the network path to a host.

time traceroute example.com
Open →
Linux
traceroute — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Trace the network path to a host.

watch -n 5 'traceroute example.com'
Open →
Linux
traceroute — Run with timestamp

Print a timestamp immediately before running the command. Base task: Trace the network path to a host.

date --iso-8601=seconds; traceroute example.com
Open →
Linux
traceroute — Run in background

Run the command in the background and log its output. Base task: Trace the network path to a host.

nohup sh -c 'traceroute example.com' > command-results.log 2>&1 &
Open →
Linux
dig — Save output

Save standard output and errors to a text file. Base task: Query DNS records.

dig example.com MX +short > command-results.txt 2>&1
Open →
Linux
dig — Display and save output

Display output while saving it to a file. Base task: Query DNS records.

dig example.com MX +short 2>&1 | tee command-results.txt
Open →
Linux
dig — Measure execution time

Measure the command execution time. Base task: Query DNS records.

time dig example.com MX +short
Open →
Linux
dig — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Query DNS records.

watch -n 5 'dig example.com MX +short'
Open →
Linux
dig — Run with timestamp

Print a timestamp immediately before running the command. Base task: Query DNS records.

date --iso-8601=seconds; dig example.com MX +short
Open →
Linux
dig — Run in background

Run the command in the background and log its output. Base task: Query DNS records.

nohup sh -c 'dig example.com MX +short' > command-results.log 2>&1 &
Open →
Linux
host — Save output

Save standard output and errors to a text file. Base task: Perform a DNS lookup.

host -t txt example.com > command-results.txt 2>&1
Open →
Linux
host — Display and save output

Display output while saving it to a file. Base task: Perform a DNS lookup.

host -t txt example.com 2>&1 | tee command-results.txt
Open →
Linux
host — Measure execution time

Measure the command execution time. Base task: Perform a DNS lookup.

time host -t txt example.com
Open →
Linux
host — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Perform a DNS lookup.

watch -n 5 'host -t txt example.com'
Open →
Linux
host — Run with timestamp

Print a timestamp immediately before running the command. Base task: Perform a DNS lookup.

date --iso-8601=seconds; host -t txt example.com
Open →
Linux
host — Run in background

Run the command in the background and log its output. Base task: Perform a DNS lookup.

nohup sh -c 'host -t txt example.com' > command-results.log 2>&1 &
Open →
Linux
curl — Save output

Save standard output and errors to a text file. Base task: Fetch HTTP response headers.

curl -I https://example.com > command-results.txt 2>&1
Open →
Linux
curl — Display and save output

Display output while saving it to a file. Base task: Fetch HTTP response headers.

curl -I https://example.com 2>&1 | tee command-results.txt
Open →
Linux
curl — Measure execution time

Measure the command execution time. Base task: Fetch HTTP response headers.

time curl -I https://example.com
Open →
Linux
curl — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Fetch HTTP response headers.

watch -n 5 'curl -I https://example.com'
Open →
Linux
curl — Run with timestamp

Print a timestamp immediately before running the command. Base task: Fetch HTTP response headers.

date --iso-8601=seconds; curl -I https://example.com
Open →
Linux
curl — Run in background

Run the command in the background and log its output. Base task: Fetch HTTP response headers.

nohup sh -c 'curl -I https://example.com' > command-results.log 2>&1 &
Open →
Linux
wget — Save output

Save standard output and errors to a text file. Base task: Download a file.

wget -O file.zip https://example.com/file.zip > command-results.txt 2>&1
Open →
Linux
wget — Display and save output

Display output while saving it to a file. Base task: Download a file.

wget -O file.zip https://example.com/file.zip 2>&1 | tee command-results.txt
Open →
Linux
wget — Measure execution time

Measure the command execution time. Base task: Download a file.

time wget -O file.zip https://example.com/file.zip
Open →
Linux
wget — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Download a file.

watch -n 5 'wget -O file.zip https://example.com/file.zip'
Open →
Linux
wget — Run with timestamp

Print a timestamp immediately before running the command. Base task: Download a file.

date --iso-8601=seconds; wget -O file.zip https://example.com/file.zip
Open →
Linux
wget — Run in background

Run the command in the background and log its output. Base task: Download a file.

nohup sh -c 'wget -O file.zip https://example.com/file.zip' > command-results.log 2>&1 &
Open →
Linux
ssh — Save output

Save standard output and errors to a text file. Base task: Open a secure shell session.

ssh admin@server01 > command-results.txt 2>&1
Open →
Linux
ssh — Display and save output

Display output while saving it to a file. Base task: Open a secure shell session.

ssh admin@server01 2>&1 | tee command-results.txt
Open →
Linux
ssh — Measure execution time

Measure the command execution time. Base task: Open a secure shell session.

time ssh admin@server01
Open →
Linux
ssh — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Open a secure shell session.

watch -n 5 'ssh admin@server01'
Open →
Linux
ssh — Run with timestamp

Print a timestamp immediately before running the command. Base task: Open a secure shell session.

date --iso-8601=seconds; ssh admin@server01
Open →
Linux
ssh — Run in background

Run the command in the background and log its output. Base task: Open a secure shell session.

nohup sh -c 'ssh admin@server01' > command-results.log 2>&1 &
Open →
Linux
scp — Save output

Save standard output and errors to a text file. Base task: Copy a file over SSH.

scp backup.tar.gz admin@server01:/backups/ > command-results.txt 2>&1
Open →
Linux
scp — Display and save output

Display output while saving it to a file. Base task: Copy a file over SSH.

scp backup.tar.gz admin@server01:/backups/ 2>&1 | tee command-results.txt
Open →
Linux
scp — Measure execution time

Measure the command execution time. Base task: Copy a file over SSH.

time scp backup.tar.gz admin@server01:/backups/
Open →
Linux
scp — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Copy a file over SSH.

watch -n 5 'scp backup.tar.gz admin@server01:/backups/'
Open →
Linux
scp — Run with timestamp

Print a timestamp immediately before running the command. Base task: Copy a file over SSH.

date --iso-8601=seconds; scp backup.tar.gz admin@server01:/backups/
Open →
Linux
scp — Run in background

Run the command in the background and log its output. Base task: Copy a file over SSH.

nohup sh -c 'scp backup.tar.gz admin@server01:/backups/' > command-results.log 2>&1 &
Open →
Linux
rsync — Save output

Save standard output and errors to a text file. Base task: Synchronize directories.

rsync -avh --delete /source/ /backup/ > command-results.txt 2>&1
Open →
Linux
rsync — Display and save output

Display output while saving it to a file. Base task: Synchronize directories.

rsync -avh --delete /source/ /backup/ 2>&1 | tee command-results.txt
Open →
Linux
rsync — Measure execution time

Measure the command execution time. Base task: Synchronize directories.

time rsync -avh --delete /source/ /backup/
Open →
Linux
rsync — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Synchronize directories.

watch -n 5 'rsync -avh --delete /source/ /backup/'
Open →
Linux
rsync — Run with timestamp

Print a timestamp immediately before running the command. Base task: Synchronize directories.

date --iso-8601=seconds; rsync -avh --delete /source/ /backup/
Open →
Linux
rsync — Run in background

Run the command in the background and log its output. Base task: Synchronize directories.

nohup sh -c 'rsync -avh --delete /source/ /backup/' > command-results.log 2>&1 &
Open →
Linux
tar — Save output

Save standard output and errors to a text file. Base task: Create a compressed tar archive.

tar -czf backup.tar.gz /etc/app > command-results.txt 2>&1
Open →
Linux
tar — Display and save output

Display output while saving it to a file. Base task: Create a compressed tar archive.

tar -czf backup.tar.gz /etc/app 2>&1 | tee command-results.txt
Open →
Linux
tar — Measure execution time

Measure the command execution time. Base task: Create a compressed tar archive.

time tar -czf backup.tar.gz /etc/app
Open →
Linux
tar — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create a compressed tar archive.

watch -n 5 'tar -czf backup.tar.gz /etc/app'
Open →
Linux
tar — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create a compressed tar archive.

date --iso-8601=seconds; tar -czf backup.tar.gz /etc/app
Open →
Linux
tar — Run in background

Run the command in the background and log its output. Base task: Create a compressed tar archive.

nohup sh -c 'tar -czf backup.tar.gz /etc/app' > command-results.log 2>&1 &
Open →
Linux
gzip — Save output

Save standard output and errors to a text file. Base task: Compress a file with gzip.

gzip -k large.log > command-results.txt 2>&1
Open →
Linux
gzip — Display and save output

Display output while saving it to a file. Base task: Compress a file with gzip.

gzip -k large.log 2>&1 | tee command-results.txt
Open →
Linux
gzip — Measure execution time

Measure the command execution time. Base task: Compress a file with gzip.

time gzip -k large.log
Open →
Linux
gzip — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Compress a file with gzip.

watch -n 5 'gzip -k large.log'
Open →
Linux
gzip — Run with timestamp

Print a timestamp immediately before running the command. Base task: Compress a file with gzip.

date --iso-8601=seconds; gzip -k large.log
Open →
Linux
gzip — Run in background

Run the command in the background and log its output. Base task: Compress a file with gzip.

nohup sh -c 'gzip -k large.log' > command-results.log 2>&1 &
Open →
Linux
unzip — Save output

Save standard output and errors to a text file. Base task: Extract a ZIP archive.

unzip package.zip -d /opt/app > command-results.txt 2>&1
Open →
Linux
unzip — Display and save output

Display output while saving it to a file. Base task: Extract a ZIP archive.

unzip package.zip -d /opt/app 2>&1 | tee command-results.txt
Open →
Linux
unzip — Measure execution time

Measure the command execution time. Base task: Extract a ZIP archive.

time unzip package.zip -d /opt/app
Open →
Linux
unzip — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Extract a ZIP archive.

watch -n 5 'unzip package.zip -d /opt/app'
Open →
Linux
unzip — Run with timestamp

Print a timestamp immediately before running the command. Base task: Extract a ZIP archive.

date --iso-8601=seconds; unzip package.zip -d /opt/app
Open →
Linux
unzip — Run in background

Run the command in the background and log its output. Base task: Extract a ZIP archive.

nohup sh -c 'unzip package.zip -d /opt/app' > command-results.log 2>&1 &
Open →
Linux
sed — Save output

Save standard output and errors to a text file. Base task: Replace text in a file.

sed -i "s/old/new/g" config.txt > command-results.txt 2>&1
Open →
Linux
sed — Display and save output

Display output while saving it to a file. Base task: Replace text in a file.

sed -i "s/old/new/g" config.txt 2>&1 | tee command-results.txt
Open →
Linux
sed — Measure execution time

Measure the command execution time. Base task: Replace text in a file.

time sed -i "s/old/new/g" config.txt
Open →
Linux
sed — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Replace text in a file.

watch -n 5 'sed -i "s/old/new/g" config.txt'
Open →
Linux
sed — Run with timestamp

Print a timestamp immediately before running the command. Base task: Replace text in a file.

date --iso-8601=seconds; sed -i "s/old/new/g" config.txt
Open →
Linux
sed — Run in background

Run the command in the background and log its output. Base task: Replace text in a file.

nohup sh -c 'sed -i "s/old/new/g" config.txt' > command-results.log 2>&1 &
Open →
Linux
awk — Save output

Save standard output and errors to a text file. Base task: Process delimited text.

awk -F: "{print $1}" /etc/passwd > command-results.txt 2>&1
Open →
Linux
awk — Display and save output

Display output while saving it to a file. Base task: Process delimited text.

awk -F: "{print $1}" /etc/passwd 2>&1 | tee command-results.txt
Open →
Linux
awk — Measure execution time

Measure the command execution time. Base task: Process delimited text.

time awk -F: "{print $1}" /etc/passwd
Open →
Linux
awk — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Process delimited text.

watch -n 5 'awk -F: "{print $1}" /etc/passwd'
Open →
Linux
awk — Run with timestamp

Print a timestamp immediately before running the command. Base task: Process delimited text.

date --iso-8601=seconds; awk -F: "{print $1}" /etc/passwd
Open →
Linux
awk — Run in background

Run the command in the background and log its output. Base task: Process delimited text.

nohup sh -c 'awk -F: "{print $1}" /etc/passwd' > command-results.log 2>&1 &
Open →
Linux
cut — Save output

Save standard output and errors to a text file. Base task: Extract selected columns.

cut -d, -f1,3 users.csv > command-results.txt 2>&1
Open →
Linux
cut — Display and save output

Display output while saving it to a file. Base task: Extract selected columns.

cut -d, -f1,3 users.csv 2>&1 | tee command-results.txt
Open →
Linux
cut — Measure execution time

Measure the command execution time. Base task: Extract selected columns.

time cut -d, -f1,3 users.csv
Open →
Linux
cut — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Extract selected columns.

watch -n 5 'cut -d, -f1,3 users.csv'
Open →
Linux
cut — Run with timestamp

Print a timestamp immediately before running the command. Base task: Extract selected columns.

date --iso-8601=seconds; cut -d, -f1,3 users.csv
Open →
Linux
cut — Run in background

Run the command in the background and log its output. Base task: Extract selected columns.

nohup sh -c 'cut -d, -f1,3 users.csv' > command-results.log 2>&1 &
Open →
Linux
sort — Save output

Save standard output and errors to a text file. Base task: Sort and deduplicate lines.

sort -u names.txt > command-results.txt 2>&1
Open →
Linux
sort — Display and save output

Display output while saving it to a file. Base task: Sort and deduplicate lines.

sort -u names.txt 2>&1 | tee command-results.txt
Open →
Linux
sort — Measure execution time

Measure the command execution time. Base task: Sort and deduplicate lines.

time sort -u names.txt
Open →
Linux
sort — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Sort and deduplicate lines.

watch -n 5 'sort -u names.txt'
Open →
Linux
sort — Run with timestamp

Print a timestamp immediately before running the command. Base task: Sort and deduplicate lines.

date --iso-8601=seconds; sort -u names.txt
Open →
Linux
sort — Run in background

Run the command in the background and log its output. Base task: Sort and deduplicate lines.

nohup sh -c 'sort -u names.txt' > command-results.log 2>&1 &
Open →
Linux
uniq — Save output

Save standard output and errors to a text file. Base task: Count repeated adjacent lines.

sort access.log | uniq -c > command-results.txt 2>&1
Open →
Linux
uniq — Display and save output

Display output while saving it to a file. Base task: Count repeated adjacent lines.

sort access.log | uniq -c 2>&1 | tee command-results.txt
Open →
Linux
uniq — Measure execution time

Measure the command execution time. Base task: Count repeated adjacent lines.

time sort access.log | uniq -c
Open →
Linux
uniq — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Count repeated adjacent lines.

watch -n 5 'sort access.log | uniq -c'
Open →
Linux
uniq — Run with timestamp

Print a timestamp immediately before running the command. Base task: Count repeated adjacent lines.

date --iso-8601=seconds; sort access.log | uniq -c
Open →
Linux
uniq — Run in background

Run the command in the background and log its output. Base task: Count repeated adjacent lines.

nohup sh -c 'sort access.log | uniq -c' > command-results.log 2>&1 &
Open →
Linux
wc — Save output

Save standard output and errors to a text file. Base task: Count lines in a file.

wc -l access.log > command-results.txt 2>&1
Open →
Linux
wc — Display and save output

Display output while saving it to a file. Base task: Count lines in a file.

wc -l access.log 2>&1 | tee command-results.txt
Open →
Linux
wc — Measure execution time

Measure the command execution time. Base task: Count lines in a file.

time wc -l access.log
Open →
Linux
wc — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Count lines in a file.

watch -n 5 'wc -l access.log'
Open →
Linux
wc — Run with timestamp

Print a timestamp immediately before running the command. Base task: Count lines in a file.

date --iso-8601=seconds; wc -l access.log
Open →
Linux
wc — Run in background

Run the command in the background and log its output. Base task: Count lines in a file.

nohup sh -c 'wc -l access.log' > command-results.log 2>&1 &
Open →
Linux
xargs — Save output

Save standard output and errors to a text file. Base task: Build command arguments from input.

find /tmp -name "*.tmp" -print0 | xargs -0 rm -f > command-results.txt 2>&1
Open →
Linux
xargs — Display and save output

Display output while saving it to a file. Base task: Build command arguments from input.

find /tmp -name "*.tmp" -print0 | xargs -0 rm -f 2>&1 | tee command-results.txt
Open →
Linux
xargs — Measure execution time

Measure the command execution time. Base task: Build command arguments from input.

time find /tmp -name "*.tmp" -print0 | xargs -0 rm -f
Open →
Linux
xargs — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Build command arguments from input.

watch -n 5 'find /tmp -name "*.tmp" -print0 | xargs -0 rm -f'
Open →
Linux
xargs — Run with timestamp

Print a timestamp immediately before running the command. Base task: Build command arguments from input.

date --iso-8601=seconds; find /tmp -name "*.tmp" -print0 | xargs -0 rm -f
Open →
Linux
xargs — Run in background

Run the command in the background and log its output. Base task: Build command arguments from input.

nohup sh -c 'find /tmp -name "*.tmp" -print0 | xargs -0 rm -f' > command-results.log 2>&1 &
Open →
Linux
tee — Save output

Save standard output and errors to a text file. Base task: Write output to a file with elevated privileges.

echo "enabled=true" | sudo tee /etc/app.conf > command-results.txt 2>&1
Open →
Linux
tee — Display and save output

Display output while saving it to a file. Base task: Write output to a file with elevated privileges.

echo "enabled=true" | sudo tee /etc/app.conf 2>&1 | tee command-results.txt
Open →
Linux
tee — Measure execution time

Measure the command execution time. Base task: Write output to a file with elevated privileges.

time echo "enabled=true" | sudo tee /etc/app.conf
Open →
Linux
tee — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Write output to a file with elevated privileges.

watch -n 5 'echo "enabled=true" | sudo tee /etc/app.conf'
Open →
Linux
tee — Run with timestamp

Print a timestamp immediately before running the command. Base task: Write output to a file with elevated privileges.

date --iso-8601=seconds; echo "enabled=true" | sudo tee /etc/app.conf
Open →
Linux
tee — Run in background

Run the command in the background and log its output. Base task: Write output to a file with elevated privileges.

nohup sh -c 'echo "enabled=true" | sudo tee /etc/app.conf' > command-results.log 2>&1 &
Open →
Linux
env — Save output

Save standard output and errors to a text file. Base task: Display environment variables.

env | sort > command-results.txt 2>&1
Open →
Linux
env — Display and save output

Display output while saving it to a file. Base task: Display environment variables.

env | sort 2>&1 | tee command-results.txt
Open →
Linux
env — Measure execution time

Measure the command execution time. Base task: Display environment variables.

time env | sort
Open →
Linux
env — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display environment variables.

watch -n 5 'env | sort'
Open →
Linux
env — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display environment variables.

date --iso-8601=seconds; env | sort
Open →
Linux
env — Run in background

Run the command in the background and log its output. Base task: Display environment variables.

nohup sh -c 'env | sort' > command-results.log 2>&1 &
Open →
Linux
export — Save output

Save standard output and errors to a text file. Base task: Set an environment variable for the shell.

export APP_ENV=production > command-results.txt 2>&1
Open →
Linux
export — Display and save output

Display output while saving it to a file. Base task: Set an environment variable for the shell.

export APP_ENV=production 2>&1 | tee command-results.txt
Open →
Linux
export — Measure execution time

Measure the command execution time. Base task: Set an environment variable for the shell.

time export APP_ENV=production
Open →
Linux
export — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Set an environment variable for the shell.

watch -n 5 'export APP_ENV=production'
Open →
Linux
export — Run with timestamp

Print a timestamp immediately before running the command. Base task: Set an environment variable for the shell.

date --iso-8601=seconds; export APP_ENV=production
Open →
Linux
export — Run in background

Run the command in the background and log its output. Base task: Set an environment variable for the shell.

nohup sh -c 'export APP_ENV=production' > command-results.log 2>&1 &
Open →
Linux
crontab — Save output

Save standard output and errors to a text file. Base task: List the current user cron jobs.

crontab -l > command-results.txt 2>&1
Open →
Linux
crontab — Display and save output

Display output while saving it to a file. Base task: List the current user cron jobs.

crontab -l 2>&1 | tee command-results.txt
Open →
Linux
crontab — Measure execution time

Measure the command execution time. Base task: List the current user cron jobs.

time crontab -l
Open →
Linux
crontab — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List the current user cron jobs.

watch -n 5 'crontab -l'
Open →
Linux
crontab — Run with timestamp

Print a timestamp immediately before running the command. Base task: List the current user cron jobs.

date --iso-8601=seconds; crontab -l
Open →
Linux
crontab — Run in background

Run the command in the background and log its output. Base task: List the current user cron jobs.

nohup sh -c 'crontab -l' > command-results.log 2>&1 &
Open →
Linux
apt update — Save output

Save standard output and errors to a text file. Base task: Refresh package indexes on Debian or Ubuntu.

sudo apt update > command-results.txt 2>&1
Open →
Linux
apt update — Display and save output

Display output while saving it to a file. Base task: Refresh package indexes on Debian or Ubuntu.

sudo apt update 2>&1 | tee command-results.txt
Open →
Linux
apt update — Measure execution time

Measure the command execution time. Base task: Refresh package indexes on Debian or Ubuntu.

time sudo apt update
Open →
Linux
apt update — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Refresh package indexes on Debian or Ubuntu.

watch -n 5 'sudo apt update'
Open →
Linux
apt update — Run with timestamp

Print a timestamp immediately before running the command. Base task: Refresh package indexes on Debian or Ubuntu.

date --iso-8601=seconds; sudo apt update
Open →
Linux
apt update — Run in background

Run the command in the background and log its output. Base task: Refresh package indexes on Debian or Ubuntu.

nohup sh -c 'sudo apt update' > command-results.log 2>&1 &
Open →
Linux
apt upgrade — Save output

Save standard output and errors to a text file. Base task: Install available package upgrades.

sudo apt upgrade > command-results.txt 2>&1
Open →
Linux
apt upgrade — Display and save output

Display output while saving it to a file. Base task: Install available package upgrades.

sudo apt upgrade 2>&1 | tee command-results.txt
Open →
Linux
apt upgrade — Measure execution time

Measure the command execution time. Base task: Install available package upgrades.

time sudo apt upgrade
Open →
Linux
apt upgrade — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Install available package upgrades.

watch -n 5 'sudo apt upgrade'
Open →
Linux
apt upgrade — Run with timestamp

Print a timestamp immediately before running the command. Base task: Install available package upgrades.

date --iso-8601=seconds; sudo apt upgrade
Open →
Linux
apt upgrade — Run in background

Run the command in the background and log its output. Base task: Install available package upgrades.

nohup sh -c 'sudo apt upgrade' > command-results.log 2>&1 &
Open →
Linux
dnf update — Save output

Save standard output and errors to a text file. Base task: Update packages on modern RHEL-family systems.

sudo dnf update > command-results.txt 2>&1
Open →
Linux
dnf update — Display and save output

Display output while saving it to a file. Base task: Update packages on modern RHEL-family systems.

sudo dnf update 2>&1 | tee command-results.txt
Open →
Linux
dnf update — Measure execution time

Measure the command execution time. Base task: Update packages on modern RHEL-family systems.

time sudo dnf update
Open →
Linux
dnf update — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Update packages on modern RHEL-family systems.

watch -n 5 'sudo dnf update'
Open →
Linux
dnf update — Run with timestamp

Print a timestamp immediately before running the command. Base task: Update packages on modern RHEL-family systems.

date --iso-8601=seconds; sudo dnf update
Open →
Linux
dnf update — Run in background

Run the command in the background and log its output. Base task: Update packages on modern RHEL-family systems.

nohup sh -c 'sudo dnf update' > command-results.log 2>&1 &
Open →
Linux
rpm query — Save output

Save standard output and errors to a text file. Base task: List installed RPM packages.

rpm -qa | sort > command-results.txt 2>&1
Open →
Linux
rpm query — Display and save output

Display output while saving it to a file. Base task: List installed RPM packages.

rpm -qa | sort 2>&1 | tee command-results.txt
Open →
Linux
rpm query — Measure execution time

Measure the command execution time. Base task: List installed RPM packages.

time rpm -qa | sort
Open →
Linux
rpm query — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List installed RPM packages.

watch -n 5 'rpm -qa | sort'
Open →
Linux
rpm query — Run with timestamp

Print a timestamp immediately before running the command. Base task: List installed RPM packages.

date --iso-8601=seconds; rpm -qa | sort
Open →
Linux
rpm query — Run in background

Run the command in the background and log its output. Base task: List installed RPM packages.

nohup sh -c 'rpm -qa | sort' > command-results.log 2>&1 &
Open →
Linux
dpkg query — Save output

Save standard output and errors to a text file. Base task: List installed Debian packages.

dpkg -l > command-results.txt 2>&1
Open →
Linux
dpkg query — Display and save output

Display output while saving it to a file. Base task: List installed Debian packages.

dpkg -l 2>&1 | tee command-results.txt
Open →
Linux
dpkg query — Measure execution time

Measure the command execution time. Base task: List installed Debian packages.

time dpkg -l
Open →
Linux
dpkg query — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List installed Debian packages.

watch -n 5 'dpkg -l'
Open →
Linux
dpkg query — Run with timestamp

Print a timestamp immediately before running the command. Base task: List installed Debian packages.

date --iso-8601=seconds; dpkg -l
Open →
Linux
dpkg query — Run in background

Run the command in the background and log its output. Base task: List installed Debian packages.

nohup sh -c 'dpkg -l' > command-results.log 2>&1 &
Open →
Linux
uname — Save output

Save standard output and errors to a text file. Base task: Display kernel and architecture information.

uname -a > command-results.txt 2>&1
Open →
Linux
uname — Display and save output

Display output while saving it to a file. Base task: Display kernel and architecture information.

uname -a 2>&1 | tee command-results.txt
Open →
Linux
uname — Measure execution time

Measure the command execution time. Base task: Display kernel and architecture information.

time uname -a
Open →
Linux
uname — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display kernel and architecture information.

watch -n 5 'uname -a'
Open →
Linux
uname — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display kernel and architecture information.

date --iso-8601=seconds; uname -a
Open →
Linux
uname — Run in background

Run the command in the background and log its output. Base task: Display kernel and architecture information.

nohup sh -c 'uname -a' > command-results.log 2>&1 &
Open →
Linux
hostnamectl — Save output

Save standard output and errors to a text file. Base task: Display host and operating system information.

hostnamectl > command-results.txt 2>&1
Open →
Linux
hostnamectl — Display and save output

Display output while saving it to a file. Base task: Display host and operating system information.

hostnamectl 2>&1 | tee command-results.txt
Open →
Linux
hostnamectl — Measure execution time

Measure the command execution time. Base task: Display host and operating system information.

time hostnamectl
Open →
Linux
hostnamectl — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display host and operating system information.

watch -n 5 'hostnamectl'
Open →
Linux
hostnamectl — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display host and operating system information.

date --iso-8601=seconds; hostnamectl
Open →
Linux
hostnamectl — Run in background

Run the command in the background and log its output. Base task: Display host and operating system information.

nohup sh -c 'hostnamectl' > command-results.log 2>&1 &
Open →
Linux
timedatectl — Save output

Save standard output and errors to a text file. Base task: Display time and timezone settings.

timedatectl > command-results.txt 2>&1
Open →
Linux
timedatectl — Display and save output

Display output while saving it to a file. Base task: Display time and timezone settings.

timedatectl 2>&1 | tee command-results.txt
Open →
Linux
timedatectl — Measure execution time

Measure the command execution time. Base task: Display time and timezone settings.

time timedatectl
Open →
Linux
timedatectl — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display time and timezone settings.

watch -n 5 'timedatectl'
Open →
Linux
timedatectl — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display time and timezone settings.

date --iso-8601=seconds; timedatectl
Open →
Linux
timedatectl — Run in background

Run the command in the background and log its output. Base task: Display time and timezone settings.

nohup sh -c 'timedatectl' > command-results.log 2>&1 &
Open →
Linux
lsblk — Save output

Save standard output and errors to a text file. Base task: List block devices and filesystems.

lsblk -f > command-results.txt 2>&1
Open →
Linux
lsblk — Display and save output

Display output while saving it to a file. Base task: List block devices and filesystems.

lsblk -f 2>&1 | tee command-results.txt
Open →
Linux
lsblk — Measure execution time

Measure the command execution time. Base task: List block devices and filesystems.

time lsblk -f
Open →
Linux
lsblk — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List block devices and filesystems.

watch -n 5 'lsblk -f'
Open →
Linux
lsblk — Run with timestamp

Print a timestamp immediately before running the command. Base task: List block devices and filesystems.

date --iso-8601=seconds; lsblk -f
Open →
Linux
lsblk — Run in background

Run the command in the background and log its output. Base task: List block devices and filesystems.

nohup sh -c 'lsblk -f' > command-results.log 2>&1 &
Open →
Linux
mount — Save output

Save standard output and errors to a text file. Base task: Display mounted filesystems.

mount | column -t > command-results.txt 2>&1
Open →
Linux
mount — Display and save output

Display output while saving it to a file. Base task: Display mounted filesystems.

mount | column -t 2>&1 | tee command-results.txt
Open →
Linux
mount — Measure execution time

Measure the command execution time. Base task: Display mounted filesystems.

time mount | column -t
Open →
Linux
mount — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display mounted filesystems.

watch -n 5 'mount | column -t'
Open →
Linux
mount — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display mounted filesystems.

date --iso-8601=seconds; mount | column -t
Open →
Linux
mount — Run in background

Run the command in the background and log its output. Base task: Display mounted filesystems.

nohup sh -c 'mount | column -t' > command-results.log 2>&1 &
Open →
Linux
fdisk — Save output

Save standard output and errors to a text file. Base task: List disk partition tables.

sudo fdisk -l > command-results.txt 2>&1
Open →
Linux
fdisk — Display and save output

Display output while saving it to a file. Base task: List disk partition tables.

sudo fdisk -l 2>&1 | tee command-results.txt
Open →
Linux
fdisk — Measure execution time

Measure the command execution time. Base task: List disk partition tables.

time sudo fdisk -l
Open →
Linux
fdisk — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List disk partition tables.

watch -n 5 'sudo fdisk -l'
Open →
Linux
fdisk — Run with timestamp

Print a timestamp immediately before running the command. Base task: List disk partition tables.

date --iso-8601=seconds; sudo fdisk -l
Open →
Linux
fdisk — Run in background

Run the command in the background and log its output. Base task: List disk partition tables.

nohup sh -c 'sudo fdisk -l' > command-results.log 2>&1 &
Open →
Linux
lsof — Save output

Save standard output and errors to a text file. Base task: List processes using a network port.

sudo lsof -i :443 > command-results.txt 2>&1
Open →
Linux
lsof — Display and save output

Display output while saving it to a file. Base task: List processes using a network port.

sudo lsof -i :443 2>&1 | tee command-results.txt
Open →
Linux
lsof — Measure execution time

Measure the command execution time. Base task: List processes using a network port.

time sudo lsof -i :443
Open →
Linux
lsof — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List processes using a network port.

watch -n 5 'sudo lsof -i :443'
Open →
Linux
lsof — Run with timestamp

Print a timestamp immediately before running the command. Base task: List processes using a network port.

date --iso-8601=seconds; sudo lsof -i :443
Open →
Linux
lsof — Run in background

Run the command in the background and log its output. Base task: List processes using a network port.

nohup sh -c 'sudo lsof -i :443' > command-results.log 2>&1 &
Open →
Linux
openssl s_client — Save output

Save standard output and errors to a text file. Base task: Inspect a TLS connection and certificate chain.

openssl s_client -connect example.com:443 -servername example.com > command-results.txt 2>&1
Open →
Linux
openssl s_client — Display and save output

Display output while saving it to a file. Base task: Inspect a TLS connection and certificate chain.

openssl s_client -connect example.com:443 -servername example.com 2>&1 | tee command-results.txt
Open →
Linux
openssl s_client — Measure execution time

Measure the command execution time. Base task: Inspect a TLS connection and certificate chain.

time openssl s_client -connect example.com:443 -servername example.com
Open →
Linux
openssl s_client — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Inspect a TLS connection and certificate chain.

watch -n 5 'openssl s_client -connect example.com:443 -servername example.com'
Open →
Linux
openssl s_client — Run with timestamp

Print a timestamp immediately before running the command. Base task: Inspect a TLS connection and certificate chain.

date --iso-8601=seconds; openssl s_client -connect example.com:443 -servername example.com
Open →
Linux
openssl s_client — Run in background

Run the command in the background and log its output. Base task: Inspect a TLS connection and certificate chain.

nohup sh -c 'openssl s_client -connect example.com:443 -servername example.com' > command-results.log 2>&1 &
Open →
Linux
openssl x509 — Save output

Save standard output and errors to a text file. Base task: Display certificate details.

openssl x509 -in cert.pem -noout -text > command-results.txt 2>&1
Open →
Linux
openssl x509 — Display and save output

Display output while saving it to a file. Base task: Display certificate details.

openssl x509 -in cert.pem -noout -text 2>&1 | tee command-results.txt
Open →
Linux
openssl x509 — Measure execution time

Measure the command execution time. Base task: Display certificate details.

time openssl x509 -in cert.pem -noout -text
Open →
Linux
openssl x509 — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display certificate details.

watch -n 5 'openssl x509 -in cert.pem -noout -text'
Open →
Linux
openssl x509 — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display certificate details.

date --iso-8601=seconds; openssl x509 -in cert.pem -noout -text
Open →
Linux
openssl x509 — Run in background

Run the command in the background and log its output. Base task: Display certificate details.

nohup sh -c 'openssl x509 -in cert.pem -noout -text' > command-results.log 2>&1 &
Open →
Linux
sha256sum — Save output

Save standard output and errors to a text file. Base task: Calculate a SHA-256 checksum.

sha256sum installer.iso > command-results.txt 2>&1
Open →
Linux
sha256sum — Display and save output

Display output while saving it to a file. Base task: Calculate a SHA-256 checksum.

sha256sum installer.iso 2>&1 | tee command-results.txt
Open →
Linux
sha256sum — Measure execution time

Measure the command execution time. Base task: Calculate a SHA-256 checksum.

time sha256sum installer.iso
Open →
Linux
sha256sum — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Calculate a SHA-256 checksum.

watch -n 5 'sha256sum installer.iso'
Open →
Linux
sha256sum — Run with timestamp

Print a timestamp immediately before running the command. Base task: Calculate a SHA-256 checksum.

date --iso-8601=seconds; sha256sum installer.iso
Open →
Linux
sha256sum — Run in background

Run the command in the background and log its output. Base task: Calculate a SHA-256 checksum.

nohup sh -c 'sha256sum installer.iso' > command-results.log 2>&1 &
Open →
Linux
ls — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ls for documentation or review.

ls -lah /var/log > output.txt > command-results.txt 2>&1
Open →
Linux
ls — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ls for documentation or review.

ls -lah /var/log > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ls — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ls for documentation or review.

time ls -lah /var/log > output.txt
Open →
Linux
ls — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ls for documentation or review.

watch -n 5 'ls -lah /var/log > output.txt'
Open →
Linux
ls — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ls for documentation or review.

date --iso-8601=seconds; ls -lah /var/log > output.txt
Open →
Linux
ls — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ls for documentation or review.

nohup sh -c 'ls -lah /var/log > output.txt' > command-results.log 2>&1 &
Open →
Linux
cd — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of cd for documentation or review.

cd /var/log > output.txt > command-results.txt 2>&1
Open →
Linux
cd — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of cd for documentation or review.

cd /var/log > output.txt 2>&1 | tee command-results.txt
Open →
Linux
cd — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of cd for documentation or review.

time cd /var/log > output.txt
Open →
Linux
cd — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of cd for documentation or review.

watch -n 5 'cd /var/log > output.txt'
Open →
Linux
cd — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of cd for documentation or review.

date --iso-8601=seconds; cd /var/log > output.txt
Open →
Linux
cd — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of cd for documentation or review.

nohup sh -c 'cd /var/log > output.txt' > command-results.log 2>&1 &
Open →
Linux
pwd — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of pwd for documentation or review.

pwd > output.txt > command-results.txt 2>&1
Open →
Linux
pwd — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of pwd for documentation or review.

pwd > output.txt 2>&1 | tee command-results.txt
Open →
Linux
pwd — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of pwd for documentation or review.

time pwd > output.txt
Open →
Linux
pwd — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of pwd for documentation or review.

watch -n 5 'pwd > output.txt'
Open →
Linux
pwd — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of pwd for documentation or review.

date --iso-8601=seconds; pwd > output.txt
Open →
Linux
pwd — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of pwd for documentation or review.

nohup sh -c 'pwd > output.txt' > command-results.log 2>&1 &
Open →
Linux
cp — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of cp for documentation or review.

cp -a /source/. /backup/ > output.txt > command-results.txt 2>&1
Open →
Linux
cp — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of cp for documentation or review.

cp -a /source/. /backup/ > output.txt 2>&1 | tee command-results.txt
Open →
Linux
cp — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of cp for documentation or review.

time cp -a /source/. /backup/ > output.txt
Open →
Linux
cp — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of cp for documentation or review.

watch -n 5 'cp -a /source/. /backup/ > output.txt'
Open →
Linux
cp — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of cp for documentation or review.

date --iso-8601=seconds; cp -a /source/. /backup/ > output.txt
Open →
Linux
cp — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of cp for documentation or review.

nohup sh -c 'cp -a /source/. /backup/ > output.txt' > command-results.log 2>&1 &
Open →
Linux
mv — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of mv for documentation or review.

mv old.log archive/ > output.txt > command-results.txt 2>&1
Open →
Linux
mv — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of mv for documentation or review.

mv old.log archive/ > output.txt 2>&1 | tee command-results.txt
Open →
Linux
mv — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of mv for documentation or review.

time mv old.log archive/ > output.txt
Open →
Linux
mv — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of mv for documentation or review.

watch -n 5 'mv old.log archive/ > output.txt'
Open →
Linux
mv — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of mv for documentation or review.

date --iso-8601=seconds; mv old.log archive/ > output.txt
Open →
Linux
mv — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of mv for documentation or review.

nohup sh -c 'mv old.log archive/ > output.txt' > command-results.log 2>&1 &
Open →
Linux
rm — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of rm for documentation or review.

rm -i old.log > output.txt > command-results.txt 2>&1
Open →
Linux
rm — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of rm for documentation or review.

rm -i old.log > output.txt 2>&1 | tee command-results.txt
Open →
Linux
rm — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of rm for documentation or review.

time rm -i old.log > output.txt
Open →
Linux
rm — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of rm for documentation or review.

watch -n 5 'rm -i old.log > output.txt'
Open →
Linux
rm — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of rm for documentation or review.

date --iso-8601=seconds; rm -i old.log > output.txt
Open →
Linux
rm — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of rm for documentation or review.

nohup sh -c 'rm -i old.log > output.txt' > command-results.log 2>&1 &
Open →
Linux
mkdir — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of mkdir for documentation or review.

mkdir -p /opt/app/logs > output.txt > command-results.txt 2>&1
Open →
Linux
mkdir — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of mkdir for documentation or review.

mkdir -p /opt/app/logs > output.txt 2>&1 | tee command-results.txt
Open →
Linux
mkdir — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of mkdir for documentation or review.

time mkdir -p /opt/app/logs > output.txt
Open →
Linux
mkdir — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of mkdir for documentation or review.

watch -n 5 'mkdir -p /opt/app/logs > output.txt'
Open →
Linux
mkdir — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of mkdir for documentation or review.

date --iso-8601=seconds; mkdir -p /opt/app/logs > output.txt
Open →
Linux
mkdir — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of mkdir for documentation or review.

nohup sh -c 'mkdir -p /opt/app/logs > output.txt' > command-results.log 2>&1 &
Open →
Linux
touch — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of touch for documentation or review.

touch /tmp/healthcheck.txt > output.txt > command-results.txt 2>&1
Open →
Linux
touch — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of touch for documentation or review.

touch /tmp/healthcheck.txt > output.txt 2>&1 | tee command-results.txt
Open →
Linux
touch — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of touch for documentation or review.

time touch /tmp/healthcheck.txt > output.txt
Open →
Linux
touch — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of touch for documentation or review.

watch -n 5 'touch /tmp/healthcheck.txt > output.txt'
Open →
Linux
touch — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of touch for documentation or review.

date --iso-8601=seconds; touch /tmp/healthcheck.txt > output.txt
Open →
Linux
touch — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of touch for documentation or review.

nohup sh -c 'touch /tmp/healthcheck.txt > output.txt' > command-results.log 2>&1 &
Open →
Linux
cat — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of cat for documentation or review.

cat /etc/os-release > output.txt > command-results.txt 2>&1
Open →
Linux
cat — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of cat for documentation or review.

cat /etc/os-release > output.txt 2>&1 | tee command-results.txt
Open →
Linux
cat — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of cat for documentation or review.

time cat /etc/os-release > output.txt
Open →
Linux
cat — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of cat for documentation or review.

watch -n 5 'cat /etc/os-release > output.txt'
Open →
Linux
cat — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of cat for documentation or review.

date --iso-8601=seconds; cat /etc/os-release > output.txt
Open →
Linux
cat — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of cat for documentation or review.

nohup sh -c 'cat /etc/os-release > output.txt' > command-results.log 2>&1 &
Open →
Linux
less — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of less for documentation or review.

less /var/log/syslog > output.txt > command-results.txt 2>&1
Open →
Linux
less — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of less for documentation or review.

less /var/log/syslog > output.txt 2>&1 | tee command-results.txt
Open →
Linux
less — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of less for documentation or review.

time less /var/log/syslog > output.txt
Open →
Linux
less — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of less for documentation or review.

watch -n 5 'less /var/log/syslog > output.txt'
Open →
Linux
less — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of less for documentation or review.

date --iso-8601=seconds; less /var/log/syslog > output.txt
Open →
Linux
less — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of less for documentation or review.

nohup sh -c 'less /var/log/syslog > output.txt' > command-results.log 2>&1 &
Open →
Linux
head — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of head for documentation or review.

head -n 20 /var/log/syslog > output.txt > command-results.txt 2>&1
Open →
Linux
head — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of head for documentation or review.

head -n 20 /var/log/syslog > output.txt 2>&1 | tee command-results.txt
Open →
Linux
head — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of head for documentation or review.

time head -n 20 /var/log/syslog > output.txt
Open →
Linux
head — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of head for documentation or review.

watch -n 5 'head -n 20 /var/log/syslog > output.txt'
Open →
Linux
head — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of head for documentation or review.

date --iso-8601=seconds; head -n 20 /var/log/syslog > output.txt
Open →
Linux
head — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of head for documentation or review.

nohup sh -c 'head -n 20 /var/log/syslog > output.txt' > command-results.log 2>&1 &
Open →
Linux
tail — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of tail for documentation or review.

tail -f /var/log/syslog > output.txt > command-results.txt 2>&1
Open →
Linux
tail — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of tail for documentation or review.

tail -f /var/log/syslog > output.txt 2>&1 | tee command-results.txt
Open →
Linux
tail — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of tail for documentation or review.

time tail -f /var/log/syslog > output.txt
Open →
Linux
tail — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of tail for documentation or review.

watch -n 5 'tail -f /var/log/syslog > output.txt'
Open →
Linux
tail — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of tail for documentation or review.

date --iso-8601=seconds; tail -f /var/log/syslog > output.txt
Open →
Linux
tail — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of tail for documentation or review.

nohup sh -c 'tail -f /var/log/syslog > output.txt' > command-results.log 2>&1 &
Open →
Linux
grep — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of grep for documentation or review.

grep -Rni "error" /var/log/app > output.txt > command-results.txt 2>&1
Open →
Linux
grep — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of grep for documentation or review.

grep -Rni "error" /var/log/app > output.txt 2>&1 | tee command-results.txt
Open →
Linux
grep — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of grep for documentation or review.

time grep -Rni "error" /var/log/app > output.txt
Open →
Linux
grep — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of grep for documentation or review.

watch -n 5 'grep -Rni "error" /var/log/app > output.txt'
Open →
Linux
grep — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of grep for documentation or review.

date --iso-8601=seconds; grep -Rni "error" /var/log/app > output.txt
Open →
Linux
grep — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of grep for documentation or review.

nohup sh -c 'grep -Rni "error" /var/log/app > output.txt' > command-results.log 2>&1 &
Open →
Linux
find — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of find for documentation or review.

find /var/log -type f -mtime -1 > output.txt > command-results.txt 2>&1
Open →
Linux
find — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of find for documentation or review.

find /var/log -type f -mtime -1 > output.txt 2>&1 | tee command-results.txt
Open →
Linux
find — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of find for documentation or review.

time find /var/log -type f -mtime -1 > output.txt
Open →
Linux
find — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of find for documentation or review.

watch -n 5 'find /var/log -type f -mtime -1 > output.txt'
Open →
Linux
find — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of find for documentation or review.

date --iso-8601=seconds; find /var/log -type f -mtime -1 > output.txt
Open →
Linux
find — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of find for documentation or review.

nohup sh -c 'find /var/log -type f -mtime -1 > output.txt' > command-results.log 2>&1 &
Open →
Linux
locate — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of locate for documentation or review.

locate sshd_config > output.txt > command-results.txt 2>&1
Open →
Linux
locate — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of locate for documentation or review.

locate sshd_config > output.txt 2>&1 | tee command-results.txt
Open →
Linux
locate — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of locate for documentation or review.

time locate sshd_config > output.txt
Open →
Linux
locate — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of locate for documentation or review.

watch -n 5 'locate sshd_config > output.txt'
Open →
Linux
locate — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of locate for documentation or review.

date --iso-8601=seconds; locate sshd_config > output.txt
Open →
Linux
locate — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of locate for documentation or review.

nohup sh -c 'locate sshd_config > output.txt' > command-results.log 2>&1 &
Open →
Linux
which — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of which for documentation or review.

which python3 > output.txt > command-results.txt 2>&1
Open →
Linux
which — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of which for documentation or review.

which python3 > output.txt 2>&1 | tee command-results.txt
Open →
Linux
which — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of which for documentation or review.

time which python3 > output.txt
Open →
Linux
which — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of which for documentation or review.

watch -n 5 'which python3 > output.txt'
Open →
Linux
which — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of which for documentation or review.

date --iso-8601=seconds; which python3 > output.txt
Open →
Linux
which — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of which for documentation or review.

nohup sh -c 'which python3 > output.txt' > command-results.log 2>&1 &
Open →
Linux
whereis — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of whereis for documentation or review.

whereis nginx > output.txt > command-results.txt 2>&1
Open →
Linux
whereis — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of whereis for documentation or review.

whereis nginx > output.txt 2>&1 | tee command-results.txt
Open →
Linux
whereis — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of whereis for documentation or review.

time whereis nginx > output.txt
Open →
Linux
whereis — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of whereis for documentation or review.

watch -n 5 'whereis nginx > output.txt'
Open →
Linux
whereis — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of whereis for documentation or review.

date --iso-8601=seconds; whereis nginx > output.txt
Open →
Linux
whereis — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of whereis for documentation or review.

nohup sh -c 'whereis nginx > output.txt' > command-results.log 2>&1 &
Open →
Linux
chmod — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of chmod for documentation or review.

chmod 640 /etc/app.conf > output.txt > command-results.txt 2>&1
Open →
Linux
chmod — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of chmod for documentation or review.

chmod 640 /etc/app.conf > output.txt 2>&1 | tee command-results.txt
Open →
Linux
chmod — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of chmod for documentation or review.

time chmod 640 /etc/app.conf > output.txt
Open →
Linux
chmod — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of chmod for documentation or review.

watch -n 5 'chmod 640 /etc/app.conf > output.txt'
Open →
Linux
chmod — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of chmod for documentation or review.

date --iso-8601=seconds; chmod 640 /etc/app.conf > output.txt
Open →
Linux
chmod — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of chmod for documentation or review.

nohup sh -c 'chmod 640 /etc/app.conf > output.txt' > command-results.log 2>&1 &
Open →
Linux
chown — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of chown for documentation or review.

chown root:app /etc/app.conf > output.txt > command-results.txt 2>&1
Open →
Linux
chown — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of chown for documentation or review.

chown root:app /etc/app.conf > output.txt 2>&1 | tee command-results.txt
Open →
Linux
chown — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of chown for documentation or review.

time chown root:app /etc/app.conf > output.txt
Open →
Linux
chown — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of chown for documentation or review.

watch -n 5 'chown root:app /etc/app.conf > output.txt'
Open →
Linux
chown — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of chown for documentation or review.

date --iso-8601=seconds; chown root:app /etc/app.conf > output.txt
Open →
Linux
chown — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of chown for documentation or review.

nohup sh -c 'chown root:app /etc/app.conf > output.txt' > command-results.log 2>&1 &
Open →
Linux
ln — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ln for documentation or review.

ln -s /opt/app/current /var/www/app > output.txt > command-results.txt 2>&1
Open →
Linux
ln — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ln for documentation or review.

ln -s /opt/app/current /var/www/app > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ln — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ln for documentation or review.

time ln -s /opt/app/current /var/www/app > output.txt
Open →
Linux
ln — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ln for documentation or review.

watch -n 5 'ln -s /opt/app/current /var/www/app > output.txt'
Open →
Linux
ln — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ln for documentation or review.

date --iso-8601=seconds; ln -s /opt/app/current /var/www/app > output.txt
Open →
Linux
ln — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ln for documentation or review.

nohup sh -c 'ln -s /opt/app/current /var/www/app > output.txt' > command-results.log 2>&1 &
Open →
Linux
df — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of df for documentation or review.

df -hT > output.txt > command-results.txt 2>&1
Open →
Linux
df — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of df for documentation or review.

df -hT > output.txt 2>&1 | tee command-results.txt
Open →
Linux
df — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of df for documentation or review.

time df -hT > output.txt
Open →
Linux
df — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of df for documentation or review.

watch -n 5 'df -hT > output.txt'
Open →
Linux
df — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of df for documentation or review.

date --iso-8601=seconds; df -hT > output.txt
Open →
Linux
df — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of df for documentation or review.

nohup sh -c 'df -hT > output.txt' > command-results.log 2>&1 &
Open →
Linux
du — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of du for documentation or review.

du -sh /var/log/* | sort -h > output.txt > command-results.txt 2>&1
Open →
Linux
du — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of du for documentation or review.

du -sh /var/log/* | sort -h > output.txt 2>&1 | tee command-results.txt
Open →
Linux
du — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of du for documentation or review.

time du -sh /var/log/* | sort -h > output.txt
Open →
Linux
du — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of du for documentation or review.

watch -n 5 'du -sh /var/log/* | sort -h > output.txt'
Open →
Linux
du — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of du for documentation or review.

date --iso-8601=seconds; du -sh /var/log/* | sort -h > output.txt
Open →
Linux
du — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of du for documentation or review.

nohup sh -c 'du -sh /var/log/* | sort -h > output.txt' > command-results.log 2>&1 &
Open →
Linux
free — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of free for documentation or review.

free -h > output.txt > command-results.txt 2>&1
Open →
Linux
free — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of free for documentation or review.

free -h > output.txt 2>&1 | tee command-results.txt
Open →
Linux
free — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of free for documentation or review.

time free -h > output.txt
Open →
Linux
free — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of free for documentation or review.

watch -n 5 'free -h > output.txt'
Open →
Linux
free — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of free for documentation or review.

date --iso-8601=seconds; free -h > output.txt
Open →
Linux
free — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of free for documentation or review.

nohup sh -c 'free -h > output.txt' > command-results.log 2>&1 &
Open →
Linux
uptime — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of uptime for documentation or review.

uptime > output.txt > command-results.txt 2>&1
Open →
Linux
uptime — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of uptime for documentation or review.

uptime > output.txt 2>&1 | tee command-results.txt
Open →
Linux
uptime — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of uptime for documentation or review.

time uptime > output.txt
Open →
Linux
uptime — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of uptime for documentation or review.

watch -n 5 'uptime > output.txt'
Open →
Linux
uptime — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of uptime for documentation or review.

date --iso-8601=seconds; uptime > output.txt
Open →
Linux
uptime — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of uptime for documentation or review.

nohup sh -c 'uptime > output.txt' > command-results.log 2>&1 &
Open →
Linux
top — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of top for documentation or review.

top > output.txt > command-results.txt 2>&1
Open →
Linux
top — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of top for documentation or review.

top > output.txt 2>&1 | tee command-results.txt
Open →
Linux
top — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of top for documentation or review.

time top > output.txt
Open →
Linux
top — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of top for documentation or review.

watch -n 5 'top > output.txt'
Open →
Linux
top — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of top for documentation or review.

date --iso-8601=seconds; top > output.txt
Open →
Linux
top — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of top for documentation or review.

nohup sh -c 'top > output.txt' > command-results.log 2>&1 &
Open →
Linux
ps — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ps for documentation or review.

ps aux --sort=-%mem | head > output.txt > command-results.txt 2>&1
Open →
Linux
ps — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ps for documentation or review.

ps aux --sort=-%mem | head > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ps — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ps for documentation or review.

time ps aux --sort=-%mem | head > output.txt
Open →
Linux
ps — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ps for documentation or review.

watch -n 5 'ps aux --sort=-%mem | head > output.txt'
Open →
Linux
ps — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ps for documentation or review.

date --iso-8601=seconds; ps aux --sort=-%mem | head > output.txt
Open →
Linux
ps — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ps for documentation or review.

nohup sh -c 'ps aux --sort=-%mem | head > output.txt' > command-results.log 2>&1 &
Open →
Linux
kill — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of kill for documentation or review.

kill -TERM 1234 > output.txt > command-results.txt 2>&1
Open →
Linux
kill — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of kill for documentation or review.

kill -TERM 1234 > output.txt 2>&1 | tee command-results.txt
Open →
Linux
kill — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of kill for documentation or review.

time kill -TERM 1234 > output.txt
Open →
Linux
kill — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of kill for documentation or review.

watch -n 5 'kill -TERM 1234 > output.txt'
Open →
Linux
kill — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of kill for documentation or review.

date --iso-8601=seconds; kill -TERM 1234 > output.txt
Open →
Linux
kill — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of kill for documentation or review.

nohup sh -c 'kill -TERM 1234 > output.txt' > command-results.log 2>&1 &
Open →
Linux
pkill — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of pkill for documentation or review.

pkill -f app-worker > output.txt > command-results.txt 2>&1
Open →
Linux
pkill — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of pkill for documentation or review.

pkill -f app-worker > output.txt 2>&1 | tee command-results.txt
Open →
Linux
pkill — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of pkill for documentation or review.

time pkill -f app-worker > output.txt
Open →
Linux
pkill — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of pkill for documentation or review.

watch -n 5 'pkill -f app-worker > output.txt'
Open →
Linux
pkill — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of pkill for documentation or review.

date --iso-8601=seconds; pkill -f app-worker > output.txt
Open →
Linux
pkill — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of pkill for documentation or review.

nohup sh -c 'pkill -f app-worker > output.txt' > command-results.log 2>&1 &
Open →
Linux
nice — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of nice for documentation or review.

nice -n 10 long-running-command > output.txt > command-results.txt 2>&1
Open →
Linux
nice — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of nice for documentation or review.

nice -n 10 long-running-command > output.txt 2>&1 | tee command-results.txt
Open →
Linux
nice — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of nice for documentation or review.

time nice -n 10 long-running-command > output.txt
Open →
Linux
nice — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of nice for documentation or review.

watch -n 5 'nice -n 10 long-running-command > output.txt'
Open →
Linux
nice — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of nice for documentation or review.

date --iso-8601=seconds; nice -n 10 long-running-command > output.txt
Open →
Linux
nice — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of nice for documentation or review.

nohup sh -c 'nice -n 10 long-running-command > output.txt' > command-results.log 2>&1 &
Open →
Linux
renice — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of renice for documentation or review.

renice 5 -p 1234 > output.txt > command-results.txt 2>&1
Open →
Linux
renice — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of renice for documentation or review.

renice 5 -p 1234 > output.txt 2>&1 | tee command-results.txt
Open →
Linux
renice — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of renice for documentation or review.

time renice 5 -p 1234 > output.txt
Open →
Linux
renice — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of renice for documentation or review.

watch -n 5 'renice 5 -p 1234 > output.txt'
Open →
Linux
renice — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of renice for documentation or review.

date --iso-8601=seconds; renice 5 -p 1234 > output.txt
Open →
Linux
renice — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of renice for documentation or review.

nohup sh -c 'renice 5 -p 1234 > output.txt' > command-results.log 2>&1 &
Open →
Linux
systemctl status — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of systemctl status for documentation or review.

systemctl status nginx > output.txt > command-results.txt 2>&1
Open →
Linux
systemctl status — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of systemctl status for documentation or review.

systemctl status nginx > output.txt 2>&1 | tee command-results.txt
Open →
Linux
systemctl status — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of systemctl status for documentation or review.

time systemctl status nginx > output.txt
Open →
Linux
systemctl status — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of systemctl status for documentation or review.

watch -n 5 'systemctl status nginx > output.txt'
Open →
Linux
systemctl status — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of systemctl status for documentation or review.

date --iso-8601=seconds; systemctl status nginx > output.txt
Open →
Linux
systemctl status — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of systemctl status for documentation or review.

nohup sh -c 'systemctl status nginx > output.txt' > command-results.log 2>&1 &
Open →
Linux
systemctl start — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of systemctl start for documentation or review.

sudo systemctl start nginx > output.txt > command-results.txt 2>&1
Open →
Linux
systemctl start — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of systemctl start for documentation or review.

sudo systemctl start nginx > output.txt 2>&1 | tee command-results.txt
Open →
Linux
systemctl start — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of systemctl start for documentation or review.

time sudo systemctl start nginx > output.txt
Open →
Linux
systemctl start — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of systemctl start for documentation or review.

watch -n 5 'sudo systemctl start nginx > output.txt'
Open →
Linux
systemctl start — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of systemctl start for documentation or review.

date --iso-8601=seconds; sudo systemctl start nginx > output.txt
Open →
Linux
systemctl start — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of systemctl start for documentation or review.

nohup sh -c 'sudo systemctl start nginx > output.txt' > command-results.log 2>&1 &
Open →
Linux
systemctl stop — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of systemctl stop for documentation or review.

sudo systemctl stop nginx > output.txt > command-results.txt 2>&1
Open →
Linux
systemctl stop — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of systemctl stop for documentation or review.

sudo systemctl stop nginx > output.txt 2>&1 | tee command-results.txt
Open →
Linux
systemctl stop — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of systemctl stop for documentation or review.

time sudo systemctl stop nginx > output.txt
Open →
Linux
systemctl stop — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of systemctl stop for documentation or review.

watch -n 5 'sudo systemctl stop nginx > output.txt'
Open →
Linux
systemctl stop — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of systemctl stop for documentation or review.

date --iso-8601=seconds; sudo systemctl stop nginx > output.txt
Open →
Linux
systemctl stop — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of systemctl stop for documentation or review.

nohup sh -c 'sudo systemctl stop nginx > output.txt' > command-results.log 2>&1 &
Open →
Linux
systemctl restart — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of systemctl restart for documentation or review.

sudo systemctl restart nginx > output.txt > command-results.txt 2>&1
Open →
Linux
systemctl restart — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of systemctl restart for documentation or review.

sudo systemctl restart nginx > output.txt 2>&1 | tee command-results.txt
Open →
Linux
systemctl restart — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of systemctl restart for documentation or review.

time sudo systemctl restart nginx > output.txt
Open →
Linux
systemctl restart — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of systemctl restart for documentation or review.

watch -n 5 'sudo systemctl restart nginx > output.txt'
Open →
Linux
systemctl restart — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of systemctl restart for documentation or review.

date --iso-8601=seconds; sudo systemctl restart nginx > output.txt
Open →
Linux
systemctl restart — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of systemctl restart for documentation or review.

nohup sh -c 'sudo systemctl restart nginx > output.txt' > command-results.log 2>&1 &
Open →
Linux
systemctl enable — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of systemctl enable for documentation or review.

sudo systemctl enable --now nginx > output.txt > command-results.txt 2>&1
Open →
Linux
systemctl enable — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of systemctl enable for documentation or review.

sudo systemctl enable --now nginx > output.txt 2>&1 | tee command-results.txt
Open →
Linux
systemctl enable — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of systemctl enable for documentation or review.

time sudo systemctl enable --now nginx > output.txt
Open →
Linux
systemctl enable — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of systemctl enable for documentation or review.

watch -n 5 'sudo systemctl enable --now nginx > output.txt'
Open →
Linux
systemctl enable — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of systemctl enable for documentation or review.

date --iso-8601=seconds; sudo systemctl enable --now nginx > output.txt
Open →
Linux
systemctl enable — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of systemctl enable for documentation or review.

nohup sh -c 'sudo systemctl enable --now nginx > output.txt' > command-results.log 2>&1 &
Open →
Linux
journalctl — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of journalctl for documentation or review.

journalctl -u nginx --since "1 hour ago" > output.txt > command-results.txt 2>&1
Open →
Linux
journalctl — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of journalctl for documentation or review.

journalctl -u nginx --since "1 hour ago" > output.txt 2>&1 | tee command-results.txt
Open →
Linux
journalctl — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of journalctl for documentation or review.

time journalctl -u nginx --since "1 hour ago" > output.txt
Open →
Linux
journalctl — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of journalctl for documentation or review.

watch -n 5 'journalctl -u nginx --since "1 hour ago" > output.txt'
Open →
Linux
journalctl — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of journalctl for documentation or review.

date --iso-8601=seconds; journalctl -u nginx --since "1 hour ago" > output.txt
Open →
Linux
journalctl — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of journalctl for documentation or review.

nohup sh -c 'journalctl -u nginx --since "1 hour ago" > output.txt' > command-results.log 2>&1 &
Open →
Linux
dmesg — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of dmesg for documentation or review.

dmesg --level=err,warn > output.txt > command-results.txt 2>&1
Open →
Linux
dmesg — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of dmesg for documentation or review.

dmesg --level=err,warn > output.txt 2>&1 | tee command-results.txt
Open →
Linux
dmesg — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of dmesg for documentation or review.

time dmesg --level=err,warn > output.txt
Open →
Linux
dmesg — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of dmesg for documentation or review.

watch -n 5 'dmesg --level=err,warn > output.txt'
Open →
Linux
dmesg — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of dmesg for documentation or review.

date --iso-8601=seconds; dmesg --level=err,warn > output.txt
Open →
Linux
dmesg — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of dmesg for documentation or review.

nohup sh -c 'dmesg --level=err,warn > output.txt' > command-results.log 2>&1 &
Open →
Linux
ip addr — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ip addr for documentation or review.

ip addr show > output.txt > command-results.txt 2>&1
Open →
Linux
ip addr — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ip addr for documentation or review.

ip addr show > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ip addr — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ip addr for documentation or review.

time ip addr show > output.txt
Open →
Linux
ip addr — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ip addr for documentation or review.

watch -n 5 'ip addr show > output.txt'
Open →
Linux
ip addr — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ip addr for documentation or review.

date --iso-8601=seconds; ip addr show > output.txt
Open →
Linux
ip addr — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ip addr for documentation or review.

nohup sh -c 'ip addr show > output.txt' > command-results.log 2>&1 &
Open →
Linux
ip route — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ip route for documentation or review.

ip route show > output.txt > command-results.txt 2>&1
Open →
Linux
ip route — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ip route for documentation or review.

ip route show > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ip route — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ip route for documentation or review.

time ip route show > output.txt
Open →
Linux
ip route — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ip route for documentation or review.

watch -n 5 'ip route show > output.txt'
Open →
Linux
ip route — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ip route for documentation or review.

date --iso-8601=seconds; ip route show > output.txt
Open →
Linux
ip route — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ip route for documentation or review.

nohup sh -c 'ip route show > output.txt' > command-results.log 2>&1 &
Open →
Linux
ip neigh — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ip neigh for documentation or review.

ip neigh show > output.txt > command-results.txt 2>&1
Open →
Linux
ip neigh — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ip neigh for documentation or review.

ip neigh show > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ip neigh — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ip neigh for documentation or review.

time ip neigh show > output.txt
Open →
Linux
ip neigh — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ip neigh for documentation or review.

watch -n 5 'ip neigh show > output.txt'
Open →
Linux
ip neigh — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ip neigh for documentation or review.

date --iso-8601=seconds; ip neigh show > output.txt
Open →
Linux
ip neigh — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ip neigh for documentation or review.

nohup sh -c 'ip neigh show > output.txt' > command-results.log 2>&1 &
Open →
Linux
ss — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ss for documentation or review.

ss -tulpn > output.txt > command-results.txt 2>&1
Open →
Linux
ss — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ss for documentation or review.

ss -tulpn > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ss — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ss for documentation or review.

time ss -tulpn > output.txt
Open →
Linux
ss — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ss for documentation or review.

watch -n 5 'ss -tulpn > output.txt'
Open →
Linux
ss — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ss for documentation or review.

date --iso-8601=seconds; ss -tulpn > output.txt
Open →
Linux
ss — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ss for documentation or review.

nohup sh -c 'ss -tulpn > output.txt' > command-results.log 2>&1 &
Open →
Linux
ping — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ping for documentation or review.

ping -c 4 example.com > output.txt > command-results.txt 2>&1
Open →
Linux
ping — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ping for documentation or review.

ping -c 4 example.com > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ping — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ping for documentation or review.

time ping -c 4 example.com > output.txt
Open →
Linux
ping — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ping for documentation or review.

watch -n 5 'ping -c 4 example.com > output.txt'
Open →
Linux
ping — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ping for documentation or review.

date --iso-8601=seconds; ping -c 4 example.com > output.txt
Open →
Linux
ping — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ping for documentation or review.

nohup sh -c 'ping -c 4 example.com > output.txt' > command-results.log 2>&1 &
Open →
Linux
traceroute — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of traceroute for documentation or review.

traceroute example.com > output.txt > command-results.txt 2>&1
Open →
Linux
traceroute — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of traceroute for documentation or review.

traceroute example.com > output.txt 2>&1 | tee command-results.txt
Open →
Linux
traceroute — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of traceroute for documentation or review.

time traceroute example.com > output.txt
Open →
Linux
traceroute — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of traceroute for documentation or review.

watch -n 5 'traceroute example.com > output.txt'
Open →
Linux
traceroute — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of traceroute for documentation or review.

date --iso-8601=seconds; traceroute example.com > output.txt
Open →
Linux
traceroute — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of traceroute for documentation or review.

nohup sh -c 'traceroute example.com > output.txt' > command-results.log 2>&1 &
Open →
Linux
dig — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of dig for documentation or review.

dig example.com MX +short > output.txt > command-results.txt 2>&1
Open →
Linux
dig — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of dig for documentation or review.

dig example.com MX +short > output.txt 2>&1 | tee command-results.txt
Open →
Linux
dig — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of dig for documentation or review.

time dig example.com MX +short > output.txt
Open →
Linux
dig — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of dig for documentation or review.

watch -n 5 'dig example.com MX +short > output.txt'
Open →
Linux
dig — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of dig for documentation or review.

date --iso-8601=seconds; dig example.com MX +short > output.txt
Open →
Linux
dig — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of dig for documentation or review.

nohup sh -c 'dig example.com MX +short > output.txt' > command-results.log 2>&1 &
Open →
Linux
host — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of host for documentation or review.

host -t txt example.com > output.txt > command-results.txt 2>&1
Open →
Linux
host — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of host for documentation or review.

host -t txt example.com > output.txt 2>&1 | tee command-results.txt
Open →
Linux
host — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of host for documentation or review.

time host -t txt example.com > output.txt
Open →
Linux
host — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of host for documentation or review.

watch -n 5 'host -t txt example.com > output.txt'
Open →
Linux
host — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of host for documentation or review.

date --iso-8601=seconds; host -t txt example.com > output.txt
Open →
Linux
host — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of host for documentation or review.

nohup sh -c 'host -t txt example.com > output.txt' > command-results.log 2>&1 &
Open →
Linux
curl — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of curl for documentation or review.

curl -I https://example.com > output.txt > command-results.txt 2>&1
Open →
Linux
curl — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of curl for documentation or review.

curl -I https://example.com > output.txt 2>&1 | tee command-results.txt
Open →
Linux
curl — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of curl for documentation or review.

time curl -I https://example.com > output.txt
Open →
Linux
curl — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of curl for documentation or review.

watch -n 5 'curl -I https://example.com > output.txt'
Open →
Linux
curl — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of curl for documentation or review.

date --iso-8601=seconds; curl -I https://example.com > output.txt
Open →
Linux
curl — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of curl for documentation or review.

nohup sh -c 'curl -I https://example.com > output.txt' > command-results.log 2>&1 &
Open →
Linux
wget — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of wget for documentation or review.

wget -O file.zip https://example.com/file.zip > output.txt > command-results.txt 2>&1
Open →
Linux
wget — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of wget for documentation or review.

wget -O file.zip https://example.com/file.zip > output.txt 2>&1 | tee command-results.txt
Open →
Linux
wget — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of wget for documentation or review.

time wget -O file.zip https://example.com/file.zip > output.txt
Open →
Linux
wget — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of wget for documentation or review.

watch -n 5 'wget -O file.zip https://example.com/file.zip > output.txt'
Open →
Linux
wget — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of wget for documentation or review.

date --iso-8601=seconds; wget -O file.zip https://example.com/file.zip > output.txt
Open →
Linux
wget — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of wget for documentation or review.

nohup sh -c 'wget -O file.zip https://example.com/file.zip > output.txt' > command-results.log 2>&1 &
Open →
Linux
ssh — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of ssh for documentation or review.

ssh admin@server01 > output.txt > command-results.txt 2>&1
Open →
Linux
ssh — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of ssh for documentation or review.

ssh admin@server01 > output.txt 2>&1 | tee command-results.txt
Open →
Linux
ssh — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of ssh for documentation or review.

time ssh admin@server01 > output.txt
Open →
Linux
ssh — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of ssh for documentation or review.

watch -n 5 'ssh admin@server01 > output.txt'
Open →
Linux
ssh — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of ssh for documentation or review.

date --iso-8601=seconds; ssh admin@server01 > output.txt
Open →
Linux
ssh — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of ssh for documentation or review.

nohup sh -c 'ssh admin@server01 > output.txt' > command-results.log 2>&1 &
Open →
Linux
scp — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of scp for documentation or review.

scp backup.tar.gz admin@server01:/backups/ > output.txt > command-results.txt 2>&1
Open →
Linux
scp — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of scp for documentation or review.

scp backup.tar.gz admin@server01:/backups/ > output.txt 2>&1 | tee command-results.txt
Open →
Linux
scp — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of scp for documentation or review.

time scp backup.tar.gz admin@server01:/backups/ > output.txt
Open →
Linux
scp — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of scp for documentation or review.

watch -n 5 'scp backup.tar.gz admin@server01:/backups/ > output.txt'
Open →
Linux
scp — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of scp for documentation or review.

date --iso-8601=seconds; scp backup.tar.gz admin@server01:/backups/ > output.txt
Open →
Linux
scp — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of scp for documentation or review.

nohup sh -c 'scp backup.tar.gz admin@server01:/backups/ > output.txt' > command-results.log 2>&1 &
Open →
Linux
rsync — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of rsync for documentation or review.

rsync -avh --delete /source/ /backup/ > output.txt > command-results.txt 2>&1
Open →
Linux
rsync — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of rsync for documentation or review.

rsync -avh --delete /source/ /backup/ > output.txt 2>&1 | tee command-results.txt
Open →
Linux
rsync — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of rsync for documentation or review.

time rsync -avh --delete /source/ /backup/ > output.txt
Open →
Linux
rsync — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of rsync for documentation or review.

watch -n 5 'rsync -avh --delete /source/ /backup/ > output.txt'
Open →
Linux
rsync — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of rsync for documentation or review.

date --iso-8601=seconds; rsync -avh --delete /source/ /backup/ > output.txt
Open →
Linux
rsync — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of rsync for documentation or review.

nohup sh -c 'rsync -avh --delete /source/ /backup/ > output.txt' > command-results.log 2>&1 &
Open →
Linux
tar — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of tar for documentation or review.

tar -czf backup.tar.gz /etc/app > output.txt > command-results.txt 2>&1
Open →
Linux
tar — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of tar for documentation or review.

tar -czf backup.tar.gz /etc/app > output.txt 2>&1 | tee command-results.txt
Open →
Linux
tar — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of tar for documentation or review.

time tar -czf backup.tar.gz /etc/app > output.txt
Open →
Linux
tar — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of tar for documentation or review.

watch -n 5 'tar -czf backup.tar.gz /etc/app > output.txt'
Open →
Linux
tar — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of tar for documentation or review.

date --iso-8601=seconds; tar -czf backup.tar.gz /etc/app > output.txt
Open →
Linux
tar — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of tar for documentation or review.

nohup sh -c 'tar -czf backup.tar.gz /etc/app > output.txt' > command-results.log 2>&1 &
Open →
Linux
gzip — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of gzip for documentation or review.

gzip -k large.log > output.txt > command-results.txt 2>&1
Open →
Linux
gzip — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of gzip for documentation or review.

gzip -k large.log > output.txt 2>&1 | tee command-results.txt
Open →
Linux
gzip — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of gzip for documentation or review.

time gzip -k large.log > output.txt
Open →
Linux
gzip — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of gzip for documentation or review.

watch -n 5 'gzip -k large.log > output.txt'
Open →
Linux
gzip — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of gzip for documentation or review.

date --iso-8601=seconds; gzip -k large.log > output.txt
Open →
Linux
gzip — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of gzip for documentation or review.

nohup sh -c 'gzip -k large.log > output.txt' > command-results.log 2>&1 &
Open →
Linux
unzip — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of unzip for documentation or review.

unzip package.zip -d /opt/app > output.txt > command-results.txt 2>&1
Open →
Linux
unzip — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of unzip for documentation or review.

unzip package.zip -d /opt/app > output.txt 2>&1 | tee command-results.txt
Open →
Linux
unzip — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of unzip for documentation or review.

time unzip package.zip -d /opt/app > output.txt
Open →
Linux
unzip — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of unzip for documentation or review.

watch -n 5 'unzip package.zip -d /opt/app > output.txt'
Open →
Linux
unzip — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of unzip for documentation or review.

date --iso-8601=seconds; unzip package.zip -d /opt/app > output.txt
Open →
Linux
unzip — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of unzip for documentation or review.

nohup sh -c 'unzip package.zip -d /opt/app > output.txt' > command-results.log 2>&1 &
Open →
Linux
sed — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of sed for documentation or review.

sed -i "s/old/new/g" config.txt > output.txt > command-results.txt 2>&1
Open →
Linux
sed — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of sed for documentation or review.

sed -i "s/old/new/g" config.txt > output.txt 2>&1 | tee command-results.txt
Open →
Linux
sed — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of sed for documentation or review.

time sed -i "s/old/new/g" config.txt > output.txt
Open →
Linux
sed — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of sed for documentation or review.

watch -n 5 'sed -i "s/old/new/g" config.txt > output.txt'
Open →
Linux
sed — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of sed for documentation or review.

date --iso-8601=seconds; sed -i "s/old/new/g" config.txt > output.txt
Open →
Linux
sed — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of sed for documentation or review.

nohup sh -c 'sed -i "s/old/new/g" config.txt > output.txt' > command-results.log 2>&1 &
Open →
Linux
awk — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of awk for documentation or review.

awk -F: "{print $1}" /etc/passwd > output.txt > command-results.txt 2>&1
Open →
Linux
awk — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of awk for documentation or review.

awk -F: "{print $1}" /etc/passwd > output.txt 2>&1 | tee command-results.txt
Open →
Linux
awk — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of awk for documentation or review.

time awk -F: "{print $1}" /etc/passwd > output.txt
Open →
Linux
awk — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of awk for documentation or review.

watch -n 5 'awk -F: "{print $1}" /etc/passwd > output.txt'
Open →
Linux
awk — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of awk for documentation or review.

date --iso-8601=seconds; awk -F: "{print $1}" /etc/passwd > output.txt
Open →
Linux
awk — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of awk for documentation or review.

nohup sh -c 'awk -F: "{print $1}" /etc/passwd > output.txt' > command-results.log 2>&1 &
Open →
Linux
cut — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of cut for documentation or review.

cut -d, -f1,3 users.csv > output.txt > command-results.txt 2>&1
Open →
Linux
cut — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of cut for documentation or review.

cut -d, -f1,3 users.csv > output.txt 2>&1 | tee command-results.txt
Open →
Linux
cut — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of cut for documentation or review.

time cut -d, -f1,3 users.csv > output.txt
Open →
Linux
cut — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of cut for documentation or review.

watch -n 5 'cut -d, -f1,3 users.csv > output.txt'
Open →
Linux
cut — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of cut for documentation or review.

date --iso-8601=seconds; cut -d, -f1,3 users.csv > output.txt
Open →
Linux
cut — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of cut for documentation or review.

nohup sh -c 'cut -d, -f1,3 users.csv > output.txt' > command-results.log 2>&1 &
Open →
Linux
sort — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of sort for documentation or review.

sort -u names.txt > output.txt > command-results.txt 2>&1
Open →
Linux
sort — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of sort for documentation or review.

sort -u names.txt > output.txt 2>&1 | tee command-results.txt
Open →
Linux
sort — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of sort for documentation or review.

time sort -u names.txt > output.txt
Open →
Linux
sort — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of sort for documentation or review.

watch -n 5 'sort -u names.txt > output.txt'
Open →
Linux
sort — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of sort for documentation or review.

date --iso-8601=seconds; sort -u names.txt > output.txt
Open →
Linux
sort — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of sort for documentation or review.

nohup sh -c 'sort -u names.txt > output.txt' > command-results.log 2>&1 &
Open →
Linux
uniq — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of uniq for documentation or review.

sort access.log | uniq -c > output.txt > command-results.txt 2>&1
Open →
Linux
uniq — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of uniq for documentation or review.

sort access.log | uniq -c > output.txt 2>&1 | tee command-results.txt
Open →
Linux
uniq — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of uniq for documentation or review.

time sort access.log | uniq -c > output.txt
Open →
Linux
uniq — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of uniq for documentation or review.

watch -n 5 'sort access.log | uniq -c > output.txt'
Open →
Linux
uniq — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of uniq for documentation or review.

date --iso-8601=seconds; sort access.log | uniq -c > output.txt
Open →
Linux
uniq — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of uniq for documentation or review.

nohup sh -c 'sort access.log | uniq -c > output.txt' > command-results.log 2>&1 &
Open →
Linux
wc — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of wc for documentation or review.

wc -l access.log > output.txt > command-results.txt 2>&1
Open →
Linux
wc — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of wc for documentation or review.

wc -l access.log > output.txt 2>&1 | tee command-results.txt
Open →
Linux
wc — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of wc for documentation or review.

time wc -l access.log > output.txt
Open →
Linux
wc — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of wc for documentation or review.

watch -n 5 'wc -l access.log > output.txt'
Open →
Linux
wc — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of wc for documentation or review.

date --iso-8601=seconds; wc -l access.log > output.txt
Open →
Linux
wc — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of wc for documentation or review.

nohup sh -c 'wc -l access.log > output.txt' > command-results.log 2>&1 &
Open →
Linux
xargs — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of xargs for documentation or review.

find /tmp -name "*.tmp" -print0 | xargs -0 rm -f > output.txt > command-results.txt 2>&1
Open →
Linux
xargs — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of xargs for documentation or review.

find /tmp -name "*.tmp" -print0 | xargs -0 rm -f > output.txt 2>&1 | tee command-results.txt
Open →
Linux
xargs — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of xargs for documentation or review.

time find /tmp -name "*.tmp" -print0 | xargs -0 rm -f > output.txt
Open →
Linux
xargs — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of xargs for documentation or review.

watch -n 5 'find /tmp -name "*.tmp" -print0 | xargs -0 rm -f > output.txt'
Open →
Linux
xargs — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of xargs for documentation or review.

date --iso-8601=seconds; find /tmp -name "*.tmp" -print0 | xargs -0 rm -f > output.txt
Open →
Linux
xargs — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of xargs for documentation or review.

nohup sh -c 'find /tmp -name "*.tmp" -print0 | xargs -0 rm -f > output.txt' > command-results.log 2>&1 &
Open →
Linux
tee — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of tee for documentation or review.

echo "enabled=true" | sudo tee /etc/app.conf > output.txt > command-results.txt 2>&1
Open →
Linux
tee — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of tee for documentation or review.

echo "enabled=true" | sudo tee /etc/app.conf > output.txt 2>&1 | tee command-results.txt
Open →
Linux
tee — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of tee for documentation or review.

time echo "enabled=true" | sudo tee /etc/app.conf > output.txt
Open →
Linux
tee — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of tee for documentation or review.

watch -n 5 'echo "enabled=true" | sudo tee /etc/app.conf > output.txt'
Open →
Linux
tee — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of tee for documentation or review.

date --iso-8601=seconds; echo "enabled=true" | sudo tee /etc/app.conf > output.txt
Open →
Linux
tee — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of tee for documentation or review.

nohup sh -c 'echo "enabled=true" | sudo tee /etc/app.conf > output.txt' > command-results.log 2>&1 &
Open →
Linux
env — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of env for documentation or review.

env | sort > output.txt > command-results.txt 2>&1
Open →
Linux
env — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of env for documentation or review.

env | sort > output.txt 2>&1 | tee command-results.txt
Open →
Linux
env — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of env for documentation or review.

time env | sort > output.txt
Open →
Linux
env — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of env for documentation or review.

watch -n 5 'env | sort > output.txt'
Open →
Linux
env — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of env for documentation or review.

date --iso-8601=seconds; env | sort > output.txt
Open →
Linux
env — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of env for documentation or review.

nohup sh -c 'env | sort > output.txt' > command-results.log 2>&1 &
Open →
Linux
export — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of export for documentation or review.

export APP_ENV=production > output.txt > command-results.txt 2>&1
Open →
Linux
export — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of export for documentation or review.

export APP_ENV=production > output.txt 2>&1 | tee command-results.txt
Open →
Linux
export — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of export for documentation or review.

time export APP_ENV=production > output.txt
Open →
Linux
export — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of export for documentation or review.

watch -n 5 'export APP_ENV=production > output.txt'
Open →
Linux
export — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of export for documentation or review.

date --iso-8601=seconds; export APP_ENV=production > output.txt
Open →
Linux
export — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of export for documentation or review.

nohup sh -c 'export APP_ENV=production > output.txt' > command-results.log 2>&1 &
Open →
Linux
crontab — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of crontab for documentation or review.

crontab -l > output.txt > command-results.txt 2>&1
Open →
Linux
crontab — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of crontab for documentation or review.

crontab -l > output.txt 2>&1 | tee command-results.txt
Open →
Linux
crontab — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of crontab for documentation or review.

time crontab -l > output.txt
Open →
Linux
crontab — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of crontab for documentation or review.

watch -n 5 'crontab -l > output.txt'
Open →
Linux
crontab — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of crontab for documentation or review.

date --iso-8601=seconds; crontab -l > output.txt
Open →
Linux
crontab — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of crontab for documentation or review.

nohup sh -c 'crontab -l > output.txt' > command-results.log 2>&1 &
Open →
Linux
apt update — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of apt update for documentation or review.

sudo apt update > output.txt > command-results.txt 2>&1
Open →
Linux
apt update — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of apt update for documentation or review.

sudo apt update > output.txt 2>&1 | tee command-results.txt
Open →
Linux
apt update — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of apt update for documentation or review.

time sudo apt update > output.txt
Open →
Linux
apt update — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of apt update for documentation or review.

watch -n 5 'sudo apt update > output.txt'
Open →
Linux
apt update — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of apt update for documentation or review.

date --iso-8601=seconds; sudo apt update > output.txt
Open →
Linux
apt update — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of apt update for documentation or review.

nohup sh -c 'sudo apt update > output.txt' > command-results.log 2>&1 &
Open →
Linux
apt upgrade — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of apt upgrade for documentation or review.

sudo apt upgrade > output.txt > command-results.txt 2>&1
Open →
Linux
apt upgrade — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of apt upgrade for documentation or review.

sudo apt upgrade > output.txt 2>&1 | tee command-results.txt
Open →
Linux
apt upgrade — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of apt upgrade for documentation or review.

time sudo apt upgrade > output.txt
Open →
Linux
apt upgrade — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of apt upgrade for documentation or review.

watch -n 5 'sudo apt upgrade > output.txt'
Open →
Linux
apt upgrade — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of apt upgrade for documentation or review.

date --iso-8601=seconds; sudo apt upgrade > output.txt
Open →
Linux
apt upgrade — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of apt upgrade for documentation or review.

nohup sh -c 'sudo apt upgrade > output.txt' > command-results.log 2>&1 &
Open →
Linux
dnf update — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of dnf update for documentation or review.

sudo dnf update > output.txt > command-results.txt 2>&1
Open →
Linux
dnf update — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of dnf update for documentation or review.

sudo dnf update > output.txt 2>&1 | tee command-results.txt
Open →
Linux
dnf update — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of dnf update for documentation or review.

time sudo dnf update > output.txt
Open →
Linux
dnf update — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of dnf update for documentation or review.

watch -n 5 'sudo dnf update > output.txt'
Open →
Linux
dnf update — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of dnf update for documentation or review.

date --iso-8601=seconds; sudo dnf update > output.txt
Open →
Linux
dnf update — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of dnf update for documentation or review.

nohup sh -c 'sudo dnf update > output.txt' > command-results.log 2>&1 &
Open →
Linux
rpm query — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of rpm query for documentation or review.

rpm -qa | sort > output.txt > command-results.txt 2>&1
Open →
Linux
rpm query — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of rpm query for documentation or review.

rpm -qa | sort > output.txt 2>&1 | tee command-results.txt
Open →
Linux
rpm query — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of rpm query for documentation or review.

time rpm -qa | sort > output.txt
Open →
Linux
rpm query — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of rpm query for documentation or review.

watch -n 5 'rpm -qa | sort > output.txt'
Open →
Linux
rpm query — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of rpm query for documentation or review.

date --iso-8601=seconds; rpm -qa | sort > output.txt
Open →
Linux
rpm query — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of rpm query for documentation or review.

nohup sh -c 'rpm -qa | sort > output.txt' > command-results.log 2>&1 &
Open →
Linux
dpkg query — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of dpkg query for documentation or review.

dpkg -l > output.txt > command-results.txt 2>&1
Open →
Linux
dpkg query — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of dpkg query for documentation or review.

dpkg -l > output.txt 2>&1 | tee command-results.txt
Open →
Linux
dpkg query — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of dpkg query for documentation or review.

time dpkg -l > output.txt
Open →
Linux
dpkg query — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of dpkg query for documentation or review.

watch -n 5 'dpkg -l > output.txt'
Open →
Linux
dpkg query — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of dpkg query for documentation or review.

date --iso-8601=seconds; dpkg -l > output.txt
Open →
Linux
dpkg query — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of dpkg query for documentation or review.

nohup sh -c 'dpkg -l > output.txt' > command-results.log 2>&1 &
Open →
Linux
uname — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of uname for documentation or review.

uname -a > output.txt > command-results.txt 2>&1
Open →
Linux
uname — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of uname for documentation or review.

uname -a > output.txt 2>&1 | tee command-results.txt
Open →
Linux
uname — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of uname for documentation or review.

time uname -a > output.txt
Open →
Linux
uname — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of uname for documentation or review.

watch -n 5 'uname -a > output.txt'
Open →
Linux
uname — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of uname for documentation or review.

date --iso-8601=seconds; uname -a > output.txt
Open →
Linux
uname — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of uname for documentation or review.

nohup sh -c 'uname -a > output.txt' > command-results.log 2>&1 &
Open →
Linux
hostnamectl — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of hostnamectl for documentation or review.

hostnamectl > output.txt > command-results.txt 2>&1
Open →
Linux
hostnamectl — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of hostnamectl for documentation or review.

hostnamectl > output.txt 2>&1 | tee command-results.txt
Open →
Linux
hostnamectl — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of hostnamectl for documentation or review.

time hostnamectl > output.txt
Open →
Linux
hostnamectl — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of hostnamectl for documentation or review.

watch -n 5 'hostnamectl > output.txt'
Open →
Linux
hostnamectl — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of hostnamectl for documentation or review.

date --iso-8601=seconds; hostnamectl > output.txt
Open →
Linux
hostnamectl — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of hostnamectl for documentation or review.

nohup sh -c 'hostnamectl > output.txt' > command-results.log 2>&1 &
Open →
Linux
timedatectl — Export Results — Save output

Save standard output and errors to a text file. Base task: Export the output of timedatectl for documentation or review.

timedatectl > output.txt > command-results.txt 2>&1
Open →
Linux
timedatectl — Export Results — Display and save output

Display output while saving it to a file. Base task: Export the output of timedatectl for documentation or review.

timedatectl > output.txt 2>&1 | tee command-results.txt
Open →
Linux
timedatectl — Export Results — Measure execution time

Measure the command execution time. Base task: Export the output of timedatectl for documentation or review.

time timedatectl > output.txt
Open →
Linux
timedatectl — Export Results — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Export the output of timedatectl for documentation or review.

watch -n 5 'timedatectl > output.txt'
Open →
Linux
timedatectl — Export Results — Run with timestamp

Print a timestamp immediately before running the command. Base task: Export the output of timedatectl for documentation or review.

date --iso-8601=seconds; timedatectl > output.txt
Open →
Linux
timedatectl — Export Results — Run in background

Run the command in the background and log its output. Base task: Export the output of timedatectl for documentation or review.

nohup sh -c 'timedatectl > output.txt' > command-results.log 2>&1 &
Open →
Linux
ls Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command ls.

ls --help > command-results.txt 2>&1
Open →
Linux
ls Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command ls.

ls --help 2>&1 | tee command-results.txt
Open →
Linux
ls Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command ls.

time ls --help
Open →
Linux
ls Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command ls.

watch -n 5 'ls --help'
Open →
Linux
ls Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command ls.

date --iso-8601=seconds; ls --help
Open →
Linux
ls Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command ls.

nohup sh -c 'ls --help' > command-results.log 2>&1 &
Open →
Linux
cd Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command cd.

cd --help > command-results.txt 2>&1
Open →
Linux
cd Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command cd.

cd --help 2>&1 | tee command-results.txt
Open →
Linux
cd Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command cd.

time cd --help
Open →
Linux
cd Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command cd.

watch -n 5 'cd --help'
Open →
Linux
cd Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command cd.

date --iso-8601=seconds; cd --help
Open →
Linux
cd Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command cd.

nohup sh -c 'cd --help' > command-results.log 2>&1 &
Open →
Linux
pwd Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command pwd.

pwd --help > command-results.txt 2>&1
Open →
Linux
pwd Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command pwd.

pwd --help 2>&1 | tee command-results.txt
Open →
Linux
pwd Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command pwd.

time pwd --help
Open →
Linux
pwd Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command pwd.

watch -n 5 'pwd --help'
Open →
Linux
pwd Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command pwd.

date --iso-8601=seconds; pwd --help
Open →
Linux
pwd Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command pwd.

nohup sh -c 'pwd --help' > command-results.log 2>&1 &
Open →
Linux
cp Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command cp.

cp --help > command-results.txt 2>&1
Open →
Linux
cp Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command cp.

cp --help 2>&1 | tee command-results.txt
Open →
Linux
cp Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command cp.

time cp --help
Open →
Linux
cp Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command cp.

watch -n 5 'cp --help'
Open →
Linux
cp Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command cp.

date --iso-8601=seconds; cp --help
Open →
Linux
cp Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command cp.

nohup sh -c 'cp --help' > command-results.log 2>&1 &
Open →
Linux
mv Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command mv.

mv --help > command-results.txt 2>&1
Open →
Linux
mv Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command mv.

mv --help 2>&1 | tee command-results.txt
Open →
Linux
mv Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command mv.

time mv --help
Open →
Linux
mv Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command mv.

watch -n 5 'mv --help'
Open →
Linux
mv Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command mv.

date --iso-8601=seconds; mv --help
Open →
Linux
mv Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command mv.

nohup sh -c 'mv --help' > command-results.log 2>&1 &
Open →
Linux
rm Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command rm.

rm --help > command-results.txt 2>&1
Open →
Linux
rm Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command rm.

rm --help 2>&1 | tee command-results.txt
Open →
Linux
rm Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command rm.

time rm --help
Open →
Linux
rm Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command rm.

watch -n 5 'rm --help'
Open →
Linux
rm Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command rm.

date --iso-8601=seconds; rm --help
Open →
Linux
rm Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command rm.

nohup sh -c 'rm --help' > command-results.log 2>&1 &
Open →
Linux
mkdir Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command mkdir.

mkdir --help > command-results.txt 2>&1
Open →
Linux
mkdir Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command mkdir.

mkdir --help 2>&1 | tee command-results.txt
Open →
Linux
mkdir Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command mkdir.

time mkdir --help
Open →
Linux
mkdir Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command mkdir.

watch -n 5 'mkdir --help'
Open →
Linux
mkdir Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command mkdir.

date --iso-8601=seconds; mkdir --help
Open →
Linux
mkdir Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command mkdir.

nohup sh -c 'mkdir --help' > command-results.log 2>&1 &
Open →
Linux
touch Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command touch.

touch --help > command-results.txt 2>&1
Open →
Linux
touch Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command touch.

touch --help 2>&1 | tee command-results.txt
Open →
Linux
touch Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command touch.

time touch --help
Open →
Linux
touch Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command touch.

watch -n 5 'touch --help'
Open →
Linux
touch Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command touch.

date --iso-8601=seconds; touch --help
Open →
Linux
touch Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command touch.

nohup sh -c 'touch --help' > command-results.log 2>&1 &
Open →
Linux
cat Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command cat.

cat --help > command-results.txt 2>&1
Open →
Linux
cat Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command cat.

cat --help 2>&1 | tee command-results.txt
Open →
Linux
cat Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command cat.

time cat --help
Open →
Linux
cat Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command cat.

watch -n 5 'cat --help'
Open →
Linux
cat Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command cat.

date --iso-8601=seconds; cat --help
Open →
Linux
cat Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command cat.

nohup sh -c 'cat --help' > command-results.log 2>&1 &
Open →
Linux
less Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command less.

less --help > command-results.txt 2>&1
Open →
Linux
less Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command less.

less --help 2>&1 | tee command-results.txt
Open →
Linux
less Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command less.

time less --help
Open →
Linux
less Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command less.

watch -n 5 'less --help'
Open →
Linux
less Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command less.

date --iso-8601=seconds; less --help
Open →
Linux
less Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command less.

nohup sh -c 'less --help' > command-results.log 2>&1 &
Open →
Linux
head Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command head.

head --help > command-results.txt 2>&1
Open →
Linux
head Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command head.

head --help 2>&1 | tee command-results.txt
Open →
Linux
head Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command head.

time head --help
Open →
Linux
head Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command head.

watch -n 5 'head --help'
Open →
Linux
head Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command head.

date --iso-8601=seconds; head --help
Open →
Linux
head Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command head.

nohup sh -c 'head --help' > command-results.log 2>&1 &
Open →
Linux
tail Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command tail.

tail --help > command-results.txt 2>&1
Open →
Linux
tail Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command tail.

tail --help 2>&1 | tee command-results.txt
Open →
Linux
tail Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command tail.

time tail --help
Open →
Linux
tail Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command tail.

watch -n 5 'tail --help'
Open →
Linux
tail Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command tail.

date --iso-8601=seconds; tail --help
Open →
Linux
tail Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command tail.

nohup sh -c 'tail --help' > command-results.log 2>&1 &
Open →
Linux
grep Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command grep.

grep --help > command-results.txt 2>&1
Open →
Linux
grep Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command grep.

grep --help 2>&1 | tee command-results.txt
Open →
Linux
grep Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command grep.

time grep --help
Open →
Linux
grep Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command grep.

watch -n 5 'grep --help'
Open →
Linux
grep Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command grep.

date --iso-8601=seconds; grep --help
Open →
Linux
grep Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command grep.

nohup sh -c 'grep --help' > command-results.log 2>&1 &
Open →
Linux
find Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command find.

find --help > command-results.txt 2>&1
Open →
Linux
find Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command find.

find --help 2>&1 | tee command-results.txt
Open →
Linux
find Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command find.

time find --help
Open →
Linux
find Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command find.

watch -n 5 'find --help'
Open →
Linux
find Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command find.

date --iso-8601=seconds; find --help
Open →
Linux
find Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command find.

nohup sh -c 'find --help' > command-results.log 2>&1 &
Open →
Linux
locate Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command locate.

locate --help > command-results.txt 2>&1
Open →
Linux
locate Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command locate.

locate --help 2>&1 | tee command-results.txt
Open →
Linux
locate Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command locate.

time locate --help
Open →
Linux
locate Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command locate.

watch -n 5 'locate --help'
Open →
Linux
locate Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command locate.

date --iso-8601=seconds; locate --help
Open →
Linux
locate Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command locate.

nohup sh -c 'locate --help' > command-results.log 2>&1 &
Open →
Linux
which Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command which.

which --help > command-results.txt 2>&1
Open →
Linux
which Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command which.

which --help 2>&1 | tee command-results.txt
Open →
Linux
which Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command which.

time which --help
Open →
Linux
which Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command which.

watch -n 5 'which --help'
Open →
Linux
which Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command which.

date --iso-8601=seconds; which --help
Open →
Linux
which Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command which.

nohup sh -c 'which --help' > command-results.log 2>&1 &
Open →
Linux
whereis Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command whereis.

whereis --help > command-results.txt 2>&1
Open →
Linux
whereis Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command whereis.

whereis --help 2>&1 | tee command-results.txt
Open →
Linux
whereis Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command whereis.

time whereis --help
Open →
Linux
whereis Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command whereis.

watch -n 5 'whereis --help'
Open →
Linux
whereis Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command whereis.

date --iso-8601=seconds; whereis --help
Open →
Linux
whereis Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command whereis.

nohup sh -c 'whereis --help' > command-results.log 2>&1 &
Open →
Linux
chmod Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command chmod.

chmod --help > command-results.txt 2>&1
Open →
Linux
chmod Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command chmod.

chmod --help 2>&1 | tee command-results.txt
Open →
Linux
chmod Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command chmod.

time chmod --help
Open →
Linux
chmod Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command chmod.

watch -n 5 'chmod --help'
Open →
Linux
chmod Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command chmod.

date --iso-8601=seconds; chmod --help
Open →
Linux
chmod Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command chmod.

nohup sh -c 'chmod --help' > command-results.log 2>&1 &
Open →
Linux
chown Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command chown.

chown --help > command-results.txt 2>&1
Open →
Linux
chown Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command chown.

chown --help 2>&1 | tee command-results.txt
Open →
Linux
chown Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command chown.

time chown --help
Open →
Linux
chown Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command chown.

watch -n 5 'chown --help'
Open →
Linux
chown Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command chown.

date --iso-8601=seconds; chown --help
Open →
Linux
chown Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command chown.

nohup sh -c 'chown --help' > command-results.log 2>&1 &
Open →
Linux
ln Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command ln.

ln --help > command-results.txt 2>&1
Open →
Linux
ln Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command ln.

ln --help 2>&1 | tee command-results.txt
Open →
Linux
ln Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command ln.

time ln --help
Open →
Linux
ln Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command ln.

watch -n 5 'ln --help'
Open →
Linux
ln Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command ln.

date --iso-8601=seconds; ln --help
Open →
Linux
ln Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command ln.

nohup sh -c 'ln --help' > command-results.log 2>&1 &
Open →
Linux
df Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command df.

df --help > command-results.txt 2>&1
Open →
Linux
df Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command df.

df --help 2>&1 | tee command-results.txt
Open →
Linux
df Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command df.

time df --help
Open →
Linux
df Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command df.

watch -n 5 'df --help'
Open →
Linux
df Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command df.

date --iso-8601=seconds; df --help
Open →
Linux
df Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command df.

nohup sh -c 'df --help' > command-results.log 2>&1 &
Open →
Linux
du Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command du.

du --help > command-results.txt 2>&1
Open →
Linux
du Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command du.

du --help 2>&1 | tee command-results.txt
Open →
Linux
du Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command du.

time du --help
Open →
Linux
du Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command du.

watch -n 5 'du --help'
Open →
Linux
du Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command du.

date --iso-8601=seconds; du --help
Open →
Linux
du Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command du.

nohup sh -c 'du --help' > command-results.log 2>&1 &
Open →
Linux
free Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command free.

free --help > command-results.txt 2>&1
Open →
Linux
free Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command free.

free --help 2>&1 | tee command-results.txt
Open →
Linux
free Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command free.

time free --help
Open →
Linux
free Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command free.

watch -n 5 'free --help'
Open →
Linux
free Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command free.

date --iso-8601=seconds; free --help
Open →
Linux
free Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command free.

nohup sh -c 'free --help' > command-results.log 2>&1 &
Open →
Linux
uptime Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command uptime.

uptime --help > command-results.txt 2>&1
Open →
Linux
uptime Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command uptime.

uptime --help 2>&1 | tee command-results.txt
Open →
Linux
uptime Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command uptime.

time uptime --help
Open →
Linux
uptime Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command uptime.

watch -n 5 'uptime --help'
Open →
Linux
uptime Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command uptime.

date --iso-8601=seconds; uptime --help
Open →
Linux
uptime Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command uptime.

nohup sh -c 'uptime --help' > command-results.log 2>&1 &
Open →
Linux
top Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command top.

top --help > command-results.txt 2>&1
Open →
Linux
top Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command top.

top --help 2>&1 | tee command-results.txt
Open →
Linux
top Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command top.

time top --help
Open →
Linux
top Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command top.

watch -n 5 'top --help'
Open →
Linux
top Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command top.

date --iso-8601=seconds; top --help
Open →
Linux
top Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command top.

nohup sh -c 'top --help' > command-results.log 2>&1 &
Open →
Linux
ps Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command ps.

ps --help > command-results.txt 2>&1
Open →
Linux
ps Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command ps.

ps --help 2>&1 | tee command-results.txt
Open →
Linux
ps Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command ps.

time ps --help
Open →
Linux
ps Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command ps.

watch -n 5 'ps --help'
Open →
Linux
ps Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command ps.

date --iso-8601=seconds; ps --help
Open →
Linux
ps Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command ps.

nohup sh -c 'ps --help' > command-results.log 2>&1 &
Open →
Linux
kill Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command kill.

kill --help > command-results.txt 2>&1
Open →
Linux
kill Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command kill.

kill --help 2>&1 | tee command-results.txt
Open →
Linux
kill Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command kill.

time kill --help
Open →
Linux
kill Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command kill.

watch -n 5 'kill --help'
Open →
Linux
kill Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command kill.

date --iso-8601=seconds; kill --help
Open →
Linux
kill Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command kill.

nohup sh -c 'kill --help' > command-results.log 2>&1 &
Open →
Linux
pkill Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command pkill.

pkill --help > command-results.txt 2>&1
Open →
Linux
pkill Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command pkill.

pkill --help 2>&1 | tee command-results.txt
Open →
Linux
pkill Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command pkill.

time pkill --help
Open →
Linux
pkill Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command pkill.

watch -n 5 'pkill --help'
Open →
Linux
pkill Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command pkill.

date --iso-8601=seconds; pkill --help
Open →
Linux
pkill Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command pkill.

nohup sh -c 'pkill --help' > command-results.log 2>&1 &
Open →
Linux
nice Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command nice.

nice --help > command-results.txt 2>&1
Open →
Linux
nice Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command nice.

nice --help 2>&1 | tee command-results.txt
Open →
Linux
nice Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command nice.

time nice --help
Open →
Linux
nice Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command nice.

watch -n 5 'nice --help'
Open →
Linux
nice Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command nice.

date --iso-8601=seconds; nice --help
Open →
Linux
nice Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command nice.

nohup sh -c 'nice --help' > command-results.log 2>&1 &
Open →
Linux
renice Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command renice.

renice --help > command-results.txt 2>&1
Open →
Linux
renice Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command renice.

renice --help 2>&1 | tee command-results.txt
Open →
Linux
renice Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command renice.

time renice --help
Open →
Linux
renice Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command renice.

watch -n 5 'renice --help'
Open →
Linux
renice Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command renice.

date --iso-8601=seconds; renice --help
Open →
Linux
renice Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command renice.

nohup sh -c 'renice --help' > command-results.log 2>&1 &
Open →
Linux
systemctl status Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command systemctl status.

systemctl --help > command-results.txt 2>&1
Open →
Linux
systemctl status Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command systemctl status.

systemctl --help 2>&1 | tee command-results.txt
Open →
Linux
systemctl status Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command systemctl status.

time systemctl --help
Open →
Linux
systemctl status Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command systemctl status.

watch -n 5 'systemctl --help'
Open →
Linux
systemctl status Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command systemctl status.

date --iso-8601=seconds; systemctl --help
Open →
Linux
systemctl status Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command systemctl status.

nohup sh -c 'systemctl --help' > command-results.log 2>&1 &
Open →
Linux
journalctl Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command journalctl.

journalctl --help > command-results.txt 2>&1
Open →
Linux
journalctl Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command journalctl.

journalctl --help 2>&1 | tee command-results.txt
Open →
Linux
journalctl Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command journalctl.

time journalctl --help
Open →
Linux
journalctl Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command journalctl.

watch -n 5 'journalctl --help'
Open →
Linux
journalctl Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command journalctl.

date --iso-8601=seconds; journalctl --help
Open →
Linux
journalctl Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command journalctl.

nohup sh -c 'journalctl --help' > command-results.log 2>&1 &
Open →
Linux
dmesg Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command dmesg.

dmesg --help > command-results.txt 2>&1
Open →
Linux
dmesg Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command dmesg.

dmesg --help 2>&1 | tee command-results.txt
Open →
Linux
dmesg Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command dmesg.

time dmesg --help
Open →
Linux
dmesg Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command dmesg.

watch -n 5 'dmesg --help'
Open →
Linux
dmesg Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command dmesg.

date --iso-8601=seconds; dmesg --help
Open →
Linux
dmesg Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command dmesg.

nohup sh -c 'dmesg --help' > command-results.log 2>&1 &
Open →
Linux
ip addr Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command ip addr.

ip --help > command-results.txt 2>&1
Open →
Linux
ip addr Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command ip addr.

ip --help 2>&1 | tee command-results.txt
Open →
Linux
ip addr Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command ip addr.

time ip --help
Open →
Linux
ip addr Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command ip addr.

watch -n 5 'ip --help'
Open →
Linux
ip addr Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command ip addr.

date --iso-8601=seconds; ip --help
Open →
Linux
ip addr Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command ip addr.

nohup sh -c 'ip --help' > command-results.log 2>&1 &
Open →
Linux
ss Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command ss.

ss --help > command-results.txt 2>&1
Open →
Linux
ss Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command ss.

ss --help 2>&1 | tee command-results.txt
Open →
Linux
ss Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command ss.

time ss --help
Open →
Linux
ss Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command ss.

watch -n 5 'ss --help'
Open →
Linux
ss Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command ss.

date --iso-8601=seconds; ss --help
Open →
Linux
ss Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command ss.

nohup sh -c 'ss --help' > command-results.log 2>&1 &
Open →
Linux
ping Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command ping.

ping --help > command-results.txt 2>&1
Open →
Linux
ping Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command ping.

ping --help 2>&1 | tee command-results.txt
Open →
Linux
ping Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command ping.

time ping --help
Open →
Linux
ping Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command ping.

watch -n 5 'ping --help'
Open →
Linux
ping Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command ping.

date --iso-8601=seconds; ping --help
Open →
Linux
ping Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command ping.

nohup sh -c 'ping --help' > command-results.log 2>&1 &
Open →
Linux
traceroute Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command traceroute.

traceroute --help > command-results.txt 2>&1
Open →
Linux
traceroute Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command traceroute.

traceroute --help 2>&1 | tee command-results.txt
Open →
Linux
traceroute Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command traceroute.

time traceroute --help
Open →
Linux
traceroute Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command traceroute.

watch -n 5 'traceroute --help'
Open →
Linux
traceroute Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command traceroute.

date --iso-8601=seconds; traceroute --help
Open →
Linux
traceroute Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command traceroute.

nohup sh -c 'traceroute --help' > command-results.log 2>&1 &
Open →
Linux
dig Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command dig.

dig --help > command-results.txt 2>&1
Open →
Linux
dig Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command dig.

dig --help 2>&1 | tee command-results.txt
Open →
Linux
dig Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command dig.

time dig --help
Open →
Linux
dig Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command dig.

watch -n 5 'dig --help'
Open →
Linux
dig Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command dig.

date --iso-8601=seconds; dig --help
Open →
Linux
dig Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command dig.

nohup sh -c 'dig --help' > command-results.log 2>&1 &
Open →
Linux
host Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command host.

host --help > command-results.txt 2>&1
Open →
Linux
host Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command host.

host --help 2>&1 | tee command-results.txt
Open →
Linux
host Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command host.

time host --help
Open →
Linux
host Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command host.

watch -n 5 'host --help'
Open →
Linux
host Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command host.

date --iso-8601=seconds; host --help
Open →
Linux
host Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command host.

nohup sh -c 'host --help' > command-results.log 2>&1 &
Open →
Linux
curl Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command curl.

curl --help > command-results.txt 2>&1
Open →
Linux
curl Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command curl.

curl --help 2>&1 | tee command-results.txt
Open →
Linux
curl Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command curl.

time curl --help
Open →
Linux
curl Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command curl.

watch -n 5 'curl --help'
Open →
Linux
curl Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command curl.

date --iso-8601=seconds; curl --help
Open →
Linux
curl Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command curl.

nohup sh -c 'curl --help' > command-results.log 2>&1 &
Open →
Linux
wget Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command wget.

wget --help > command-results.txt 2>&1
Open →
Linux
wget Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command wget.

wget --help 2>&1 | tee command-results.txt
Open →
Linux
wget Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command wget.

time wget --help
Open →
Linux
wget Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command wget.

watch -n 5 'wget --help'
Open →
Linux
wget Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command wget.

date --iso-8601=seconds; wget --help
Open →
Linux
wget Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command wget.

nohup sh -c 'wget --help' > command-results.log 2>&1 &
Open →
Linux
ssh Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command ssh.

ssh --help > command-results.txt 2>&1
Open →
Linux
ssh Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command ssh.

ssh --help 2>&1 | tee command-results.txt
Open →
Linux
ssh Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command ssh.

time ssh --help
Open →
Linux
ssh Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command ssh.

watch -n 5 'ssh --help'
Open →
Linux
ssh Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command ssh.

date --iso-8601=seconds; ssh --help
Open →
Linux
ssh Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command ssh.

nohup sh -c 'ssh --help' > command-results.log 2>&1 &
Open →
Linux
scp Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command scp.

scp --help > command-results.txt 2>&1
Open →
Linux
scp Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command scp.

scp --help 2>&1 | tee command-results.txt
Open →
Linux
scp Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command scp.

time scp --help
Open →
Linux
scp Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command scp.

watch -n 5 'scp --help'
Open →
Linux
scp Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command scp.

date --iso-8601=seconds; scp --help
Open →
Linux
scp Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command scp.

nohup sh -c 'scp --help' > command-results.log 2>&1 &
Open →
Linux
rsync Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command rsync.

rsync --help > command-results.txt 2>&1
Open →
Linux
rsync Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command rsync.

rsync --help 2>&1 | tee command-results.txt
Open →
Linux
rsync Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command rsync.

time rsync --help
Open →
Linux
rsync Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command rsync.

watch -n 5 'rsync --help'
Open →
Linux
rsync Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command rsync.

date --iso-8601=seconds; rsync --help
Open →
Linux
rsync Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command rsync.

nohup sh -c 'rsync --help' > command-results.log 2>&1 &
Open →
Linux
tar Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command tar.

tar --help > command-results.txt 2>&1
Open →
Linux
tar Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command tar.

tar --help 2>&1 | tee command-results.txt
Open →
Linux
tar Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command tar.

time tar --help
Open →
Linux
tar Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command tar.

watch -n 5 'tar --help'
Open →
Linux
tar Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command tar.

date --iso-8601=seconds; tar --help
Open →
Linux
tar Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command tar.

nohup sh -c 'tar --help' > command-results.log 2>&1 &
Open →
Linux
gzip Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command gzip.

gzip --help > command-results.txt 2>&1
Open →
Linux
gzip Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command gzip.

gzip --help 2>&1 | tee command-results.txt
Open →
Linux
gzip Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command gzip.

time gzip --help
Open →
Linux
gzip Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command gzip.

watch -n 5 'gzip --help'
Open →
Linux
gzip Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command gzip.

date --iso-8601=seconds; gzip --help
Open →
Linux
gzip Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command gzip.

nohup sh -c 'gzip --help' > command-results.log 2>&1 &
Open →
Linux
unzip Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command unzip.

unzip --help > command-results.txt 2>&1
Open →
Linux
unzip Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command unzip.

unzip --help 2>&1 | tee command-results.txt
Open →
Linux
unzip Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command unzip.

time unzip --help
Open →
Linux
unzip Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command unzip.

watch -n 5 'unzip --help'
Open →
Linux
unzip Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command unzip.

date --iso-8601=seconds; unzip --help
Open →
Linux
unzip Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command unzip.

nohup sh -c 'unzip --help' > command-results.log 2>&1 &
Open →
Linux
sed Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command sed.

sed --help > command-results.txt 2>&1
Open →
Linux
sed Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command sed.

sed --help 2>&1 | tee command-results.txt
Open →
Linux
sed Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command sed.

time sed --help
Open →
Linux
sed Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command sed.

watch -n 5 'sed --help'
Open →
Linux
sed Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command sed.

date --iso-8601=seconds; sed --help
Open →
Linux
sed Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command sed.

nohup sh -c 'sed --help' > command-results.log 2>&1 &
Open →
Linux
awk Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command awk.

awk --help > command-results.txt 2>&1
Open →
Linux
awk Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command awk.

awk --help 2>&1 | tee command-results.txt
Open →
Linux
awk Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command awk.

time awk --help
Open →
Linux
awk Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command awk.

watch -n 5 'awk --help'
Open →
Linux
awk Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command awk.

date --iso-8601=seconds; awk --help
Open →
Linux
awk Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command awk.

nohup sh -c 'awk --help' > command-results.log 2>&1 &
Open →
Linux
cut Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command cut.

cut --help > command-results.txt 2>&1
Open →
Linux
cut Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command cut.

cut --help 2>&1 | tee command-results.txt
Open →
Linux
cut Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command cut.

time cut --help
Open →
Linux
cut Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command cut.

watch -n 5 'cut --help'
Open →
Linux
cut Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command cut.

date --iso-8601=seconds; cut --help
Open →
Linux
cut Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command cut.

nohup sh -c 'cut --help' > command-results.log 2>&1 &
Open →
Linux
sort Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command sort.

sort --help > command-results.txt 2>&1
Open →
Linux
sort Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command sort.

sort --help 2>&1 | tee command-results.txt
Open →
Linux
sort Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command sort.

time sort --help
Open →
Linux
sort Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command sort.

watch -n 5 'sort --help'
Open →
Linux
sort Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command sort.

date --iso-8601=seconds; sort --help
Open →
Linux
sort Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command sort.

nohup sh -c 'sort --help' > command-results.log 2>&1 &
Open →
Linux
wc Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command wc.

wc --help > command-results.txt 2>&1
Open →
Linux
wc Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command wc.

wc --help 2>&1 | tee command-results.txt
Open →
Linux
wc Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command wc.

time wc --help
Open →
Linux
wc Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command wc.

watch -n 5 'wc --help'
Open →
Linux
wc Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command wc.

date --iso-8601=seconds; wc --help
Open →
Linux
wc Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command wc.

nohup sh -c 'wc --help' > command-results.log 2>&1 &
Open →
Linux
tee Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command tee.

echo --help > command-results.txt 2>&1
Open →
Linux
tee Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command tee.

echo --help 2>&1 | tee command-results.txt
Open →
Linux
tee Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command tee.

time echo --help
Open →
Linux
tee Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command tee.

watch -n 5 'echo --help'
Open →
Linux
tee Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command tee.

date --iso-8601=seconds; echo --help
Open →
Linux
tee Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command tee.

nohup sh -c 'echo --help' > command-results.log 2>&1 &
Open →
Linux
env Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command env.

env --help > command-results.txt 2>&1
Open →
Linux
env Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command env.

env --help 2>&1 | tee command-results.txt
Open →
Linux
env Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command env.

time env --help
Open →
Linux
env Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command env.

watch -n 5 'env --help'
Open →
Linux
env Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command env.

date --iso-8601=seconds; env --help
Open →
Linux
env Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command env.

nohup sh -c 'env --help' > command-results.log 2>&1 &
Open →
Linux
export Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command export.

export --help > command-results.txt 2>&1
Open →
Linux
export Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command export.

export --help 2>&1 | tee command-results.txt
Open →
Linux
export Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command export.

time export --help
Open →
Linux
export Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command export.

watch -n 5 'export --help'
Open →
Linux
export Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command export.

date --iso-8601=seconds; export --help
Open →
Linux
export Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command export.

nohup sh -c 'export --help' > command-results.log 2>&1 &
Open →
Linux
crontab Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command crontab.

crontab --help > command-results.txt 2>&1
Open →
Linux
crontab Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command crontab.

crontab --help 2>&1 | tee command-results.txt
Open →
Linux
crontab Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command crontab.

time crontab --help
Open →
Linux
crontab Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command crontab.

watch -n 5 'crontab --help'
Open →
Linux
crontab Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command crontab.

date --iso-8601=seconds; crontab --help
Open →
Linux
crontab Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command crontab.

nohup sh -c 'crontab --help' > command-results.log 2>&1 &
Open →
Linux
apt update Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command apt update.

apt --help > command-results.txt 2>&1
Open →
Linux
apt update Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command apt update.

apt --help 2>&1 | tee command-results.txt
Open →
Linux
apt update Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command apt update.

time apt --help
Open →
Linux
apt update Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command apt update.

watch -n 5 'apt --help'
Open →
Linux
apt update Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command apt update.

date --iso-8601=seconds; apt --help
Open →
Linux
apt update Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command apt update.

nohup sh -c 'apt --help' > command-results.log 2>&1 &
Open →
Linux
dnf update Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command dnf update.

dnf --help > command-results.txt 2>&1
Open →
Linux
dnf update Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command dnf update.

dnf --help 2>&1 | tee command-results.txt
Open →
Linux
dnf update Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command dnf update.

time dnf --help
Open →
Linux
dnf update Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command dnf update.

watch -n 5 'dnf --help'
Open →
Linux
dnf update Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command dnf update.

date --iso-8601=seconds; dnf --help
Open →
Linux
dnf update Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command dnf update.

nohup sh -c 'dnf --help' > command-results.log 2>&1 &
Open →
Linux
rpm query Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command rpm query.

rpm --help > command-results.txt 2>&1
Open →
Linux
rpm query Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command rpm query.

rpm --help 2>&1 | tee command-results.txt
Open →
Linux
rpm query Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command rpm query.

time rpm --help
Open →
Linux
rpm query Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command rpm query.

watch -n 5 'rpm --help'
Open →
Linux
rpm query Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command rpm query.

date --iso-8601=seconds; rpm --help
Open →
Linux
rpm query Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command rpm query.

nohup sh -c 'rpm --help' > command-results.log 2>&1 &
Open →
Linux
dpkg query Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command dpkg query.

dpkg --help > command-results.txt 2>&1
Open →
Linux
dpkg query Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command dpkg query.

dpkg --help 2>&1 | tee command-results.txt
Open →
Linux
dpkg query Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command dpkg query.

time dpkg --help
Open →
Linux
dpkg query Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command dpkg query.

watch -n 5 'dpkg --help'
Open →
Linux
dpkg query Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command dpkg query.

date --iso-8601=seconds; dpkg --help
Open →
Linux
dpkg query Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command dpkg query.

nohup sh -c 'dpkg --help' > command-results.log 2>&1 &
Open →
Linux
uname Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command uname.

uname --help > command-results.txt 2>&1
Open →
Linux
uname Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command uname.

uname --help 2>&1 | tee command-results.txt
Open →
Linux
uname Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command uname.

time uname --help
Open →
Linux
uname Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command uname.

watch -n 5 'uname --help'
Open →
Linux
uname Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command uname.

date --iso-8601=seconds; uname --help
Open →
Linux
uname Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command uname.

nohup sh -c 'uname --help' > command-results.log 2>&1 &
Open →
Linux
hostnamectl Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command hostnamectl.

hostnamectl --help > command-results.txt 2>&1
Open →
Linux
hostnamectl Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command hostnamectl.

hostnamectl --help 2>&1 | tee command-results.txt
Open →
Linux
hostnamectl Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command hostnamectl.

time hostnamectl --help
Open →
Linux
hostnamectl Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command hostnamectl.

watch -n 5 'hostnamectl --help'
Open →
Linux
hostnamectl Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command hostnamectl.

date --iso-8601=seconds; hostnamectl --help
Open →
Linux
hostnamectl Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command hostnamectl.

nohup sh -c 'hostnamectl --help' > command-results.log 2>&1 &
Open →
Linux
timedatectl Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command timedatectl.

timedatectl --help > command-results.txt 2>&1
Open →
Linux
timedatectl Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command timedatectl.

timedatectl --help 2>&1 | tee command-results.txt
Open →
Linux
timedatectl Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command timedatectl.

time timedatectl --help
Open →
Linux
timedatectl Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command timedatectl.

watch -n 5 'timedatectl --help'
Open →
Linux
timedatectl Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command timedatectl.

date --iso-8601=seconds; timedatectl --help
Open →
Linux
timedatectl Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command timedatectl.

nohup sh -c 'timedatectl --help' > command-results.log 2>&1 &
Open →
Linux
lsblk Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command lsblk.

lsblk --help > command-results.txt 2>&1
Open →
Linux
lsblk Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command lsblk.

lsblk --help 2>&1 | tee command-results.txt
Open →
Linux
lsblk Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command lsblk.

time lsblk --help
Open →
Linux
lsblk Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command lsblk.

watch -n 5 'lsblk --help'
Open →
Linux
lsblk Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command lsblk.

date --iso-8601=seconds; lsblk --help
Open →
Linux
lsblk Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command lsblk.

nohup sh -c 'lsblk --help' > command-results.log 2>&1 &
Open →
Linux
mount Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command mount.

mount --help > command-results.txt 2>&1
Open →
Linux
mount Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command mount.

mount --help 2>&1 | tee command-results.txt
Open →
Linux
mount Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command mount.

time mount --help
Open →
Linux
mount Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command mount.

watch -n 5 'mount --help'
Open →
Linux
mount Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command mount.

date --iso-8601=seconds; mount --help
Open →
Linux
mount Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command mount.

nohup sh -c 'mount --help' > command-results.log 2>&1 &
Open →
Linux
fdisk Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command fdisk.

fdisk --help > command-results.txt 2>&1
Open →
Linux
fdisk Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command fdisk.

fdisk --help 2>&1 | tee command-results.txt
Open →
Linux
fdisk Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command fdisk.

time fdisk --help
Open →
Linux
fdisk Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command fdisk.

watch -n 5 'fdisk --help'
Open →
Linux
fdisk Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command fdisk.

date --iso-8601=seconds; fdisk --help
Open →
Linux
fdisk Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command fdisk.

nohup sh -c 'fdisk --help' > command-results.log 2>&1 &
Open →
Linux
lsof Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command lsof.

lsof --help > command-results.txt 2>&1
Open →
Linux
lsof Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command lsof.

lsof --help 2>&1 | tee command-results.txt
Open →
Linux
lsof Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command lsof.

time lsof --help
Open →
Linux
lsof Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command lsof.

watch -n 5 'lsof --help'
Open →
Linux
lsof Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command lsof.

date --iso-8601=seconds; lsof --help
Open →
Linux
lsof Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command lsof.

nohup sh -c 'lsof --help' > command-results.log 2>&1 &
Open →
Linux
openssl s_client Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command openssl s_client.

openssl --help > command-results.txt 2>&1
Open →
Linux
openssl s_client Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command openssl s_client.

openssl --help 2>&1 | tee command-results.txt
Open →
Linux
openssl s_client Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command openssl s_client.

time openssl --help
Open →
Linux
openssl s_client Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command openssl s_client.

watch -n 5 'openssl --help'
Open →
Linux
openssl s_client Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command openssl s_client.

date --iso-8601=seconds; openssl --help
Open →
Linux
openssl s_client Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command openssl s_client.

nohup sh -c 'openssl --help' > command-results.log 2>&1 &
Open →
Linux
sha256sum Help and Syntax — Save output

Save standard output and errors to a text file. Base task: Display usage, options, and built-in help for the Linux command sha256sum.

sha256sum --help > command-results.txt 2>&1
Open →
Linux
sha256sum Help and Syntax — Display and save output

Display output while saving it to a file. Base task: Display usage, options, and built-in help for the Linux command sha256sum.

sha256sum --help 2>&1 | tee command-results.txt
Open →
Linux
sha256sum Help and Syntax — Measure execution time

Measure the command execution time. Base task: Display usage, options, and built-in help for the Linux command sha256sum.

time sha256sum --help
Open →
Linux
sha256sum Help and Syntax — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display usage, options, and built-in help for the Linux command sha256sum.

watch -n 5 'sha256sum --help'
Open →
Linux
sha256sum Help and Syntax — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display usage, options, and built-in help for the Linux command sha256sum.

date --iso-8601=seconds; sha256sum --help
Open →
Linux
sha256sum Help and Syntax — Run in background

Run the command in the background and log its output. Base task: Display usage, options, and built-in help for the Linux command sha256sum.

nohup sh -c 'sha256sum --help' > command-results.log 2>&1 &
Open →
Microsoft Azure

Microsoft Azure

Back to top ↑
Azure CLI
az login

Authenticate Azure CLI interactively.

az login
Open →
Azure CLI
az account show

Display the active Azure subscription context.

az account show -o table
Open →
Azure CLI
az account list

List accessible Azure subscriptions.

az account list -o table
Open →
Azure CLI
az account set

Select an Azure subscription.

az account set --subscription "Production"
Open →
Azure CLI
az group list

List Azure resource groups.

az group list -o table
Open →
Azure CLI
az group create

Create an Azure resource group.

az group create --name rg-app-prod --location eastus
Open →
Azure CLI
az resource list

List resources in a resource group.

az resource list -g rg-app-prod -o table
Open →
Azure CLI
az vm list

List Azure virtual machines.

az vm list -d -o table
Open →
Azure CLI
az vm show

Display Azure VM details.

az vm show -g rg-app-prod -n vm01 -d
Open →
Azure CLI
az vm start

Start an Azure virtual machine.

az vm start -g rg-app-prod -n vm01
Open →
Azure CLI
az vm deallocate

Deallocate an Azure virtual machine.

az vm deallocate -g rg-app-prod -n vm01
Open →
Azure CLI
az vm restart

Restart an Azure virtual machine.

az vm restart -g rg-app-prod -n vm01
Open →
Azure CLI
az vm get-instance-view

Display Azure VM runtime status.

az vm get-instance-view -g rg-app-prod -n vm01 -o table
Open →
Azure CLI
az network vnet list

List Azure virtual networks.

az network vnet list -o table
Open →
Azure CLI
az network nsg list

List network security groups.

az network nsg list -o table
Open →
Azure CLI
az network public-ip list

List Azure public IP resources.

az network public-ip list -o table
Open →
Azure CLI
az storage account list

List Azure storage accounts.

az storage account list -o table
Open →
Azure CLI
az storage blob list

List blobs in a container.

az storage blob list --account-name mystorage --container-name backups -o table
Open →
Azure CLI
az webapp list

List Azure App Service web apps.

az webapp list -o table
Open →
Azure CLI
az webapp restart

Restart an Azure web app.

az webapp restart -g rg-app-prod -n mywebapp
Open →
Azure CLI
az keyvault list

List Azure Key Vaults.

az keyvault list -o table
Open →
Azure CLI
az keyvault secret list

List secret metadata in a Key Vault.

az keyvault secret list --vault-name myvault -o table
Open →
Azure CLI
az ad user list

List Microsoft Entra ID users through Azure CLI.

az ad user list --output table
Open →
Azure CLI
az ad group list

List Microsoft Entra ID groups through Azure CLI.

az ad group list --output table
Open →
Azure CLI
az monitor activity-log list

List recent Azure activity log events.

az monitor activity-log list --offset 1d -o table
Open →
Azure CLI
az tag list

List Azure tags and values.

az tag list -o table
Open →
Azure CLI
az login — Basic Usage

Use az login for a standard administrative task.

az login
Open →
Azure CLI
az account show — Basic Usage

Use az account show for a standard administrative task.

az account show -o table
Open →
Azure CLI
az account list — Basic Usage

Use az account list for a standard administrative task.

az account list -o table
Open →
Azure CLI
az account set — Basic Usage

Use az account set for a standard administrative task.

az account set --subscription "Production"
Open →
Azure CLI
az group list — Basic Usage

Use az group list for a standard administrative task.

az group list -o table
Open →
Azure CLI
az group create — Basic Usage

Use az group create for a standard administrative task.

az group create --name rg-app-prod --location eastus
Open →
Azure CLI
az resource list — Basic Usage

Use az resource list for a standard administrative task.

az resource list -g rg-app-prod -o table
Open →
Azure CLI
az vm list — Basic Usage

Use az vm list for a standard administrative task.

az vm list -d -o table
Open →
Azure CLI
az vm show — Basic Usage

Use az vm show for a standard administrative task.

az vm show -g rg-app-prod -n vm01 -d
Open →
Azure CLI
az vm start — Basic Usage

Use az vm start for a standard administrative task.

az vm start -g rg-app-prod -n vm01
Open →
Azure CLI
az vm deallocate — Basic Usage

Use az vm deallocate for a standard administrative task.

az vm deallocate -g rg-app-prod -n vm01
Open →
Azure CLI
az vm restart — Basic Usage

Use az vm restart for a standard administrative task.

az vm restart -g rg-app-prod -n vm01
Open →
Azure CLI
az vm get-instance-view — Basic Usage

Use az vm get-instance-view for a standard administrative task.

az vm get-instance-view -g rg-app-prod -n vm01 -o table
Open →
Azure CLI
az network vnet list — Basic Usage

Use az network vnet list for a standard administrative task.

az network vnet list -o table
Open →
Azure CLI
az network nsg list — Basic Usage

Use az network nsg list for a standard administrative task.

az network nsg list -o table
Open →
Azure CLI
az network public-ip list — Basic Usage

Use az network public-ip list for a standard administrative task.

az network public-ip list -o table
Open →
Azure CLI
az storage account list — Basic Usage

Use az storage account list for a standard administrative task.

az storage account list -o table
Open →
Azure CLI
az storage blob list — Basic Usage

Use az storage blob list for a standard administrative task.

az storage blob list --account-name mystorage --container-name backups -o table
Open →
Azure CLI
az webapp list — Basic Usage

Use az webapp list for a standard administrative task.

az webapp list -o table
Open →
Azure CLI
az webapp restart — Basic Usage

Use az webapp restart for a standard administrative task.

az webapp restart -g rg-app-prod -n mywebapp
Open →
Azure CLI
az keyvault list — Basic Usage

Use az keyvault list for a standard administrative task.

az keyvault list -o table
Open →
Azure CLI
az keyvault secret list — Basic Usage

Use az keyvault secret list for a standard administrative task.

az keyvault secret list --vault-name myvault -o table
Open →
Azure CLI
az ad user list — Basic Usage

Use az ad user list for a standard administrative task.

az ad user list --output table
Open →
Azure CLI
az ad group list — Basic Usage

Use az ad group list for a standard administrative task.

az ad group list --output table
Open →
Azure CLI
az monitor activity-log list — Basic Usage

Use az monitor activity-log list for a standard administrative task.

az monitor activity-log list --offset 1d -o table
Open →
Azure CLI
az tag list — Basic Usage

Use az tag list for a standard administrative task.

az tag list -o table
Open →
Azure CLI
az login Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az login.

az login --help
Open →
Azure CLI
az account show Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az account show.

az account show --help
Open →
Azure CLI
az account list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az account list.

az account list --help
Open →
Azure CLI
az account set Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az account set.

az account set --help
Open →
Azure CLI
az group list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az group list.

az group list --help
Open →
Azure CLI
az group create Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az group create.

az group create --help
Open →
Azure CLI
az resource list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az resource list.

az resource list --help
Open →
Azure CLI
az vm list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm list.

az vm list --help
Open →
Azure CLI
az vm show Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm show.

az vm show --help
Open →
Azure CLI
az vm start Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm start.

az vm start --help
Open →
Azure CLI
az vm deallocate Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm deallocate.

az vm deallocate --help
Open →
Azure CLI
az vm restart Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm restart.

az vm restart --help
Open →
Azure CLI
az vm get-instance-view Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm get-instance-view.

az vm get-instance-view --help
Open →
Azure CLI
az network vnet list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az network vnet list.

az network vnet --help
Open →
Azure CLI
az network nsg list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az network nsg list.

az network nsg --help
Open →
Azure CLI
az network public-ip list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az network public-ip list.

az network public-ip --help
Open →
Azure CLI
az storage account list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az storage account list.

az storage account --help
Open →
Azure CLI
az storage blob list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az storage blob list.

az storage blob --help
Open →
Azure CLI
az webapp list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az webapp list.

az webapp list --help
Open →
Azure CLI
az webapp restart Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az webapp restart.

az webapp restart --help
Open →
Azure CLI
az keyvault list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az keyvault list.

az keyvault list --help
Open →
Azure CLI
az keyvault secret list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az keyvault secret list.

az keyvault secret --help
Open →
Azure CLI
az ad user list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az ad user list.

az ad user --help
Open →
Azure CLI
az ad group list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az ad group list.

az ad group --help
Open →
Azure CLI
az monitor activity-log list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az monitor activity-log list.

az monitor activity-log --help
Open →
Azure CLI
az tag list Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az tag list.

az tag list --help
Open →
Azure CLI
az login — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az login — Basic Usage.

az login --help
Open →
Azure CLI
az account show — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az account show — Basic Usage.

az account show --help
Open →
Azure CLI
az account list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az account list — Basic Usage.

az account list --help
Open →
Azure CLI
az account set — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az account set — Basic Usage.

az account set --help
Open →
Azure CLI
az group list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az group list — Basic Usage.

az group list --help
Open →
Azure CLI
az group create — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az group create — Basic Usage.

az group create --help
Open →
Azure CLI
az resource list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az resource list — Basic Usage.

az resource list --help
Open →
Azure CLI
az vm list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm list — Basic Usage.

az vm list --help
Open →
Azure CLI
az vm show — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm show — Basic Usage.

az vm show --help
Open →
Azure CLI
az vm start — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm start — Basic Usage.

az vm start --help
Open →
Azure CLI
az vm deallocate — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm deallocate — Basic Usage.

az vm deallocate --help
Open →
Azure CLI
az vm restart — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm restart — Basic Usage.

az vm restart --help
Open →
Azure CLI
az vm get-instance-view — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az vm get-instance-view — Basic Usage.

az vm get-instance-view --help
Open →
Azure CLI
az network vnet list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az network vnet list — Basic Usage.

az network vnet --help
Open →
Azure CLI
az network nsg list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az network nsg list — Basic Usage.

az network nsg --help
Open →
Azure CLI
az network public-ip list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az network public-ip list — Basic Usage.

az network public-ip --help
Open →
Azure CLI
az storage account list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az storage account list — Basic Usage.

az storage account --help
Open →
Azure CLI
az storage blob list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az storage blob list — Basic Usage.

az storage blob --help
Open →
Azure CLI
az webapp list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az webapp list — Basic Usage.

az webapp list --help
Open →
Azure CLI
az webapp restart — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az webapp restart — Basic Usage.

az webapp restart --help
Open →
Azure CLI
az keyvault list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az keyvault list — Basic Usage.

az keyvault list --help
Open →
Azure CLI
az keyvault secret list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az keyvault secret list — Basic Usage.

az keyvault secret --help
Open →
Azure CLI
az ad user list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az ad user list — Basic Usage.

az ad user --help
Open →
Azure CLI
az ad group list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az ad group list — Basic Usage.

az ad group --help
Open →
Azure CLI
az monitor activity-log list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az monitor activity-log list — Basic Usage.

az monitor activity-log --help
Open →
Azure CLI
az tag list — Basic Usage Help and Syntax

Show Azure CLI syntax, arguments, and examples related to az tag list — Basic Usage.

az tag list --help
Open →
Azure CLI
az login — JSON output

Return Azure CLI output as JSON. Base task: Authenticate Azure CLI interactively.

az login --output json
Open →
Azure CLI
az login — Table output

Display Azure CLI output as a readable table. Base task: Authenticate Azure CLI interactively.

az login --output table
Open →
Azure CLI
az login — TSV output

Return tab-separated output for scripts. Base task: Authenticate Azure CLI interactively.

az login --output tsv
Open →
Azure CLI
az login — Save JSON output

Save Azure CLI output to a JSON file. Base task: Authenticate Azure CLI interactively.

az login --output json > azure-command-results.json
Open →
Azure CLI
az login — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Authenticate Azure CLI interactively.

time az login
Open →
Azure CLI
az account show — JSON output

Return Azure CLI output as JSON. Base task: Display the active Azure subscription context.

az account show -o table --output json
Open →
Azure CLI
az account show — Table output

Display Azure CLI output as a readable table. Base task: Display the active Azure subscription context.

az account show -o table --output table
Open →
Azure CLI
az account show — TSV output

Return tab-separated output for scripts. Base task: Display the active Azure subscription context.

az account show -o table --output tsv
Open →
Azure CLI
az account show — Save JSON output

Save Azure CLI output to a JSON file. Base task: Display the active Azure subscription context.

az account show -o table --output json > azure-command-results.json
Open →
Azure CLI
az account show — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Display the active Azure subscription context.

time az account show -o table
Open →
Azure CLI
az account list — JSON output

Return Azure CLI output as JSON. Base task: List accessible Azure subscriptions.

az account list -o table --output json
Open →
Azure CLI
az account list — Table output

Display Azure CLI output as a readable table. Base task: List accessible Azure subscriptions.

az account list -o table --output table
Open →
Azure CLI
az account list — TSV output

Return tab-separated output for scripts. Base task: List accessible Azure subscriptions.

az account list -o table --output tsv
Open →
Azure CLI
az account list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List accessible Azure subscriptions.

az account list -o table --output json > azure-command-results.json
Open →
Azure CLI
az account list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List accessible Azure subscriptions.

time az account list -o table
Open →
Azure CLI
az account set — JSON output

Return Azure CLI output as JSON. Base task: Select an Azure subscription.

az account set --subscription "Production" --output json
Open →
Azure CLI
az account set — Table output

Display Azure CLI output as a readable table. Base task: Select an Azure subscription.

az account set --subscription "Production" --output table
Open →
Azure CLI
az account set — TSV output

Return tab-separated output for scripts. Base task: Select an Azure subscription.

az account set --subscription "Production" --output tsv
Open →
Azure CLI
az account set — Save JSON output

Save Azure CLI output to a JSON file. Base task: Select an Azure subscription.

az account set --subscription "Production" --output json > azure-command-results.json
Open →
Azure CLI
az account set — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Select an Azure subscription.

time az account set --subscription "Production"
Open →
Azure CLI
az group list — JSON output

Return Azure CLI output as JSON. Base task: List Azure resource groups.

az group list -o table --output json
Open →
Azure CLI
az group list — Table output

Display Azure CLI output as a readable table. Base task: List Azure resource groups.

az group list -o table --output table
Open →
Azure CLI
az group list — TSV output

Return tab-separated output for scripts. Base task: List Azure resource groups.

az group list -o table --output tsv
Open →
Azure CLI
az group list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Azure resource groups.

az group list -o table --output json > azure-command-results.json
Open →
Azure CLI
az group list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Azure resource groups.

time az group list -o table
Open →
Azure CLI
az group create — JSON output

Return Azure CLI output as JSON. Base task: Create an Azure resource group.

az group create --name rg-app-prod --location eastus --output json
Open →
Azure CLI
az group create — Table output

Display Azure CLI output as a readable table. Base task: Create an Azure resource group.

az group create --name rg-app-prod --location eastus --output table
Open →
Azure CLI
az group create — TSV output

Return tab-separated output for scripts. Base task: Create an Azure resource group.

az group create --name rg-app-prod --location eastus --output tsv
Open →
Azure CLI
az group create — Save JSON output

Save Azure CLI output to a JSON file. Base task: Create an Azure resource group.

az group create --name rg-app-prod --location eastus --output json > azure-command-results.json
Open →
Azure CLI
az group create — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Create an Azure resource group.

time az group create --name rg-app-prod --location eastus
Open →
Azure CLI
az resource list — JSON output

Return Azure CLI output as JSON. Base task: List resources in a resource group.

az resource list -g rg-app-prod -o table --output json
Open →
Azure CLI
az resource list — Table output

Display Azure CLI output as a readable table. Base task: List resources in a resource group.

az resource list -g rg-app-prod -o table --output table
Open →
Azure CLI
az resource list — TSV output

Return tab-separated output for scripts. Base task: List resources in a resource group.

az resource list -g rg-app-prod -o table --output tsv
Open →
Azure CLI
az resource list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List resources in a resource group.

az resource list -g rg-app-prod -o table --output json > azure-command-results.json
Open →
Azure CLI
az resource list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List resources in a resource group.

time az resource list -g rg-app-prod -o table
Open →
Azure CLI
az vm list — JSON output

Return Azure CLI output as JSON. Base task: List Azure virtual machines.

az vm list -d -o table --output json
Open →
Azure CLI
az vm list — Table output

Display Azure CLI output as a readable table. Base task: List Azure virtual machines.

az vm list -d -o table --output table
Open →
Azure CLI
az vm list — TSV output

Return tab-separated output for scripts. Base task: List Azure virtual machines.

az vm list -d -o table --output tsv
Open →
Azure CLI
az vm list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Azure virtual machines.

az vm list -d -o table --output json > azure-command-results.json
Open →
Azure CLI
az vm list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Azure virtual machines.

time az vm list -d -o table
Open →
Azure CLI
az vm show — JSON output

Return Azure CLI output as JSON. Base task: Display Azure VM details.

az vm show -g rg-app-prod -n vm01 -d --output json
Open →
Azure CLI
az vm show — Table output

Display Azure CLI output as a readable table. Base task: Display Azure VM details.

az vm show -g rg-app-prod -n vm01 -d --output table
Open →
Azure CLI
az vm show — TSV output

Return tab-separated output for scripts. Base task: Display Azure VM details.

az vm show -g rg-app-prod -n vm01 -d --output tsv
Open →
Azure CLI
az vm show — Save JSON output

Save Azure CLI output to a JSON file. Base task: Display Azure VM details.

az vm show -g rg-app-prod -n vm01 -d --output json > azure-command-results.json
Open →
Azure CLI
az vm show — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Display Azure VM details.

time az vm show -g rg-app-prod -n vm01 -d
Open →
Azure CLI
az vm start — JSON output

Return Azure CLI output as JSON. Base task: Start an Azure virtual machine.

az vm start -g rg-app-prod -n vm01 --output json
Open →
Azure CLI
az vm start — Table output

Display Azure CLI output as a readable table. Base task: Start an Azure virtual machine.

az vm start -g rg-app-prod -n vm01 --output table
Open →
Azure CLI
az vm start — TSV output

Return tab-separated output for scripts. Base task: Start an Azure virtual machine.

az vm start -g rg-app-prod -n vm01 --output tsv
Open →
Azure CLI
az vm start — Save JSON output

Save Azure CLI output to a JSON file. Base task: Start an Azure virtual machine.

az vm start -g rg-app-prod -n vm01 --output json > azure-command-results.json
Open →
Azure CLI
az vm start — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Start an Azure virtual machine.

time az vm start -g rg-app-prod -n vm01
Open →
Azure CLI
az vm deallocate — JSON output

Return Azure CLI output as JSON. Base task: Deallocate an Azure virtual machine.

az vm deallocate -g rg-app-prod -n vm01 --output json
Open →
Azure CLI
az vm deallocate — Table output

Display Azure CLI output as a readable table. Base task: Deallocate an Azure virtual machine.

az vm deallocate -g rg-app-prod -n vm01 --output table
Open →
Azure CLI
az vm deallocate — TSV output

Return tab-separated output for scripts. Base task: Deallocate an Azure virtual machine.

az vm deallocate -g rg-app-prod -n vm01 --output tsv
Open →
Azure CLI
az vm deallocate — Save JSON output

Save Azure CLI output to a JSON file. Base task: Deallocate an Azure virtual machine.

az vm deallocate -g rg-app-prod -n vm01 --output json > azure-command-results.json
Open →
Azure CLI
az vm deallocate — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Deallocate an Azure virtual machine.

time az vm deallocate -g rg-app-prod -n vm01
Open →
Azure CLI
az vm restart — JSON output

Return Azure CLI output as JSON. Base task: Restart an Azure virtual machine.

az vm restart -g rg-app-prod -n vm01 --output json
Open →
Azure CLI
az vm restart — Table output

Display Azure CLI output as a readable table. Base task: Restart an Azure virtual machine.

az vm restart -g rg-app-prod -n vm01 --output table
Open →
Azure CLI
az vm restart — TSV output

Return tab-separated output for scripts. Base task: Restart an Azure virtual machine.

az vm restart -g rg-app-prod -n vm01 --output tsv
Open →
Azure CLI
az vm restart — Save JSON output

Save Azure CLI output to a JSON file. Base task: Restart an Azure virtual machine.

az vm restart -g rg-app-prod -n vm01 --output json > azure-command-results.json
Open →
Azure CLI
az vm restart — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Restart an Azure virtual machine.

time az vm restart -g rg-app-prod -n vm01
Open →
Azure CLI
az vm get-instance-view — JSON output

Return Azure CLI output as JSON. Base task: Display Azure VM runtime status.

az vm get-instance-view -g rg-app-prod -n vm01 -o table --output json
Open →
Azure CLI
az vm get-instance-view — Table output

Display Azure CLI output as a readable table. Base task: Display Azure VM runtime status.

az vm get-instance-view -g rg-app-prod -n vm01 -o table --output table
Open →
Azure CLI
az vm get-instance-view — TSV output

Return tab-separated output for scripts. Base task: Display Azure VM runtime status.

az vm get-instance-view -g rg-app-prod -n vm01 -o table --output tsv
Open →
Azure CLI
az vm get-instance-view — Save JSON output

Save Azure CLI output to a JSON file. Base task: Display Azure VM runtime status.

az vm get-instance-view -g rg-app-prod -n vm01 -o table --output json > azure-command-results.json
Open →
Azure CLI
az vm get-instance-view — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Display Azure VM runtime status.

time az vm get-instance-view -g rg-app-prod -n vm01 -o table
Open →
Azure CLI
az network vnet list — JSON output

Return Azure CLI output as JSON. Base task: List Azure virtual networks.

az network vnet list -o table --output json
Open →
Azure CLI
az network vnet list — Table output

Display Azure CLI output as a readable table. Base task: List Azure virtual networks.

az network vnet list -o table --output table
Open →
Azure CLI
az network vnet list — TSV output

Return tab-separated output for scripts. Base task: List Azure virtual networks.

az network vnet list -o table --output tsv
Open →
Azure CLI
az network vnet list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Azure virtual networks.

az network vnet list -o table --output json > azure-command-results.json
Open →
Azure CLI
az network vnet list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Azure virtual networks.

time az network vnet list -o table
Open →
Azure CLI
az network nsg list — JSON output

Return Azure CLI output as JSON. Base task: List network security groups.

az network nsg list -o table --output json
Open →
Azure CLI
az network nsg list — Table output

Display Azure CLI output as a readable table. Base task: List network security groups.

az network nsg list -o table --output table
Open →
Azure CLI
az network nsg list — TSV output

Return tab-separated output for scripts. Base task: List network security groups.

az network nsg list -o table --output tsv
Open →
Azure CLI
az network nsg list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List network security groups.

az network nsg list -o table --output json > azure-command-results.json
Open →
Azure CLI
az network nsg list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List network security groups.

time az network nsg list -o table
Open →
Azure CLI
az network public-ip list — JSON output

Return Azure CLI output as JSON. Base task: List Azure public IP resources.

az network public-ip list -o table --output json
Open →
Azure CLI
az network public-ip list — Table output

Display Azure CLI output as a readable table. Base task: List Azure public IP resources.

az network public-ip list -o table --output table
Open →
Azure CLI
az network public-ip list — TSV output

Return tab-separated output for scripts. Base task: List Azure public IP resources.

az network public-ip list -o table --output tsv
Open →
Azure CLI
az network public-ip list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Azure public IP resources.

az network public-ip list -o table --output json > azure-command-results.json
Open →
Azure CLI
az network public-ip list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Azure public IP resources.

time az network public-ip list -o table
Open →
Azure CLI
az storage account list — JSON output

Return Azure CLI output as JSON. Base task: List Azure storage accounts.

az storage account list -o table --output json
Open →
Azure CLI
az storage account list — Table output

Display Azure CLI output as a readable table. Base task: List Azure storage accounts.

az storage account list -o table --output table
Open →
Azure CLI
az storage account list — TSV output

Return tab-separated output for scripts. Base task: List Azure storage accounts.

az storage account list -o table --output tsv
Open →
Azure CLI
az storage account list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Azure storage accounts.

az storage account list -o table --output json > azure-command-results.json
Open →
Azure CLI
az storage account list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Azure storage accounts.

time az storage account list -o table
Open →
Azure CLI
az storage blob list — JSON output

Return Azure CLI output as JSON. Base task: List blobs in a container.

az storage blob list --account-name mystorage --container-name backups -o table --output json
Open →
Azure CLI
az storage blob list — Table output

Display Azure CLI output as a readable table. Base task: List blobs in a container.

az storage blob list --account-name mystorage --container-name backups -o table --output table
Open →
Azure CLI
az storage blob list — TSV output

Return tab-separated output for scripts. Base task: List blobs in a container.

az storage blob list --account-name mystorage --container-name backups -o table --output tsv
Open →
Azure CLI
az storage blob list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List blobs in a container.

az storage blob list --account-name mystorage --container-name backups -o table --output json > azure-command-results.json
Open →
Azure CLI
az storage blob list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List blobs in a container.

time az storage blob list --account-name mystorage --container-name backups -o table
Open →
Azure CLI
az webapp list — JSON output

Return Azure CLI output as JSON. Base task: List Azure App Service web apps.

az webapp list -o table --output json
Open →
Azure CLI
az webapp list — Table output

Display Azure CLI output as a readable table. Base task: List Azure App Service web apps.

az webapp list -o table --output table
Open →
Azure CLI
az webapp list — TSV output

Return tab-separated output for scripts. Base task: List Azure App Service web apps.

az webapp list -o table --output tsv
Open →
Azure CLI
az webapp list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Azure App Service web apps.

az webapp list -o table --output json > azure-command-results.json
Open →
Azure CLI
az webapp list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Azure App Service web apps.

time az webapp list -o table
Open →
Azure CLI
az webapp restart — JSON output

Return Azure CLI output as JSON. Base task: Restart an Azure web app.

az webapp restart -g rg-app-prod -n mywebapp --output json
Open →
Azure CLI
az webapp restart — Table output

Display Azure CLI output as a readable table. Base task: Restart an Azure web app.

az webapp restart -g rg-app-prod -n mywebapp --output table
Open →
Azure CLI
az webapp restart — TSV output

Return tab-separated output for scripts. Base task: Restart an Azure web app.

az webapp restart -g rg-app-prod -n mywebapp --output tsv
Open →
Azure CLI
az webapp restart — Save JSON output

Save Azure CLI output to a JSON file. Base task: Restart an Azure web app.

az webapp restart -g rg-app-prod -n mywebapp --output json > azure-command-results.json
Open →
Azure CLI
az webapp restart — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Restart an Azure web app.

time az webapp restart -g rg-app-prod -n mywebapp
Open →
Azure CLI
az keyvault list — JSON output

Return Azure CLI output as JSON. Base task: List Azure Key Vaults.

az keyvault list -o table --output json
Open →
Azure CLI
az keyvault list — Table output

Display Azure CLI output as a readable table. Base task: List Azure Key Vaults.

az keyvault list -o table --output table
Open →
Azure CLI
az keyvault list — TSV output

Return tab-separated output for scripts. Base task: List Azure Key Vaults.

az keyvault list -o table --output tsv
Open →
Azure CLI
az keyvault list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Azure Key Vaults.

az keyvault list -o table --output json > azure-command-results.json
Open →
Azure CLI
az keyvault list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Azure Key Vaults.

time az keyvault list -o table
Open →
Azure CLI
az keyvault secret list — JSON output

Return Azure CLI output as JSON. Base task: List secret metadata in a Key Vault.

az keyvault secret list --vault-name myvault -o table --output json
Open →
Azure CLI
az keyvault secret list — Table output

Display Azure CLI output as a readable table. Base task: List secret metadata in a Key Vault.

az keyvault secret list --vault-name myvault -o table --output table
Open →
Azure CLI
az keyvault secret list — TSV output

Return tab-separated output for scripts. Base task: List secret metadata in a Key Vault.

az keyvault secret list --vault-name myvault -o table --output tsv
Open →
Azure CLI
az keyvault secret list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List secret metadata in a Key Vault.

az keyvault secret list --vault-name myvault -o table --output json > azure-command-results.json
Open →
Azure CLI
az keyvault secret list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List secret metadata in a Key Vault.

time az keyvault secret list --vault-name myvault -o table
Open →
Azure CLI
az ad user list — JSON output

Return Azure CLI output as JSON. Base task: List Microsoft Entra ID users through Azure CLI.

az ad user list --output table --output json
Open →
Azure CLI
az ad user list — Table output

Display Azure CLI output as a readable table. Base task: List Microsoft Entra ID users through Azure CLI.

az ad user list --output table --output table
Open →
Azure CLI
az ad user list — TSV output

Return tab-separated output for scripts. Base task: List Microsoft Entra ID users through Azure CLI.

az ad user list --output table --output tsv
Open →
Azure CLI
az ad user list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Microsoft Entra ID users through Azure CLI.

az ad user list --output table --output json > azure-command-results.json
Open →
Azure CLI
az ad user list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Microsoft Entra ID users through Azure CLI.

time az ad user list --output table
Open →
Azure CLI
az ad group list — JSON output

Return Azure CLI output as JSON. Base task: List Microsoft Entra ID groups through Azure CLI.

az ad group list --output table --output json
Open →
Azure CLI
az ad group list — Table output

Display Azure CLI output as a readable table. Base task: List Microsoft Entra ID groups through Azure CLI.

az ad group list --output table --output table
Open →
Azure CLI
az ad group list — TSV output

Return tab-separated output for scripts. Base task: List Microsoft Entra ID groups through Azure CLI.

az ad group list --output table --output tsv
Open →
Azure CLI
az ad group list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Microsoft Entra ID groups through Azure CLI.

az ad group list --output table --output json > azure-command-results.json
Open →
Azure CLI
az ad group list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Microsoft Entra ID groups through Azure CLI.

time az ad group list --output table
Open →
Azure CLI
az monitor activity-log list — JSON output

Return Azure CLI output as JSON. Base task: List recent Azure activity log events.

az monitor activity-log list --offset 1d -o table --output json
Open →
Azure CLI
az monitor activity-log list — Table output

Display Azure CLI output as a readable table. Base task: List recent Azure activity log events.

az monitor activity-log list --offset 1d -o table --output table
Open →
Azure CLI
az monitor activity-log list — TSV output

Return tab-separated output for scripts. Base task: List recent Azure activity log events.

az monitor activity-log list --offset 1d -o table --output tsv
Open →
Azure CLI
az monitor activity-log list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List recent Azure activity log events.

az monitor activity-log list --offset 1d -o table --output json > azure-command-results.json
Open →
Azure CLI
az monitor activity-log list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List recent Azure activity log events.

time az monitor activity-log list --offset 1d -o table
Open →
Azure CLI
az tag list — JSON output

Return Azure CLI output as JSON. Base task: List Azure tags and values.

az tag list -o table --output json
Open →
Azure CLI
az tag list — Table output

Display Azure CLI output as a readable table. Base task: List Azure tags and values.

az tag list -o table --output table
Open →
Azure CLI
az tag list — TSV output

Return tab-separated output for scripts. Base task: List Azure tags and values.

az tag list -o table --output tsv
Open →
Azure CLI
az tag list — Save JSON output

Save Azure CLI output to a JSON file. Base task: List Azure tags and values.

az tag list -o table --output json > azure-command-results.json
Open →
Azure CLI
az tag list — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: List Azure tags and values.

time az tag list -o table
Open →
Azure CLI
az login Help and Syntax — JSON output

Return Azure CLI output as JSON. Base task: Show Azure CLI syntax, arguments, and examples related to az login.

az login --help --output json
Open →
Azure CLI
az login Help and Syntax — Table output

Display Azure CLI output as a readable table. Base task: Show Azure CLI syntax, arguments, and examples related to az login.

az login --help --output table
Open →
Azure CLI
az login Help and Syntax — TSV output

Return tab-separated output for scripts. Base task: Show Azure CLI syntax, arguments, and examples related to az login.

az login --help --output tsv
Open →
Azure CLI
az login Help and Syntax — Save JSON output

Save Azure CLI output to a JSON file. Base task: Show Azure CLI syntax, arguments, and examples related to az login.

az login --help --output json > azure-command-results.json
Open →
Azure CLI
az login Help and Syntax — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Show Azure CLI syntax, arguments, and examples related to az login.

time az login --help
Open →
Azure CLI
az account show Help and Syntax — JSON output

Return Azure CLI output as JSON. Base task: Show Azure CLI syntax, arguments, and examples related to az account show.

az account show --help --output json
Open →
Azure CLI
az account show Help and Syntax — Table output

Display Azure CLI output as a readable table. Base task: Show Azure CLI syntax, arguments, and examples related to az account show.

az account show --help --output table
Open →
Azure CLI
az account show Help and Syntax — TSV output

Return tab-separated output for scripts. Base task: Show Azure CLI syntax, arguments, and examples related to az account show.

az account show --help --output tsv
Open →
Azure CLI
az account show Help and Syntax — Save JSON output

Save Azure CLI output to a JSON file. Base task: Show Azure CLI syntax, arguments, and examples related to az account show.

az account show --help --output json > azure-command-results.json
Open →
Azure CLI
az account show Help and Syntax — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Show Azure CLI syntax, arguments, and examples related to az account show.

time az account show --help
Open →
Azure CLI
az account list Help and Syntax — JSON output

Return Azure CLI output as JSON. Base task: Show Azure CLI syntax, arguments, and examples related to az account list.

az account list --help --output json
Open →
Azure CLI
az account list Help and Syntax — Table output

Display Azure CLI output as a readable table. Base task: Show Azure CLI syntax, arguments, and examples related to az account list.

az account list --help --output table
Open →
Azure CLI
az account list Help and Syntax — TSV output

Return tab-separated output for scripts. Base task: Show Azure CLI syntax, arguments, and examples related to az account list.

az account list --help --output tsv
Open →
Azure CLI
az account list Help and Syntax — Save JSON output

Save Azure CLI output to a JSON file. Base task: Show Azure CLI syntax, arguments, and examples related to az account list.

az account list --help --output json > azure-command-results.json
Open →
Azure CLI
az account list Help and Syntax — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Show Azure CLI syntax, arguments, and examples related to az account list.

time az account list --help
Open →
Azure CLI
az account set Help and Syntax — JSON output

Return Azure CLI output as JSON. Base task: Show Azure CLI syntax, arguments, and examples related to az account set.

az account set --help --output json
Open →
Azure CLI
az account set Help and Syntax — Table output

Display Azure CLI output as a readable table. Base task: Show Azure CLI syntax, arguments, and examples related to az account set.

az account set --help --output table
Open →
Azure CLI
az account set Help and Syntax — TSV output

Return tab-separated output for scripts. Base task: Show Azure CLI syntax, arguments, and examples related to az account set.

az account set --help --output tsv
Open →
Azure CLI
az account set Help and Syntax — Save JSON output

Save Azure CLI output to a JSON file. Base task: Show Azure CLI syntax, arguments, and examples related to az account set.

az account set --help --output json > azure-command-results.json
Open →
Azure CLI
az account set Help and Syntax — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Show Azure CLI syntax, arguments, and examples related to az account set.

time az account set --help
Open →
Azure CLI
az group list Help and Syntax — JSON output

Return Azure CLI output as JSON. Base task: Show Azure CLI syntax, arguments, and examples related to az group list.

az group list --help --output json
Open →
Azure CLI
az group list Help and Syntax — Table output

Display Azure CLI output as a readable table. Base task: Show Azure CLI syntax, arguments, and examples related to az group list.

az group list --help --output table
Open →
Azure CLI
az group list Help and Syntax — TSV output

Return tab-separated output for scripts. Base task: Show Azure CLI syntax, arguments, and examples related to az group list.

az group list --help --output tsv
Open →
Azure CLI
az group list Help and Syntax — Save JSON output

Save Azure CLI output to a JSON file. Base task: Show Azure CLI syntax, arguments, and examples related to az group list.

az group list --help --output json > azure-command-results.json
Open →
Azure CLI
az group list Help and Syntax — Measure execution time

Measure Azure CLI execution time in a compatible shell. Base task: Show Azure CLI syntax, arguments, and examples related to az group list.

time az group list --help
Open →
Azure CLI
az group create Help and Syntax — JSON output

Return Azure CLI output as JSON. Base task: Show Azure CLI syntax, arguments, and examples related to az group create.

az group create --help --output json
Open →
Azure CLI
az group create Help and Syntax — Table output

Display Azure CLI output as a readable table. Base task: Show Azure CLI syntax, arguments, and examples related to az group create.

az group create --help --output table
Open →
Azure CLI
az group create Help and Syntax — TSV output

Return tab-separated output for scripts. Base task: Show Azure CLI syntax, arguments, and examples related to az group create.

az group create --help --output tsv
Open →
Azure CLI
az group create Help and Syntax — Save JSON output

Save Azure CLI output to a JSON file. Base task: Show Azure CLI syntax, arguments, and examples related to az group create.

az group create --help --output json > azure-command-results.json
Open →
PowerCLI and ESXi

PowerCLI and ESXi

Back to top ↑
VMware
Get-VM

List VMware virtual machines with PowerCLI.

Get-VM
Open →
VMware
Get-VMHost

List ESXi hosts.

Get-VMHost
Open →
VMware
Get-Datastore

List VMware datastores.

Get-Datastore
Open →
VMware
Get-Cluster

List vSphere clusters.

Get-Cluster
Open →
VMware
Get-Snapshot

List virtual machine snapshots.

Get-VM | Get-Snapshot
Open →
VMware
New-Snapshot

Create a virtual machine snapshot.

New-Snapshot -VM vm01 -Name "Before Change" -Description "Maintenance checkpoint"
Open →
VMware
Remove-Snapshot

Remove a virtual machine snapshot.

Get-Snapshot -VM vm01 -Name "Before Change" | Remove-Snapshot -Confirm:$false
Open →
VMware
Start-VM

Power on a virtual machine.

Start-VM -VM vm01
Open →
VMware
Stop-VMGuest

Request a guest operating system shutdown.

Stop-VMGuest -VM vm01 -Confirm:$false
Open →
VMware
Restart-VMGuest

Request a guest operating system restart.

Restart-VMGuest -VM vm01 -Confirm:$false
Open →
VMware
Move-VM

Move a virtual machine.

Move-VM -VM vm01 -Destination Cluster02
Open →
VMware
Get-VMNetworkAdapter

List virtual machine network adapters.

Get-VM vm01 | Get-NetworkAdapter
Open →
VMware
Get-HardDisk

List virtual disks.

Get-VM vm01 | Get-HardDisk
Open →
VMware
Get-Stat

Retrieve vSphere performance statistics.

Get-Stat -Entity (Get-VM vm01) -Stat cpu.usage.average -Realtime
Open →
VMware
Connect-VIServer

Connect PowerCLI to vCenter Server.

Connect-VIServer vcenter.contoso.com
Open →
VMware
Disconnect-VIServer

Disconnect PowerCLI sessions.

Disconnect-VIServer * -Confirm:$false
Open →
VMware
esxcli system version get

Display ESXi version information.

esxcli system version get
Open →
VMware
esxcli network ip interface list

List ESXi VMkernel interfaces.

esxcli network ip interface list
Open →
VMware
esxcli network nic list

List ESXi physical network adapters.

esxcli network nic list
Open →
VMware
esxcli storage filesystem list

List ESXi filesystems and datastores.

esxcli storage filesystem list
Open →
VMware
Get-VM — Basic Usage

Use Get-VM for a standard administrative task.

Get-VM
Open →
VMware
Get-VMHost — Basic Usage

Use Get-VMHost for a standard administrative task.

Get-VMHost
Open →
VMware
Get-Datastore — Basic Usage

Use Get-Datastore for a standard administrative task.

Get-Datastore
Open →
VMware
Get-Cluster — Basic Usage

Use Get-Cluster for a standard administrative task.

Get-Cluster
Open →
VMware
Get-Snapshot — Basic Usage

Use Get-Snapshot for a standard administrative task.

Get-VM | Get-Snapshot
Open →
VMware
New-Snapshot — Basic Usage

Use New-Snapshot for a standard administrative task.

New-Snapshot -VM vm01 -Name "Before Change" -Description "Maintenance checkpoint"
Open →
VMware
Remove-Snapshot — Basic Usage

Use Remove-Snapshot for a standard administrative task.

Get-Snapshot -VM vm01 -Name "Before Change" | Remove-Snapshot -Confirm:$false
Open →
VMware
Start-VM — Basic Usage

Use Start-VM for a standard administrative task.

Start-VM -VM vm01
Open →
VMware
Stop-VMGuest — Basic Usage

Use Stop-VMGuest for a standard administrative task.

Stop-VMGuest -VM vm01 -Confirm:$false
Open →
VMware
Restart-VMGuest — Basic Usage

Use Restart-VMGuest for a standard administrative task.

Restart-VMGuest -VM vm01 -Confirm:$false
Open →
VMware
Move-VM — Basic Usage

Use Move-VM for a standard administrative task.

Move-VM -VM vm01 -Destination Cluster02
Open →
VMware
Get-VMNetworkAdapter — Basic Usage

Use Get-VMNetworkAdapter for a standard administrative task.

Get-VM vm01 | Get-NetworkAdapter
Open →
VMware
Get-HardDisk — Basic Usage

Use Get-HardDisk for a standard administrative task.

Get-VM vm01 | Get-HardDisk
Open →
VMware
Get-Stat — Basic Usage

Use Get-Stat for a standard administrative task.

Get-Stat -Entity (Get-VM vm01) -Stat cpu.usage.average -Realtime
Open →
VMware
Connect-VIServer — Basic Usage

Use Connect-VIServer for a standard administrative task.

Connect-VIServer vcenter.contoso.com
Open →
VMware
Disconnect-VIServer — Basic Usage

Use Disconnect-VIServer for a standard administrative task.

Disconnect-VIServer * -Confirm:$false
Open →
VMware
esxcli system version get — Basic Usage

Use esxcli system version get for a standard administrative task.

esxcli system version get
Open →
VMware
esxcli network ip interface list — Basic Usage

Use esxcli network ip interface list for a standard administrative task.

esxcli network ip interface list
Open →
VMware
esxcli network nic list — Basic Usage

Use esxcli network nic list for a standard administrative task.

esxcli network nic list
Open →
VMware
esxcli storage filesystem list — Basic Usage

Use esxcli storage filesystem list for a standard administrative task.

esxcli storage filesystem list
Open →
VMware
Get-VM Help and Syntax

Display complete syntax, parameter details, and examples for Get-VM.

Get-Help Get-VM -Full
Open →
VMware
Get-VMHost Help and Syntax

Display complete syntax, parameter details, and examples for Get-VMHost.

Get-Help Get-VMHost -Full
Open →
VMware
Get-Datastore Help and Syntax

Display complete syntax, parameter details, and examples for Get-Datastore.

Get-Help Get-Datastore -Full
Open →
VMware
Get-Cluster Help and Syntax

Display complete syntax, parameter details, and examples for Get-Cluster.

Get-Help Get-Cluster -Full
Open →
VMware
Get-Snapshot Help and Syntax

Display complete syntax, parameter details, and examples for Get-Snapshot.

Get-Help Get-VM -Full
Open →
VMware
New-Snapshot Help and Syntax

Display complete syntax, parameter details, and examples for New-Snapshot.

Get-Help New-Snapshot -Full
Open →
VMware
Remove-Snapshot Help and Syntax

Display complete syntax, parameter details, and examples for Remove-Snapshot.

Get-Help Get-Snapshot -Full
Open →
VMware
Start-VM Help and Syntax

Display complete syntax, parameter details, and examples for Start-VM.

Get-Help Start-VM -Full
Open →
VMware
Stop-VMGuest Help and Syntax

Display complete syntax, parameter details, and examples for Stop-VMGuest.

Get-Help Stop-VMGuest -Full
Open →
VMware
Restart-VMGuest Help and Syntax

Display complete syntax, parameter details, and examples for Restart-VMGuest.

Get-Help Restart-VMGuest -Full
Open →
VMware
Move-VM Help and Syntax

Display complete syntax, parameter details, and examples for Move-VM.

Get-Help Move-VM -Full
Open →
VMware
Get-VMNetworkAdapter Help and Syntax

Display complete syntax, parameter details, and examples for Get-VMNetworkAdapter.

Get-Help Get-VM -Full
Open →
VMware
Get-HardDisk Help and Syntax

Display complete syntax, parameter details, and examples for Get-HardDisk.

Get-Help Get-VM -Full
Open →
VMware
Get-Stat Help and Syntax

Display complete syntax, parameter details, and examples for Get-Stat.

Get-Help Get-Stat -Full
Open →
VMware
Connect-VIServer Help and Syntax

Display complete syntax, parameter details, and examples for Connect-VIServer.

Get-Help Connect-VIServer -Full
Open →
VMware
Disconnect-VIServer Help and Syntax

Display complete syntax, parameter details, and examples for Disconnect-VIServer.

Get-Help Disconnect-VIServer -Full
Open →
VMware
esxcli system version get Help and Syntax

Display complete syntax, parameter details, and examples for esxcli system version get.

Get-Help esxcli -Full
Open →
VMware
esxcli network ip interface list Help and Syntax

Display complete syntax, parameter details, and examples for esxcli network ip interface list.

Get-Help esxcli -Full
Open →
VMware
esxcli network nic list Help and Syntax

Display complete syntax, parameter details, and examples for esxcli network nic list.

Get-Help esxcli -Full
Open →
VMware
esxcli storage filesystem list Help and Syntax

Display complete syntax, parameter details, and examples for esxcli storage filesystem list.

Get-Help esxcli -Full
Open →
VMware
Get-VM — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-VM — Basic Usage.

Get-Help Get-VM -Full
Open →
VMware
Get-VMHost — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-VMHost — Basic Usage.

Get-Help Get-VMHost -Full
Open →
VMware
Get-Datastore — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Datastore — Basic Usage.

Get-Help Get-Datastore -Full
Open →
VMware
Get-Cluster — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Cluster — Basic Usage.

Get-Help Get-Cluster -Full
Open →
VMware
Get-Snapshot — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Snapshot — Basic Usage.

Get-Help Get-VM -Full
Open →
VMware
New-Snapshot — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for New-Snapshot — Basic Usage.

Get-Help New-Snapshot -Full
Open →
VMware
Remove-Snapshot — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Remove-Snapshot — Basic Usage.

Get-Help Get-Snapshot -Full
Open →
VMware
Start-VM — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Start-VM — Basic Usage.

Get-Help Start-VM -Full
Open →
VMware
Stop-VMGuest — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Stop-VMGuest — Basic Usage.

Get-Help Stop-VMGuest -Full
Open →
VMware
Restart-VMGuest — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Restart-VMGuest — Basic Usage.

Get-Help Restart-VMGuest -Full
Open →
VMware
Move-VM — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Move-VM — Basic Usage.

Get-Help Move-VM -Full
Open →
VMware
Get-VMNetworkAdapter — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-VMNetworkAdapter — Basic Usage.

Get-Help Get-VM -Full
Open →
VMware
Get-HardDisk — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-HardDisk — Basic Usage.

Get-Help Get-VM -Full
Open →
VMware
Get-Stat — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Stat — Basic Usage.

Get-Help Get-Stat -Full
Open →
VMware
Connect-VIServer — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Connect-VIServer — Basic Usage.

Get-Help Connect-VIServer -Full
Open →
VMware
Disconnect-VIServer — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Disconnect-VIServer — Basic Usage.

Get-Help Disconnect-VIServer -Full
Open →
VMware
esxcli system version get — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for esxcli system version get — Basic Usage.

Get-Help esxcli -Full
Open →
VMware
esxcli network ip interface list — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for esxcli network ip interface list — Basic Usage.

Get-Help esxcli -Full
Open →
VMware
esxcli network nic list — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for esxcli network nic list — Basic Usage.

Get-Help esxcli -Full
Open →
VMware
esxcli storage filesystem list — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for esxcli storage filesystem list — Basic Usage.

Get-Help esxcli -Full
Open →
VMware
Get-VM — Save output

Save standard output and errors to a text file. Base task: List VMware virtual machines with PowerCLI.

Get-VM > command-results.txt 2>&1
Open →
VMware
Get-VM — Display and save output

Display output while saving it to a file. Base task: List VMware virtual machines with PowerCLI.

Get-VM 2>&1 | tee command-results.txt
Open →
VMware
Get-VM — Measure execution time

Measure the command execution time. Base task: List VMware virtual machines with PowerCLI.

time Get-VM
Open →
VMware
Get-VM — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List VMware virtual machines with PowerCLI.

watch -n 5 'Get-VM'
Open →
VMware
Get-VM — Run with timestamp

Print a timestamp immediately before running the command. Base task: List VMware virtual machines with PowerCLI.

date --iso-8601=seconds; Get-VM
Open →
VMware
Get-VM — Run in background

Run the command in the background and log its output. Base task: List VMware virtual machines with PowerCLI.

nohup sh -c 'Get-VM' > command-results.log 2>&1 &
Open →
VMware
Get-VMHost — Save output

Save standard output and errors to a text file. Base task: List ESXi hosts.

Get-VMHost > command-results.txt 2>&1
Open →
VMware
Get-VMHost — Display and save output

Display output while saving it to a file. Base task: List ESXi hosts.

Get-VMHost 2>&1 | tee command-results.txt
Open →
VMware
Get-VMHost — Measure execution time

Measure the command execution time. Base task: List ESXi hosts.

time Get-VMHost
Open →
VMware
Get-VMHost — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List ESXi hosts.

watch -n 5 'Get-VMHost'
Open →
VMware
Get-VMHost — Run with timestamp

Print a timestamp immediately before running the command. Base task: List ESXi hosts.

date --iso-8601=seconds; Get-VMHost
Open →
VMware
Get-VMHost — Run in background

Run the command in the background and log its output. Base task: List ESXi hosts.

nohup sh -c 'Get-VMHost' > command-results.log 2>&1 &
Open →
VMware
Get-Datastore — Save output

Save standard output and errors to a text file. Base task: List VMware datastores.

Get-Datastore > command-results.txt 2>&1
Open →
VMware
Get-Datastore — Display and save output

Display output while saving it to a file. Base task: List VMware datastores.

Get-Datastore 2>&1 | tee command-results.txt
Open →
VMware
Get-Datastore — Measure execution time

Measure the command execution time. Base task: List VMware datastores.

time Get-Datastore
Open →
VMware
Get-Datastore — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List VMware datastores.

watch -n 5 'Get-Datastore'
Open →
VMware
Get-Datastore — Run with timestamp

Print a timestamp immediately before running the command. Base task: List VMware datastores.

date --iso-8601=seconds; Get-Datastore
Open →
VMware
Get-Datastore — Run in background

Run the command in the background and log its output. Base task: List VMware datastores.

nohup sh -c 'Get-Datastore' > command-results.log 2>&1 &
Open →
VMware
Get-Cluster — Save output

Save standard output and errors to a text file. Base task: List vSphere clusters.

Get-Cluster > command-results.txt 2>&1
Open →
VMware
Get-Cluster — Display and save output

Display output while saving it to a file. Base task: List vSphere clusters.

Get-Cluster 2>&1 | tee command-results.txt
Open →
VMware
Get-Cluster — Measure execution time

Measure the command execution time. Base task: List vSphere clusters.

time Get-Cluster
Open →
VMware
Get-Cluster — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List vSphere clusters.

watch -n 5 'Get-Cluster'
Open →
VMware
Get-Cluster — Run with timestamp

Print a timestamp immediately before running the command. Base task: List vSphere clusters.

date --iso-8601=seconds; Get-Cluster
Open →
VMware
Get-Cluster — Run in background

Run the command in the background and log its output. Base task: List vSphere clusters.

nohup sh -c 'Get-Cluster' > command-results.log 2>&1 &
Open →
VMware
Get-Snapshot — Save output

Save standard output and errors to a text file. Base task: List virtual machine snapshots.

Get-VM | Get-Snapshot > command-results.txt 2>&1
Open →
VMware
Get-Snapshot — Display and save output

Display output while saving it to a file. Base task: List virtual machine snapshots.

Get-VM | Get-Snapshot 2>&1 | tee command-results.txt
Open →
VMware
Get-Snapshot — Measure execution time

Measure the command execution time. Base task: List virtual machine snapshots.

time Get-VM | Get-Snapshot
Open →
VMware
Get-Snapshot — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List virtual machine snapshots.

watch -n 5 'Get-VM | Get-Snapshot'
Open →
VMware
Get-Snapshot — Run with timestamp

Print a timestamp immediately before running the command. Base task: List virtual machine snapshots.

date --iso-8601=seconds; Get-VM | Get-Snapshot
Open →
VMware
Get-Snapshot — Run in background

Run the command in the background and log its output. Base task: List virtual machine snapshots.

nohup sh -c 'Get-VM | Get-Snapshot' > command-results.log 2>&1 &
Open →
VMware
New-Snapshot — Save output

Save standard output and errors to a text file. Base task: Create a virtual machine snapshot.

New-Snapshot -VM vm01 -Name "Before Change" -Description "Maintenance checkpoint" > command-results.txt 2>&1
Open →
VMware
New-Snapshot — Display and save output

Display output while saving it to a file. Base task: Create a virtual machine snapshot.

New-Snapshot -VM vm01 -Name "Before Change" -Description "Maintenance checkpoint" 2>&1 | tee command-results.txt
Open →
VMware
New-Snapshot — Measure execution time

Measure the command execution time. Base task: Create a virtual machine snapshot.

time New-Snapshot -VM vm01 -Name "Before Change" -Description "Maintenance checkpoint"
Open →
VMware
New-Snapshot — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create a virtual machine snapshot.

watch -n 5 'New-Snapshot -VM vm01 -Name "Before Change" -Description "Maintenance checkpoint"'
Open →
VMware
New-Snapshot — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create a virtual machine snapshot.

date --iso-8601=seconds; New-Snapshot -VM vm01 -Name "Before Change" -Description "Maintenance checkpoint"
Open →
VMware
New-Snapshot — Run in background

Run the command in the background and log its output. Base task: Create a virtual machine snapshot.

nohup sh -c 'New-Snapshot -VM vm01 -Name "Before Change" -Description "Maintenance checkpoint"' > command-results.log 2>&1 &
Open →
VMware
Remove-Snapshot — Save output

Save standard output and errors to a text file. Base task: Remove a virtual machine snapshot.

Get-Snapshot -VM vm01 -Name "Before Change" | Remove-Snapshot -Confirm:$false > command-results.txt 2>&1
Open →
VMware
Remove-Snapshot — Display and save output

Display output while saving it to a file. Base task: Remove a virtual machine snapshot.

Get-Snapshot -VM vm01 -Name "Before Change" | Remove-Snapshot -Confirm:$false 2>&1 | tee command-results.txt
Open →
VMware
Remove-Snapshot — Measure execution time

Measure the command execution time. Base task: Remove a virtual machine snapshot.

time Get-Snapshot -VM vm01 -Name "Before Change" | Remove-Snapshot -Confirm:$false
Open →
VMware
Remove-Snapshot — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Remove a virtual machine snapshot.

watch -n 5 'Get-Snapshot -VM vm01 -Name "Before Change" | Remove-Snapshot -Confirm:$false'
Open →
VMware
Remove-Snapshot — Run with timestamp

Print a timestamp immediately before running the command. Base task: Remove a virtual machine snapshot.

date --iso-8601=seconds; Get-Snapshot -VM vm01 -Name "Before Change" | Remove-Snapshot -Confirm:$false
Open →
VMware
Remove-Snapshot — Run in background

Run the command in the background and log its output. Base task: Remove a virtual machine snapshot.

nohup sh -c 'Get-Snapshot -VM vm01 -Name "Before Change" | Remove-Snapshot -Confirm:$false' > command-results.log 2>&1 &
Open →
VMware
Start-VM — Save output

Save standard output and errors to a text file. Base task: Power on a virtual machine.

Start-VM -VM vm01 > command-results.txt 2>&1
Open →
VMware
Start-VM — Display and save output

Display output while saving it to a file. Base task: Power on a virtual machine.

Start-VM -VM vm01 2>&1 | tee command-results.txt
Open →
VMware
Start-VM — Measure execution time

Measure the command execution time. Base task: Power on a virtual machine.

time Start-VM -VM vm01
Open →
VMware
Start-VM — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Power on a virtual machine.

watch -n 5 'Start-VM -VM vm01'
Open →
VMware
Start-VM — Run with timestamp

Print a timestamp immediately before running the command. Base task: Power on a virtual machine.

date --iso-8601=seconds; Start-VM -VM vm01
Open →
VMware
Start-VM — Run in background

Run the command in the background and log its output. Base task: Power on a virtual machine.

nohup sh -c 'Start-VM -VM vm01' > command-results.log 2>&1 &
Open →
VMware
Stop-VMGuest — Save output

Save standard output and errors to a text file. Base task: Request a guest operating system shutdown.

Stop-VMGuest -VM vm01 -Confirm:$false > command-results.txt 2>&1
Open →
VMware
Stop-VMGuest — Display and save output

Display output while saving it to a file. Base task: Request a guest operating system shutdown.

Stop-VMGuest -VM vm01 -Confirm:$false 2>&1 | tee command-results.txt
Open →
VMware
Stop-VMGuest — Measure execution time

Measure the command execution time. Base task: Request a guest operating system shutdown.

time Stop-VMGuest -VM vm01 -Confirm:$false
Open →
VMware
Stop-VMGuest — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Request a guest operating system shutdown.

watch -n 5 'Stop-VMGuest -VM vm01 -Confirm:$false'
Open →
VMware
Stop-VMGuest — Run with timestamp

Print a timestamp immediately before running the command. Base task: Request a guest operating system shutdown.

date --iso-8601=seconds; Stop-VMGuest -VM vm01 -Confirm:$false
Open →
VMware
Stop-VMGuest — Run in background

Run the command in the background and log its output. Base task: Request a guest operating system shutdown.

nohup sh -c 'Stop-VMGuest -VM vm01 -Confirm:$false' > command-results.log 2>&1 &
Open →
VMware
Restart-VMGuest — Save output

Save standard output and errors to a text file. Base task: Request a guest operating system restart.

Restart-VMGuest -VM vm01 -Confirm:$false > command-results.txt 2>&1
Open →
VMware
Restart-VMGuest — Display and save output

Display output while saving it to a file. Base task: Request a guest operating system restart.

Restart-VMGuest -VM vm01 -Confirm:$false 2>&1 | tee command-results.txt
Open →
VMware
Restart-VMGuest — Measure execution time

Measure the command execution time. Base task: Request a guest operating system restart.

time Restart-VMGuest -VM vm01 -Confirm:$false
Open →
VMware
Restart-VMGuest — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Request a guest operating system restart.

watch -n 5 'Restart-VMGuest -VM vm01 -Confirm:$false'
Open →
VMware
Restart-VMGuest — Run with timestamp

Print a timestamp immediately before running the command. Base task: Request a guest operating system restart.

date --iso-8601=seconds; Restart-VMGuest -VM vm01 -Confirm:$false
Open →
VMware
Restart-VMGuest — Run in background

Run the command in the background and log its output. Base task: Request a guest operating system restart.

nohup sh -c 'Restart-VMGuest -VM vm01 -Confirm:$false' > command-results.log 2>&1 &
Open →
VMware
Move-VM — Save output

Save standard output and errors to a text file. Base task: Move a virtual machine.

Move-VM -VM vm01 -Destination Cluster02 > command-results.txt 2>&1
Open →
VMware
Move-VM — Display and save output

Display output while saving it to a file. Base task: Move a virtual machine.

Move-VM -VM vm01 -Destination Cluster02 2>&1 | tee command-results.txt
Open →
VMware
Move-VM — Measure execution time

Measure the command execution time. Base task: Move a virtual machine.

time Move-VM -VM vm01 -Destination Cluster02
Open →
VMware
Move-VM — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Move a virtual machine.

watch -n 5 'Move-VM -VM vm01 -Destination Cluster02'
Open →
VMware
Move-VM — Run with timestamp

Print a timestamp immediately before running the command. Base task: Move a virtual machine.

date --iso-8601=seconds; Move-VM -VM vm01 -Destination Cluster02
Open →
VMware
Move-VM — Run in background

Run the command in the background and log its output. Base task: Move a virtual machine.

nohup sh -c 'Move-VM -VM vm01 -Destination Cluster02' > command-results.log 2>&1 &
Open →
VMware
Get-VMNetworkAdapter — Save output

Save standard output and errors to a text file. Base task: List virtual machine network adapters.

Get-VM vm01 | Get-NetworkAdapter > command-results.txt 2>&1
Open →
VMware
Get-VMNetworkAdapter — Display and save output

Display output while saving it to a file. Base task: List virtual machine network adapters.

Get-VM vm01 | Get-NetworkAdapter 2>&1 | tee command-results.txt
Open →
VMware
Get-VMNetworkAdapter — Measure execution time

Measure the command execution time. Base task: List virtual machine network adapters.

time Get-VM vm01 | Get-NetworkAdapter
Open →
VMware
Get-VMNetworkAdapter — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List virtual machine network adapters.

watch -n 5 'Get-VM vm01 | Get-NetworkAdapter'
Open →
VMware
Get-VMNetworkAdapter — Run with timestamp

Print a timestamp immediately before running the command. Base task: List virtual machine network adapters.

date --iso-8601=seconds; Get-VM vm01 | Get-NetworkAdapter
Open →
VMware
Get-VMNetworkAdapter — Run in background

Run the command in the background and log its output. Base task: List virtual machine network adapters.

nohup sh -c 'Get-VM vm01 | Get-NetworkAdapter' > command-results.log 2>&1 &
Open →
VMware
Get-HardDisk — Save output

Save standard output and errors to a text file. Base task: List virtual disks.

Get-VM vm01 | Get-HardDisk > command-results.txt 2>&1
Open →
VMware
Get-HardDisk — Display and save output

Display output while saving it to a file. Base task: List virtual disks.

Get-VM vm01 | Get-HardDisk 2>&1 | tee command-results.txt
Open →
VMware
Get-HardDisk — Measure execution time

Measure the command execution time. Base task: List virtual disks.

time Get-VM vm01 | Get-HardDisk
Open →
VMware
Get-HardDisk — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List virtual disks.

watch -n 5 'Get-VM vm01 | Get-HardDisk'
Open →
VMware
Get-HardDisk — Run with timestamp

Print a timestamp immediately before running the command. Base task: List virtual disks.

date --iso-8601=seconds; Get-VM vm01 | Get-HardDisk
Open →
VMware
Get-HardDisk — Run in background

Run the command in the background and log its output. Base task: List virtual disks.

nohup sh -c 'Get-VM vm01 | Get-HardDisk' > command-results.log 2>&1 &
Open →
VMware
Get-Stat — Save output

Save standard output and errors to a text file. Base task: Retrieve vSphere performance statistics.

Get-Stat -Entity (Get-VM vm01) -Stat cpu.usage.average -Realtime > command-results.txt 2>&1
Open →
VMware
Get-Stat — Display and save output

Display output while saving it to a file. Base task: Retrieve vSphere performance statistics.

Get-Stat -Entity (Get-VM vm01) -Stat cpu.usage.average -Realtime 2>&1 | tee command-results.txt
Open →
VMware
Get-Stat — Measure execution time

Measure the command execution time. Base task: Retrieve vSphere performance statistics.

time Get-Stat -Entity (Get-VM vm01) -Stat cpu.usage.average -Realtime
Open →
VMware
Get-Stat — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Retrieve vSphere performance statistics.

watch -n 5 'Get-Stat -Entity (Get-VM vm01) -Stat cpu.usage.average -Realtime'
Open →
VMware
Get-Stat — Run with timestamp

Print a timestamp immediately before running the command. Base task: Retrieve vSphere performance statistics.

date --iso-8601=seconds; Get-Stat -Entity (Get-VM vm01) -Stat cpu.usage.average -Realtime
Open →
VMware
Get-Stat — Run in background

Run the command in the background and log its output. Base task: Retrieve vSphere performance statistics.

nohup sh -c 'Get-Stat -Entity (Get-VM vm01) -Stat cpu.usage.average -Realtime' > command-results.log 2>&1 &
Open →
VMware
Connect-VIServer — Save output

Save standard output and errors to a text file. Base task: Connect PowerCLI to vCenter Server.

Connect-VIServer vcenter.contoso.com > command-results.txt 2>&1
Open →
VMware
Connect-VIServer — Display and save output

Display output while saving it to a file. Base task: Connect PowerCLI to vCenter Server.

Connect-VIServer vcenter.contoso.com 2>&1 | tee command-results.txt
Open →
VMware
Connect-VIServer — Measure execution time

Measure the command execution time. Base task: Connect PowerCLI to vCenter Server.

time Connect-VIServer vcenter.contoso.com
Open →
VMware
Connect-VIServer — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Connect PowerCLI to vCenter Server.

watch -n 5 'Connect-VIServer vcenter.contoso.com'
Open →
VMware
Connect-VIServer — Run with timestamp

Print a timestamp immediately before running the command. Base task: Connect PowerCLI to vCenter Server.

date --iso-8601=seconds; Connect-VIServer vcenter.contoso.com
Open →
VMware
Connect-VIServer — Run in background

Run the command in the background and log its output. Base task: Connect PowerCLI to vCenter Server.

nohup sh -c 'Connect-VIServer vcenter.contoso.com' > command-results.log 2>&1 &
Open →
VMware
Disconnect-VIServer — Save output

Save standard output and errors to a text file. Base task: Disconnect PowerCLI sessions.

Disconnect-VIServer * -Confirm:$false > command-results.txt 2>&1
Open →
VMware
Disconnect-VIServer — Display and save output

Display output while saving it to a file. Base task: Disconnect PowerCLI sessions.

Disconnect-VIServer * -Confirm:$false 2>&1 | tee command-results.txt
Open →
VMware
Disconnect-VIServer — Measure execution time

Measure the command execution time. Base task: Disconnect PowerCLI sessions.

time Disconnect-VIServer * -Confirm:$false
Open →
VMware
Disconnect-VIServer — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Disconnect PowerCLI sessions.

watch -n 5 'Disconnect-VIServer * -Confirm:$false'
Open →
VMware
Disconnect-VIServer — Run with timestamp

Print a timestamp immediately before running the command. Base task: Disconnect PowerCLI sessions.

date --iso-8601=seconds; Disconnect-VIServer * -Confirm:$false
Open →
VMware
Disconnect-VIServer — Run in background

Run the command in the background and log its output. Base task: Disconnect PowerCLI sessions.

nohup sh -c 'Disconnect-VIServer * -Confirm:$false' > command-results.log 2>&1 &
Open →
VMware
esxcli system version get — Save output

Save standard output and errors to a text file. Base task: Display ESXi version information.

esxcli system version get > command-results.txt 2>&1
Open →
VMware
esxcli system version get — Display and save output

Display output while saving it to a file. Base task: Display ESXi version information.

esxcli system version get 2>&1 | tee command-results.txt
Open →
VMware
esxcli system version get — Measure execution time

Measure the command execution time. Base task: Display ESXi version information.

time esxcli system version get
Open →
VMware
esxcli system version get — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display ESXi version information.

watch -n 5 'esxcli system version get'
Open →
VMware
esxcli system version get — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display ESXi version information.

date --iso-8601=seconds; esxcli system version get
Open →
VMware
esxcli system version get — Run in background

Run the command in the background and log its output. Base task: Display ESXi version information.

nohup sh -c 'esxcli system version get' > command-results.log 2>&1 &
Open →
VMware
esxcli network ip interface list — Save output

Save standard output and errors to a text file. Base task: List ESXi VMkernel interfaces.

esxcli network ip interface list > command-results.txt 2>&1
Open →
VMware
esxcli network ip interface list — Display and save output

Display output while saving it to a file. Base task: List ESXi VMkernel interfaces.

esxcli network ip interface list 2>&1 | tee command-results.txt
Open →
VMware
esxcli network ip interface list — Measure execution time

Measure the command execution time. Base task: List ESXi VMkernel interfaces.

time esxcli network ip interface list
Open →
VMware
esxcli network ip interface list — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List ESXi VMkernel interfaces.

watch -n 5 'esxcli network ip interface list'
Open →
VMware
esxcli network ip interface list — Run with timestamp

Print a timestamp immediately before running the command. Base task: List ESXi VMkernel interfaces.

date --iso-8601=seconds; esxcli network ip interface list
Open →
VMware
esxcli network ip interface list — Run in background

Run the command in the background and log its output. Base task: List ESXi VMkernel interfaces.

nohup sh -c 'esxcli network ip interface list' > command-results.log 2>&1 &
Open →
VMware
esxcli network nic list — Save output

Save standard output and errors to a text file. Base task: List ESXi physical network adapters.

esxcli network nic list > command-results.txt 2>&1
Open →
VMware
esxcli network nic list — Display and save output

Display output while saving it to a file. Base task: List ESXi physical network adapters.

esxcli network nic list 2>&1 | tee command-results.txt
Open →
VMware
esxcli network nic list — Measure execution time

Measure the command execution time. Base task: List ESXi physical network adapters.

time esxcli network nic list
Open →
VMware
esxcli network nic list — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List ESXi physical network adapters.

watch -n 5 'esxcli network nic list'
Open →
VMware
esxcli network nic list — Run with timestamp

Print a timestamp immediately before running the command. Base task: List ESXi physical network adapters.

date --iso-8601=seconds; esxcli network nic list
Open →
VMware
esxcli network nic list — Run in background

Run the command in the background and log its output. Base task: List ESXi physical network adapters.

nohup sh -c 'esxcli network nic list' > command-results.log 2>&1 &
Open →
VMware
esxcli storage filesystem list — Save output

Save standard output and errors to a text file. Base task: List ESXi filesystems and datastores.

esxcli storage filesystem list > command-results.txt 2>&1
Open →
VMware
esxcli storage filesystem list — Display and save output

Display output while saving it to a file. Base task: List ESXi filesystems and datastores.

esxcli storage filesystem list 2>&1 | tee command-results.txt
Open →
VMware
esxcli storage filesystem list — Measure execution time

Measure the command execution time. Base task: List ESXi filesystems and datastores.

time esxcli storage filesystem list
Open →
VMware
esxcli storage filesystem list — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List ESXi filesystems and datastores.

watch -n 5 'esxcli storage filesystem list'
Open →
VMware
esxcli storage filesystem list — Run with timestamp

Print a timestamp immediately before running the command. Base task: List ESXi filesystems and datastores.

date --iso-8601=seconds; esxcli storage filesystem list
Open →
VMware
esxcli storage filesystem list — Run in background

Run the command in the background and log its output. Base task: List ESXi filesystems and datastores.

nohup sh -c 'esxcli storage filesystem list' > command-results.log 2>&1 &
Open →
SQL and Database Administration

SQL and Database Administration

Back to top ↑
Database
SQL SELECT

Return rows from a table.

SELECT * FROM users LIMIT 100;
Open →
Database
SQL WHERE

Filter rows with a condition.

SELECT * FROM users WHERE enabled = 1;
Open →
Database
SQL ORDER BY

Sort query results.

SELECT * FROM users ORDER BY created_at DESC;
Open →
Database
SQL GROUP BY

Aggregate rows by a column.

SELECT department, COUNT(*) FROM users GROUP BY department;
Open →
Database
SQL JOIN

Join related tables.

SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id;
Open →
Database
SQL INSERT

Insert a row.

INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com');
Open →
Database
SQL UPDATE

Update matching rows.

UPDATE users SET enabled = 0 WHERE id = 42;
Open →
Database
SQL DELETE

Delete matching rows.

DELETE FROM users WHERE id = 42;
Open →
Database
SQL CREATE TABLE

Create a table.

CREATE TABLE audit_log (id BIGINT PRIMARY KEY AUTO_INCREMENT, event VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP);
Open →
Database
SQL ALTER TABLE

Alter a table definition.

ALTER TABLE users ADD COLUMN last_login DATETIME NULL;
Open →
Database
SQL CREATE INDEX

Create a database index.

CREATE INDEX idx_users_email ON users(email);
Open →
Database
MariaDB SHOW DATABASES

List MariaDB databases.

SHOW DATABASES;
Open →
Database
MariaDB SHOW TABLES

List tables in the selected database.

SHOW TABLES;
Open →
Database
MariaDB DESCRIBE

Display a table definition.

DESCRIBE users;
Open →
Database
MariaDB SHOW PROCESSLIST

Display active MariaDB sessions and queries.

SHOW FULL PROCESSLIST;
Open →
Database
MariaDB mysqldump

Back up a MariaDB or MySQL database.

mysqldump -u root -p database_name > backup.sql
Open →
Database
PostgreSQL list databases

List PostgreSQL databases in psql.

\l
Open →
Database
PostgreSQL list tables

List PostgreSQL tables in psql.

\dt
Open →
Database
PostgreSQL describe table

Describe a PostgreSQL table in psql.

\d users
Open →
Database
PostgreSQL pg_dump

Create a PostgreSQL custom-format backup.

pg_dump -Fc database_name > backup.dump
Open →
Database
SQL SELECT — Basic Usage

Use SQL SELECT for a standard administrative task.

SELECT * FROM users LIMIT 100;
Open →
Database
SQL WHERE — Basic Usage

Use SQL WHERE for a standard administrative task.

SELECT * FROM users WHERE enabled = 1;
Open →
Database
SQL ORDER BY — Basic Usage

Use SQL ORDER BY for a standard administrative task.

SELECT * FROM users ORDER BY created_at DESC;
Open →
Database
SQL GROUP BY — Basic Usage

Use SQL GROUP BY for a standard administrative task.

SELECT department, COUNT(*) FROM users GROUP BY department;
Open →
Database
SQL JOIN — Basic Usage

Use SQL JOIN for a standard administrative task.

SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id;
Open →
Database
SQL INSERT — Basic Usage

Use SQL INSERT for a standard administrative task.

INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com');
Open →
Database
SQL UPDATE — Basic Usage

Use SQL UPDATE for a standard administrative task.

UPDATE users SET enabled = 0 WHERE id = 42;
Open →
Database
SQL DELETE — Basic Usage

Use SQL DELETE for a standard administrative task.

DELETE FROM users WHERE id = 42;
Open →
Database
SQL CREATE TABLE — Basic Usage

Use SQL CREATE TABLE for a standard administrative task.

CREATE TABLE audit_log (id BIGINT PRIMARY KEY AUTO_INCREMENT, event VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP);
Open →
Database
SQL ALTER TABLE — Basic Usage

Use SQL ALTER TABLE for a standard administrative task.

ALTER TABLE users ADD COLUMN last_login DATETIME NULL;
Open →
Database
SQL CREATE INDEX — Basic Usage

Use SQL CREATE INDEX for a standard administrative task.

CREATE INDEX idx_users_email ON users(email);
Open →
Database
MariaDB SHOW DATABASES — Basic Usage

Use MariaDB SHOW DATABASES for a standard administrative task.

SHOW DATABASES;
Open →
Database
MariaDB SHOW TABLES — Basic Usage

Use MariaDB SHOW TABLES for a standard administrative task.

SHOW TABLES;
Open →
Database
MariaDB DESCRIBE — Basic Usage

Use MariaDB DESCRIBE for a standard administrative task.

DESCRIBE users;
Open →
Database
MariaDB SHOW PROCESSLIST — Basic Usage

Use MariaDB SHOW PROCESSLIST for a standard administrative task.

SHOW FULL PROCESSLIST;
Open →
Database
MariaDB mysqldump — Basic Usage

Use MariaDB mysqldump for a standard administrative task.

mysqldump -u root -p database_name > backup.sql
Open →
Database
PostgreSQL list databases — Basic Usage

Use PostgreSQL list databases for a standard administrative task.

\l
Open →
Database
PostgreSQL list tables — Basic Usage

Use PostgreSQL list tables for a standard administrative task.

\dt
Open →
Database
PostgreSQL describe table — Basic Usage

Use PostgreSQL describe table for a standard administrative task.

\d users
Open →
Database
PostgreSQL pg_dump — Basic Usage

Use PostgreSQL pg_dump for a standard administrative task.

pg_dump -Fc database_name > backup.dump
Open →
Database
SQL SELECT Help and Syntax

Review the database execution plan for the statement used in SQL SELECT.

EXPLAIN SELECT * FROM users LIMIT 100;
Open →
Database
SQL WHERE Help and Syntax

Review the database execution plan for the statement used in SQL WHERE.

EXPLAIN SELECT * FROM users WHERE enabled = 1;
Open →
Database
SQL ORDER BY Help and Syntax

Review the database execution plan for the statement used in SQL ORDER BY.

EXPLAIN SELECT * FROM users ORDER BY created_at DESC;
Open →
Database
SQL GROUP BY Help and Syntax

Review the database execution plan for the statement used in SQL GROUP BY.

EXPLAIN SELECT department, COUNT(*) FROM users GROUP BY department;
Open →
Database
SQL JOIN Help and Syntax

Review the database execution plan for the statement used in SQL JOIN.

EXPLAIN SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id;
Open →
Database
SQL INSERT Help and Syntax

Review the database execution plan for the statement used in SQL INSERT.

EXPLAIN INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com');
Open →
Database
SQL UPDATE Help and Syntax

Review the database execution plan for the statement used in SQL UPDATE.

EXPLAIN UPDATE users SET enabled = 0 WHERE id = 42;
Open →
Database
SQL DELETE Help and Syntax

Review the database execution plan for the statement used in SQL DELETE.

EXPLAIN DELETE FROM users WHERE id = 42;
Open →
Database
SQL CREATE TABLE Help and Syntax

Request database command help and syntax related to SQL CREATE TABLE.

HELP 'CREATE';
Open →
Database
SQL ALTER TABLE Help and Syntax

Request database command help and syntax related to SQL ALTER TABLE.

HELP 'ALTER';
Open →
Database
SQL CREATE INDEX Help and Syntax

Request database command help and syntax related to SQL CREATE INDEX.

HELP 'CREATE';
Open →
Database
MariaDB SHOW DATABASES Help and Syntax

Request database command help and syntax related to MariaDB SHOW DATABASES.

HELP 'SHOW';
Open →
Database
MariaDB SHOW TABLES Help and Syntax

Request database command help and syntax related to MariaDB SHOW TABLES.

HELP 'SHOW';
Open →
Database
MariaDB DESCRIBE Help and Syntax

Request database command help and syntax related to MariaDB DESCRIBE.

HELP 'DESCRIBE';
Open →
Database
MariaDB SHOW PROCESSLIST Help and Syntax

Request database command help and syntax related to MariaDB SHOW PROCESSLIST.

HELP 'SHOW';
Open →
Database
MariaDB mysqldump Help and Syntax

Request database command help and syntax related to MariaDB mysqldump.

HELP 'MYSQLDUMP';
Open →
Database
PostgreSQL list databases Help and Syntax

Request database command help and syntax related to PostgreSQL list databases.

HELP '\L';
Open →
Database
PostgreSQL list tables Help and Syntax

Request database command help and syntax related to PostgreSQL list tables.

HELP '\DT';
Open →
Database
PostgreSQL describe table Help and Syntax

Request database command help and syntax related to PostgreSQL describe table.

HELP '\D';
Open →
Database
PostgreSQL pg_dump Help and Syntax

Request database command help and syntax related to PostgreSQL pg_dump.

HELP 'PG_DUMP';
Open →
Database
SQL SELECT — Basic Usage Help and Syntax

Review the database execution plan for the statement used in SQL SELECT — Basic Usage.

EXPLAIN SELECT * FROM users LIMIT 100;
Open →
Database
SQL WHERE — Basic Usage Help and Syntax

Review the database execution plan for the statement used in SQL WHERE — Basic Usage.

EXPLAIN SELECT * FROM users WHERE enabled = 1;
Open →
Database
SQL ORDER BY — Basic Usage Help and Syntax

Review the database execution plan for the statement used in SQL ORDER BY — Basic Usage.

EXPLAIN SELECT * FROM users ORDER BY created_at DESC;
Open →
Database
SQL GROUP BY — Basic Usage Help and Syntax

Review the database execution plan for the statement used in SQL GROUP BY — Basic Usage.

EXPLAIN SELECT department, COUNT(*) FROM users GROUP BY department;
Open →
Database
SQL JOIN — Basic Usage Help and Syntax

Review the database execution plan for the statement used in SQL JOIN — Basic Usage.

EXPLAIN SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id;
Open →
Database
SQL INSERT — Basic Usage Help and Syntax

Review the database execution plan for the statement used in SQL INSERT — Basic Usage.

EXPLAIN INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com');
Open →
Database
SQL UPDATE — Basic Usage Help and Syntax

Review the database execution plan for the statement used in SQL UPDATE — Basic Usage.

EXPLAIN UPDATE users SET enabled = 0 WHERE id = 42;
Open →
Database
SQL DELETE — Basic Usage Help and Syntax

Review the database execution plan for the statement used in SQL DELETE — Basic Usage.

EXPLAIN DELETE FROM users WHERE id = 42;
Open →
Database
SQL CREATE TABLE — Basic Usage Help and Syntax

Request database command help and syntax related to SQL CREATE TABLE — Basic Usage.

HELP 'CREATE';
Open →
Database
SQL ALTER TABLE — Basic Usage Help and Syntax

Request database command help and syntax related to SQL ALTER TABLE — Basic Usage.

HELP 'ALTER';
Open →
Database
SQL CREATE INDEX — Basic Usage Help and Syntax

Request database command help and syntax related to SQL CREATE INDEX — Basic Usage.

HELP 'CREATE';
Open →
Database
MariaDB SHOW DATABASES — Basic Usage Help and Syntax

Request database command help and syntax related to MariaDB SHOW DATABASES — Basic Usage.

HELP 'SHOW';
Open →
Database
MariaDB SHOW TABLES — Basic Usage Help and Syntax

Request database command help and syntax related to MariaDB SHOW TABLES — Basic Usage.

HELP 'SHOW';
Open →
Database
MariaDB DESCRIBE — Basic Usage Help and Syntax

Request database command help and syntax related to MariaDB DESCRIBE — Basic Usage.

HELP 'DESCRIBE';
Open →
Database
MariaDB SHOW PROCESSLIST — Basic Usage Help and Syntax

Request database command help and syntax related to MariaDB SHOW PROCESSLIST — Basic Usage.

HELP 'SHOW';
Open →
Database
MariaDB mysqldump — Basic Usage Help and Syntax

Request database command help and syntax related to MariaDB mysqldump — Basic Usage.

HELP 'MYSQLDUMP';
Open →
Database
PostgreSQL list databases — Basic Usage Help and Syntax

Request database command help and syntax related to PostgreSQL list databases — Basic Usage.

HELP '\L';
Open →
Database
PostgreSQL list tables — Basic Usage Help and Syntax

Request database command help and syntax related to PostgreSQL list tables — Basic Usage.

HELP '\DT';
Open →
Database
PostgreSQL describe table — Basic Usage Help and Syntax

Request database command help and syntax related to PostgreSQL describe table — Basic Usage.

HELP '\D';
Open →
Database
PostgreSQL pg_dump — Basic Usage Help and Syntax

Request database command help and syntax related to PostgreSQL pg_dump — Basic Usage.

HELP 'PG_DUMP';
Open →
Database
SQL SELECT — Save output

Save standard output and errors to a text file. Base task: Return rows from a table.

SELECT * FROM users LIMIT 100 > command-results.txt 2>&1
Open →
Database
SQL SELECT — Display and save output

Display output while saving it to a file. Base task: Return rows from a table.

SELECT * FROM users LIMIT 100 2>&1 | tee command-results.txt
Open →
Database
SQL SELECT — Measure execution time

Measure the command execution time. Base task: Return rows from a table.

time SELECT * FROM users LIMIT 100
Open →
Database
SQL SELECT — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Return rows from a table.

watch -n 5 'SELECT * FROM users LIMIT 100'
Open →
Database
SQL SELECT — Run with timestamp

Print a timestamp immediately before running the command. Base task: Return rows from a table.

date --iso-8601=seconds; SELECT * FROM users LIMIT 100
Open →
Database
SQL SELECT — Run in background

Run the command in the background and log its output. Base task: Return rows from a table.

nohup sh -c 'SELECT * FROM users LIMIT 100' > command-results.log 2>&1 &
Open →
Database
SQL WHERE — Save output

Save standard output and errors to a text file. Base task: Filter rows with a condition.

SELECT * FROM users WHERE enabled = 1 > command-results.txt 2>&1
Open →
Database
SQL WHERE — Display and save output

Display output while saving it to a file. Base task: Filter rows with a condition.

SELECT * FROM users WHERE enabled = 1 2>&1 | tee command-results.txt
Open →
Database
SQL WHERE — Measure execution time

Measure the command execution time. Base task: Filter rows with a condition.

time SELECT * FROM users WHERE enabled = 1
Open →
Database
SQL WHERE — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Filter rows with a condition.

watch -n 5 'SELECT * FROM users WHERE enabled = 1'
Open →
Database
SQL WHERE — Run with timestamp

Print a timestamp immediately before running the command. Base task: Filter rows with a condition.

date --iso-8601=seconds; SELECT * FROM users WHERE enabled = 1
Open →
Database
SQL WHERE — Run in background

Run the command in the background and log its output. Base task: Filter rows with a condition.

nohup sh -c 'SELECT * FROM users WHERE enabled = 1' > command-results.log 2>&1 &
Open →
Database
SQL ORDER BY — Save output

Save standard output and errors to a text file. Base task: Sort query results.

SELECT * FROM users ORDER BY created_at DESC > command-results.txt 2>&1
Open →
Database
SQL ORDER BY — Display and save output

Display output while saving it to a file. Base task: Sort query results.

SELECT * FROM users ORDER BY created_at DESC 2>&1 | tee command-results.txt
Open →
Database
SQL ORDER BY — Measure execution time

Measure the command execution time. Base task: Sort query results.

time SELECT * FROM users ORDER BY created_at DESC
Open →
Database
SQL ORDER BY — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Sort query results.

watch -n 5 'SELECT * FROM users ORDER BY created_at DESC'
Open →
Database
SQL ORDER BY — Run with timestamp

Print a timestamp immediately before running the command. Base task: Sort query results.

date --iso-8601=seconds; SELECT * FROM users ORDER BY created_at DESC
Open →
Database
SQL ORDER BY — Run in background

Run the command in the background and log its output. Base task: Sort query results.

nohup sh -c 'SELECT * FROM users ORDER BY created_at DESC' > command-results.log 2>&1 &
Open →
Database
SQL GROUP BY — Save output

Save standard output and errors to a text file. Base task: Aggregate rows by a column.

SELECT department, COUNT(*) FROM users GROUP BY department > command-results.txt 2>&1
Open →
Database
SQL GROUP BY — Display and save output

Display output while saving it to a file. Base task: Aggregate rows by a column.

SELECT department, COUNT(*) FROM users GROUP BY department 2>&1 | tee command-results.txt
Open →
Database
SQL GROUP BY — Measure execution time

Measure the command execution time. Base task: Aggregate rows by a column.

time SELECT department, COUNT(*) FROM users GROUP BY department
Open →
Database
SQL GROUP BY — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Aggregate rows by a column.

watch -n 5 'SELECT department, COUNT(*) FROM users GROUP BY department'
Open →
Database
SQL GROUP BY — Run with timestamp

Print a timestamp immediately before running the command. Base task: Aggregate rows by a column.

date --iso-8601=seconds; SELECT department, COUNT(*) FROM users GROUP BY department
Open →
Database
SQL GROUP BY — Run in background

Run the command in the background and log its output. Base task: Aggregate rows by a column.

nohup sh -c 'SELECT department, COUNT(*) FROM users GROUP BY department' > command-results.log 2>&1 &
Open →
Database
SQL JOIN — Save output

Save standard output and errors to a text file. Base task: Join related tables.

SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id > command-results.txt 2>&1
Open →
Database
SQL JOIN — Display and save output

Display output while saving it to a file. Base task: Join related tables.

SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id 2>&1 | tee command-results.txt
Open →
Database
SQL JOIN — Measure execution time

Measure the command execution time. Base task: Join related tables.

time SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id
Open →
Database
SQL JOIN — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Join related tables.

watch -n 5 'SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id'
Open →
Database
SQL JOIN — Run with timestamp

Print a timestamp immediately before running the command. Base task: Join related tables.

date --iso-8601=seconds; SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id
Open →
Database
SQL JOIN — Run in background

Run the command in the background and log its output. Base task: Join related tables.

nohup sh -c 'SELECT u.name, d.name AS department FROM users u JOIN departments d ON d.id = u.department_id' > command-results.log 2>&1 &
Open →
Database
SQL INSERT — Save output

Save standard output and errors to a text file. Base task: Insert a row.

INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com') > command-results.txt 2>&1
Open →
Database
SQL INSERT — Display and save output

Display output while saving it to a file. Base task: Insert a row.

INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com') 2>&1 | tee command-results.txt
Open →
Database
SQL INSERT — Measure execution time

Measure the command execution time. Base task: Insert a row.

time INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com')
Open →
Database
SQL INSERT — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Insert a row.

watch -n 5 'INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com')'
Open →
Database
SQL INSERT — Run with timestamp

Print a timestamp immediately before running the command. Base task: Insert a row.

date --iso-8601=seconds; INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com')
Open →
Database
SQL INSERT — Run in background

Run the command in the background and log its output. Base task: Insert a row.

nohup sh -c 'INSERT INTO users (name,email) VALUES ('Jane Smith','jane@example.com')' > command-results.log 2>&1 &
Open →
Database
SQL UPDATE — Save output

Save standard output and errors to a text file. Base task: Update matching rows.

UPDATE users SET enabled = 0 WHERE id = 42 > command-results.txt 2>&1
Open →
Database
SQL UPDATE — Display and save output

Display output while saving it to a file. Base task: Update matching rows.

UPDATE users SET enabled = 0 WHERE id = 42 2>&1 | tee command-results.txt
Open →
Database
SQL UPDATE — Measure execution time

Measure the command execution time. Base task: Update matching rows.

time UPDATE users SET enabled = 0 WHERE id = 42
Open →
Database
SQL UPDATE — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Update matching rows.

watch -n 5 'UPDATE users SET enabled = 0 WHERE id = 42'
Open →
Database
SQL UPDATE — Run with timestamp

Print a timestamp immediately before running the command. Base task: Update matching rows.

date --iso-8601=seconds; UPDATE users SET enabled = 0 WHERE id = 42
Open →
Database
SQL UPDATE — Run in background

Run the command in the background and log its output. Base task: Update matching rows.

nohup sh -c 'UPDATE users SET enabled = 0 WHERE id = 42' > command-results.log 2>&1 &
Open →
Database
SQL DELETE — Save output

Save standard output and errors to a text file. Base task: Delete matching rows.

DELETE FROM users WHERE id = 42 > command-results.txt 2>&1
Open →
Database
SQL DELETE — Display and save output

Display output while saving it to a file. Base task: Delete matching rows.

DELETE FROM users WHERE id = 42 2>&1 | tee command-results.txt
Open →
Database
SQL DELETE — Measure execution time

Measure the command execution time. Base task: Delete matching rows.

time DELETE FROM users WHERE id = 42
Open →
Database
SQL DELETE — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Delete matching rows.

watch -n 5 'DELETE FROM users WHERE id = 42'
Open →
Database
SQL DELETE — Run with timestamp

Print a timestamp immediately before running the command. Base task: Delete matching rows.

date --iso-8601=seconds; DELETE FROM users WHERE id = 42
Open →
Database
SQL DELETE — Run in background

Run the command in the background and log its output. Base task: Delete matching rows.

nohup sh -c 'DELETE FROM users WHERE id = 42' > command-results.log 2>&1 &
Open →
Database
SQL CREATE TABLE — Save output

Save standard output and errors to a text file. Base task: Create a table.

CREATE TABLE audit_log (id BIGINT PRIMARY KEY AUTO_INCREMENT, event VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP) > command-results.txt 2>&1
Open →
Database
SQL CREATE TABLE — Display and save output

Display output while saving it to a file. Base task: Create a table.

CREATE TABLE audit_log (id BIGINT PRIMARY KEY AUTO_INCREMENT, event VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP) 2>&1 | tee command-results.txt
Open →
Database
SQL CREATE TABLE — Measure execution time

Measure the command execution time. Base task: Create a table.

time CREATE TABLE audit_log (id BIGINT PRIMARY KEY AUTO_INCREMENT, event VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP)
Open →
Database
SQL CREATE TABLE — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create a table.

watch -n 5 'CREATE TABLE audit_log (id BIGINT PRIMARY KEY AUTO_INCREMENT, event VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP)'
Open →
Database
SQL CREATE TABLE — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create a table.

date --iso-8601=seconds; CREATE TABLE audit_log (id BIGINT PRIMARY KEY AUTO_INCREMENT, event VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP)
Open →
Database
SQL CREATE TABLE — Run in background

Run the command in the background and log its output. Base task: Create a table.

nohup sh -c 'CREATE TABLE audit_log (id BIGINT PRIMARY KEY AUTO_INCREMENT, event VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP)' > command-results.log 2>&1 &
Open →
Database
SQL ALTER TABLE — Save output

Save standard output and errors to a text file. Base task: Alter a table definition.

ALTER TABLE users ADD COLUMN last_login DATETIME NULL > command-results.txt 2>&1
Open →
Database
SQL ALTER TABLE — Display and save output

Display output while saving it to a file. Base task: Alter a table definition.

ALTER TABLE users ADD COLUMN last_login DATETIME NULL 2>&1 | tee command-results.txt
Open →
Database
SQL ALTER TABLE — Measure execution time

Measure the command execution time. Base task: Alter a table definition.

time ALTER TABLE users ADD COLUMN last_login DATETIME NULL
Open →
Database
SQL ALTER TABLE — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Alter a table definition.

watch -n 5 'ALTER TABLE users ADD COLUMN last_login DATETIME NULL'
Open →
Database
SQL ALTER TABLE — Run with timestamp

Print a timestamp immediately before running the command. Base task: Alter a table definition.

date --iso-8601=seconds; ALTER TABLE users ADD COLUMN last_login DATETIME NULL
Open →
Database
SQL ALTER TABLE — Run in background

Run the command in the background and log its output. Base task: Alter a table definition.

nohup sh -c 'ALTER TABLE users ADD COLUMN last_login DATETIME NULL' > command-results.log 2>&1 &
Open →
Database
SQL CREATE INDEX — Save output

Save standard output and errors to a text file. Base task: Create a database index.

CREATE INDEX idx_users_email ON users(email) > command-results.txt 2>&1
Open →
Database
SQL CREATE INDEX — Display and save output

Display output while saving it to a file. Base task: Create a database index.

CREATE INDEX idx_users_email ON users(email) 2>&1 | tee command-results.txt
Open →
Database
SQL CREATE INDEX — Measure execution time

Measure the command execution time. Base task: Create a database index.

time CREATE INDEX idx_users_email ON users(email)
Open →
Database
SQL CREATE INDEX — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create a database index.

watch -n 5 'CREATE INDEX idx_users_email ON users(email)'
Open →
Database
SQL CREATE INDEX — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create a database index.

date --iso-8601=seconds; CREATE INDEX idx_users_email ON users(email)
Open →
Database
SQL CREATE INDEX — Run in background

Run the command in the background and log its output. Base task: Create a database index.

nohup sh -c 'CREATE INDEX idx_users_email ON users(email)' > command-results.log 2>&1 &
Open →
Database
MariaDB SHOW DATABASES — Save output

Save standard output and errors to a text file. Base task: List MariaDB databases.

SHOW DATABASES > command-results.txt 2>&1
Open →
Database
MariaDB SHOW DATABASES — Display and save output

Display output while saving it to a file. Base task: List MariaDB databases.

SHOW DATABASES 2>&1 | tee command-results.txt
Open →
Database
MariaDB SHOW DATABASES — Measure execution time

Measure the command execution time. Base task: List MariaDB databases.

time SHOW DATABASES
Open →
Database
MariaDB SHOW DATABASES — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List MariaDB databases.

watch -n 5 'SHOW DATABASES'
Open →
Database
MariaDB SHOW DATABASES — Run with timestamp

Print a timestamp immediately before running the command. Base task: List MariaDB databases.

date --iso-8601=seconds; SHOW DATABASES
Open →
Database
MariaDB SHOW DATABASES — Run in background

Run the command in the background and log its output. Base task: List MariaDB databases.

nohup sh -c 'SHOW DATABASES' > command-results.log 2>&1 &
Open →
Database
MariaDB SHOW TABLES — Save output

Save standard output and errors to a text file. Base task: List tables in the selected database.

SHOW TABLES > command-results.txt 2>&1
Open →
Database
MariaDB SHOW TABLES — Display and save output

Display output while saving it to a file. Base task: List tables in the selected database.

SHOW TABLES 2>&1 | tee command-results.txt
Open →
Database
MariaDB SHOW TABLES — Measure execution time

Measure the command execution time. Base task: List tables in the selected database.

time SHOW TABLES
Open →
Database
MariaDB SHOW TABLES — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List tables in the selected database.

watch -n 5 'SHOW TABLES'
Open →
Database
MariaDB SHOW TABLES — Run with timestamp

Print a timestamp immediately before running the command. Base task: List tables in the selected database.

date --iso-8601=seconds; SHOW TABLES
Open →
Database
MariaDB SHOW TABLES — Run in background

Run the command in the background and log its output. Base task: List tables in the selected database.

nohup sh -c 'SHOW TABLES' > command-results.log 2>&1 &
Open →
Database
MariaDB DESCRIBE — Save output

Save standard output and errors to a text file. Base task: Display a table definition.

DESCRIBE users > command-results.txt 2>&1
Open →
Database
MariaDB DESCRIBE — Display and save output

Display output while saving it to a file. Base task: Display a table definition.

DESCRIBE users 2>&1 | tee command-results.txt
Open →
Database
MariaDB DESCRIBE — Measure execution time

Measure the command execution time. Base task: Display a table definition.

time DESCRIBE users
Open →
Database
MariaDB DESCRIBE — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display a table definition.

watch -n 5 'DESCRIBE users'
Open →
Database
MariaDB DESCRIBE — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display a table definition.

date --iso-8601=seconds; DESCRIBE users
Open →
Database
MariaDB DESCRIBE — Run in background

Run the command in the background and log its output. Base task: Display a table definition.

nohup sh -c 'DESCRIBE users' > command-results.log 2>&1 &
Open →
Database
MariaDB SHOW PROCESSLIST — Save output

Save standard output and errors to a text file. Base task: Display active MariaDB sessions and queries.

SHOW FULL PROCESSLIST > command-results.txt 2>&1
Open →
Database
MariaDB SHOW PROCESSLIST — Display and save output

Display output while saving it to a file. Base task: Display active MariaDB sessions and queries.

SHOW FULL PROCESSLIST 2>&1 | tee command-results.txt
Open →
Database
MariaDB SHOW PROCESSLIST — Measure execution time

Measure the command execution time. Base task: Display active MariaDB sessions and queries.

time SHOW FULL PROCESSLIST
Open →
Database
MariaDB SHOW PROCESSLIST — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Display active MariaDB sessions and queries.

watch -n 5 'SHOW FULL PROCESSLIST'
Open →
Database
MariaDB SHOW PROCESSLIST — Run with timestamp

Print a timestamp immediately before running the command. Base task: Display active MariaDB sessions and queries.

date --iso-8601=seconds; SHOW FULL PROCESSLIST
Open →
Database
MariaDB SHOW PROCESSLIST — Run in background

Run the command in the background and log its output. Base task: Display active MariaDB sessions and queries.

nohup sh -c 'SHOW FULL PROCESSLIST' > command-results.log 2>&1 &
Open →
Database
MariaDB mysqldump — Save output

Save standard output and errors to a text file. Base task: Back up a MariaDB or MySQL database.

mysqldump -u root -p database_name > backup.sql > command-results.txt 2>&1
Open →
Database
MariaDB mysqldump — Display and save output

Display output while saving it to a file. Base task: Back up a MariaDB or MySQL database.

mysqldump -u root -p database_name > backup.sql 2>&1 | tee command-results.txt
Open →
Database
MariaDB mysqldump — Measure execution time

Measure the command execution time. Base task: Back up a MariaDB or MySQL database.

time mysqldump -u root -p database_name > backup.sql
Open →
Database
MariaDB mysqldump — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Back up a MariaDB or MySQL database.

watch -n 5 'mysqldump -u root -p database_name > backup.sql'
Open →
Database
MariaDB mysqldump — Run with timestamp

Print a timestamp immediately before running the command. Base task: Back up a MariaDB or MySQL database.

date --iso-8601=seconds; mysqldump -u root -p database_name > backup.sql
Open →
Database
MariaDB mysqldump — Run in background

Run the command in the background and log its output. Base task: Back up a MariaDB or MySQL database.

nohup sh -c 'mysqldump -u root -p database_name > backup.sql' > command-results.log 2>&1 &
Open →
Database
PostgreSQL list databases — Save output

Save standard output and errors to a text file. Base task: List PostgreSQL databases in psql.

\l > command-results.txt 2>&1
Open →
Database
PostgreSQL list databases — Display and save output

Display output while saving it to a file. Base task: List PostgreSQL databases in psql.

\l 2>&1 | tee command-results.txt
Open →
Database
PostgreSQL list databases — Measure execution time

Measure the command execution time. Base task: List PostgreSQL databases in psql.

time \l
Open →
Database
PostgreSQL list databases — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List PostgreSQL databases in psql.

watch -n 5 '\l'
Open →
Database
PostgreSQL list databases — Run with timestamp

Print a timestamp immediately before running the command. Base task: List PostgreSQL databases in psql.

date --iso-8601=seconds; \l
Open →
Database
PostgreSQL list databases — Run in background

Run the command in the background and log its output. Base task: List PostgreSQL databases in psql.

nohup sh -c '\l' > command-results.log 2>&1 &
Open →
Database
PostgreSQL list tables — Save output

Save standard output and errors to a text file. Base task: List PostgreSQL tables in psql.

\dt > command-results.txt 2>&1
Open →
Database
PostgreSQL list tables — Display and save output

Display output while saving it to a file. Base task: List PostgreSQL tables in psql.

\dt 2>&1 | tee command-results.txt
Open →
Database
PostgreSQL list tables — Measure execution time

Measure the command execution time. Base task: List PostgreSQL tables in psql.

time \dt
Open →
Database
PostgreSQL list tables — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: List PostgreSQL tables in psql.

watch -n 5 '\dt'
Open →
Database
PostgreSQL list tables — Run with timestamp

Print a timestamp immediately before running the command. Base task: List PostgreSQL tables in psql.

date --iso-8601=seconds; \dt
Open →
Database
PostgreSQL list tables — Run in background

Run the command in the background and log its output. Base task: List PostgreSQL tables in psql.

nohup sh -c '\dt' > command-results.log 2>&1 &
Open →
Database
PostgreSQL describe table — Save output

Save standard output and errors to a text file. Base task: Describe a PostgreSQL table in psql.

\d users > command-results.txt 2>&1
Open →
Database
PostgreSQL describe table — Display and save output

Display output while saving it to a file. Base task: Describe a PostgreSQL table in psql.

\d users 2>&1 | tee command-results.txt
Open →
Database
PostgreSQL describe table — Measure execution time

Measure the command execution time. Base task: Describe a PostgreSQL table in psql.

time \d users
Open →
Database
PostgreSQL describe table — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Describe a PostgreSQL table in psql.

watch -n 5 '\d users'
Open →
Database
PostgreSQL describe table — Run with timestamp

Print a timestamp immediately before running the command. Base task: Describe a PostgreSQL table in psql.

date --iso-8601=seconds; \d users
Open →
Database
PostgreSQL describe table — Run in background

Run the command in the background and log its output. Base task: Describe a PostgreSQL table in psql.

nohup sh -c '\d users' > command-results.log 2>&1 &
Open →
Database
PostgreSQL pg_dump — Save output

Save standard output and errors to a text file. Base task: Create a PostgreSQL custom-format backup.

pg_dump -Fc database_name > backup.dump > command-results.txt 2>&1
Open →
Database
PostgreSQL pg_dump — Display and save output

Display output while saving it to a file. Base task: Create a PostgreSQL custom-format backup.

pg_dump -Fc database_name > backup.dump 2>&1 | tee command-results.txt
Open →
Database
PostgreSQL pg_dump — Measure execution time

Measure the command execution time. Base task: Create a PostgreSQL custom-format backup.

time pg_dump -Fc database_name > backup.dump
Open →
Database
PostgreSQL pg_dump — Repeat every five seconds

Repeat the command every five seconds for monitoring. Base task: Create a PostgreSQL custom-format backup.

watch -n 5 'pg_dump -Fc database_name > backup.dump'
Open →
Database
PostgreSQL pg_dump — Run with timestamp

Print a timestamp immediately before running the command. Base task: Create a PostgreSQL custom-format backup.

date --iso-8601=seconds; pg_dump -Fc database_name > backup.dump
Open →
Database
PostgreSQL pg_dump — Run in background

Run the command in the background and log its output. Base task: Create a PostgreSQL custom-format backup.

nohup sh -c 'pg_dump -Fc database_name > backup.dump' > command-results.log 2>&1 &
Open →
Windows Administration

Windows Administration

Back to top ↑
PowerShell
Get-Service

List Windows services on the local computer.

Get-Service
Open →
PowerShell
Start-Service

Start a Windows service.

Start-Service -Name Spooler
Open →
PowerShell
Stop-Service

Stop a Windows service.

Stop-Service -Name Spooler
Open →
PowerShell
Restart-Service

Restart a Windows service.

Restart-Service -Name Spooler
Open →
PowerShell
Get-Process

List running processes.

Get-Process
Open →
PowerShell
Stop-Process

Stop a running process by name.

Stop-Process -Name notepad
Open →
PowerShell
Get-EventLog

Read recent entries from a classic Windows event log.

Get-EventLog -LogName System -Newest 50
Open →
PowerShell
Get-WinEvent

Read recent Windows event log entries.

Get-WinEvent -LogName System -MaxEvents 50
Open →
PowerShell
Get-ComputerInfo

Display detailed Windows system information.

Get-ComputerInfo
Open →
PowerShell
Get-CimInstance

Query operating system information through CIM.

Get-CimInstance Win32_OperatingSystem
Open →
PowerShell
Test-Connection

Test ICMP connectivity to a host.

Test-Connection server01 -Count 4
Open →
PowerShell
Test-NetConnection

Test TCP connectivity to a host and port.

Test-NetConnection server01 -Port 443
Open →
PowerShell
Resolve-DnsName

Resolve DNS records for a name.

Resolve-DnsName example.com
Open →
PowerShell
Get-NetIPAddress

List IP addresses configured on the computer.

Get-NetIPAddress
Open →
PowerShell
Get-NetIPConfiguration

Display IP configuration for network adapters.

Get-NetIPConfiguration
Open →
PowerShell
Get-NetAdapter

List network adapters and link state.

Get-NetAdapter
Open →
PowerShell
Restart-NetAdapter

Restart a network adapter.

Restart-NetAdapter -Name Ethernet
Open →
PowerShell
Get-NetRoute

List routes in the Windows routing table.

Get-NetRoute
Open →
PowerShell
Get-NetTCPConnection

List listening TCP connections.

Get-NetTCPConnection -State Listen
Open →
PowerShell
Get-DnsClientCache

Display the Windows DNS client cache.

Get-DnsClientCache
Open →
PowerShell
Clear-DnsClientCache

Clear the Windows DNS client cache.

Clear-DnsClientCache
Open →
PowerShell
Get-ChildItem

List files and folders recursively.

Get-ChildItem C:\Logs -Recurse
Open →
PowerShell
Copy-Item

Copy files or folders.

Copy-Item C:\Source C:\Backup -Recurse
Open →
PowerShell
Move-Item

Move or rename a file or folder.

Move-Item C:\Old C:\New
Open →
PowerShell
Remove-Item

Delete a file.

Remove-Item C:\Temp\old.log -Force
Open →
PowerShell
New-Item

Create a directory.

New-Item -ItemType Directory -Path C:\Reports
Open →
PowerShell
Get-Content

Read the last 100 lines of a file.

Get-Content C:\Logs\app.log -Tail 100
Open →
PowerShell
Set-Content

Write text to a file.

Set-Content C:\Temp\status.txt "OK"
Open →
PowerShell
Add-Content

Append text to a file.

Add-Content C:\Temp\status.txt "Completed"
Open →
PowerShell
Select-String

Search text files for a pattern.

Select-String -Path C:\Logs\*.log -Pattern "error"
Open →
PowerShell
Export-Csv

Export objects to a CSV file.

Get-Process | Export-Csv processes.csv -NoTypeInformation
Open →
PowerShell
Import-Csv

Import rows from a CSV file.

Import-Csv users.csv
Open →
PowerShell
ConvertTo-Json

Convert PowerShell objects to JSON.

Get-Service | ConvertTo-Json -Depth 3
Open →
PowerShell
Invoke-RestMethod

Call a REST endpoint and parse its response.

Invoke-RestMethod https://api.example.com/status
Open →
PowerShell
Invoke-WebRequest

Send an HTTP request and return the web response.

Invoke-WebRequest https://example.com
Open →
PowerShell
Get-ScheduledTask

List Windows scheduled tasks.

Get-ScheduledTask
Open →
PowerShell
Start-ScheduledTask

Start a Windows scheduled task.

Start-ScheduledTask -TaskName "Daily Backup"
Open →
PowerShell
Get-LocalUser

List local user accounts.

Get-LocalUser
Open →
PowerShell
New-LocalUser

Create a local user account.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString)
Open →
PowerShell
Get-LocalGroupMember

List members of a local group.

Get-LocalGroupMember Administrators
Open →
PowerShell
Add-LocalGroupMember

Add a member to a local group.

Add-LocalGroupMember -Group Administrators -Member helpdesk
Open →
PowerShell
Get-HotFix

List installed Windows updates.

Get-HotFix
Open →
PowerShell
Get-WindowsOptionalFeature

List Windows optional features.

Get-WindowsOptionalFeature -Online
Open →
PowerShell
Enable-WindowsOptionalFeature

Enable a Windows optional feature.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole
Open →
PowerShell
Get-Volume

List storage volumes.

Get-Volume
Open →
PowerShell
Get-Disk

List physical disks.

Get-Disk
Open →
PowerShell
Get-Partition

List disk partitions.

Get-Partition
Open →
PowerShell
Get-SmbShare

List SMB shares.

Get-SmbShare
Open →
PowerShell
New-SmbShare

Create an SMB share.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators
Open →
PowerShell
Get-FileHash

Calculate a file hash.

Get-FileHash .\installer.exe -Algorithm SHA256
Open →
PowerShell
Measure-Object

Count objects or calculate totals.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum
Open →
PowerShell
Where-Object

Filter pipeline objects.

Get-Service | Where-Object Status -eq Running
Open →
PowerShell
Sort-Object

Sort objects by a property.

Get-Process | Sort-Object CPU -Descending
Open →
PowerShell
Select-Object

Choose properties from objects.

Get-Process | Select-Object Name,Id,CPU
Open →
PowerShell
ForEach-Object

Run an action for each pipeline object.

Get-Service | ForEach-Object { $_.Name }
Open →
PowerShell
Start-Transcript

Record a PowerShell session to a text file.

Start-Transcript -Path C:\Logs\session.txt
Open →
PowerShell
Get-ExecutionPolicy

Display PowerShell execution policies.

Get-ExecutionPolicy -List
Open →
PowerShell
Set-ExecutionPolicy

Set the PowerShell execution policy for a scope.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Open →
PowerShell
Get-Module

List installed PowerShell modules.

Get-Module -ListAvailable
Open →
PowerShell
Install-Module

Install a module from PowerShell Gallery.

Install-Module Microsoft.Graph -Scope CurrentUser
Open →
PowerShell
Update-Module

Update an installed PowerShell module.

Update-Module Microsoft.Graph
Open →
PowerShell
Get-Help

Display command help and examples.

Get-Help Get-Service -Examples
Open →
PowerShell
Get-Service — Basic Usage

Use Get-Service for a standard administrative task.

Get-Service
Open →
PowerShell
Start-Service — Basic Usage

Use Start-Service for a standard administrative task.

Start-Service -Name Spooler
Open →
PowerShell
Stop-Service — Basic Usage

Use Stop-Service for a standard administrative task.

Stop-Service -Name Spooler
Open →
PowerShell
Restart-Service — Basic Usage

Use Restart-Service for a standard administrative task.

Restart-Service -Name Spooler
Open →
PowerShell
Get-Process — Basic Usage

Use Get-Process for a standard administrative task.

Get-Process
Open →
PowerShell
Stop-Process — Basic Usage

Use Stop-Process for a standard administrative task.

Stop-Process -Name notepad
Open →
PowerShell
Get-EventLog — Basic Usage

Use Get-EventLog for a standard administrative task.

Get-EventLog -LogName System -Newest 50
Open →
PowerShell
Get-WinEvent — Basic Usage

Use Get-WinEvent for a standard administrative task.

Get-WinEvent -LogName System -MaxEvents 50
Open →
PowerShell
Get-ComputerInfo — Basic Usage

Use Get-ComputerInfo for a standard administrative task.

Get-ComputerInfo
Open →
PowerShell
Get-CimInstance — Basic Usage

Use Get-CimInstance for a standard administrative task.

Get-CimInstance Win32_OperatingSystem
Open →
PowerShell
Test-Connection — Basic Usage

Use Test-Connection for a standard administrative task.

Test-Connection server01 -Count 4
Open →
PowerShell
Test-NetConnection — Basic Usage

Use Test-NetConnection for a standard administrative task.

Test-NetConnection server01 -Port 443
Open →
PowerShell
Resolve-DnsName — Basic Usage

Use Resolve-DnsName for a standard administrative task.

Resolve-DnsName example.com
Open →
PowerShell
Get-NetIPAddress — Basic Usage

Use Get-NetIPAddress for a standard administrative task.

Get-NetIPAddress
Open →
PowerShell
Get-NetIPConfiguration — Basic Usage

Use Get-NetIPConfiguration for a standard administrative task.

Get-NetIPConfiguration
Open →
PowerShell
Get-NetAdapter — Basic Usage

Use Get-NetAdapter for a standard administrative task.

Get-NetAdapter
Open →
PowerShell
Restart-NetAdapter — Basic Usage

Use Restart-NetAdapter for a standard administrative task.

Restart-NetAdapter -Name Ethernet
Open →
PowerShell
Get-NetRoute — Basic Usage

Use Get-NetRoute for a standard administrative task.

Get-NetRoute
Open →
PowerShell
Get-NetTCPConnection — Basic Usage

Use Get-NetTCPConnection for a standard administrative task.

Get-NetTCPConnection -State Listen
Open →
PowerShell
Get-DnsClientCache — Basic Usage

Use Get-DnsClientCache for a standard administrative task.

Get-DnsClientCache
Open →
PowerShell
Clear-DnsClientCache — Basic Usage

Use Clear-DnsClientCache for a standard administrative task.

Clear-DnsClientCache
Open →
PowerShell
Get-ChildItem — Basic Usage

Use Get-ChildItem for a standard administrative task.

Get-ChildItem C:\Logs -Recurse
Open →
PowerShell
Copy-Item — Basic Usage

Use Copy-Item for a standard administrative task.

Copy-Item C:\Source C:\Backup -Recurse
Open →
PowerShell
Move-Item — Basic Usage

Use Move-Item for a standard administrative task.

Move-Item C:\Old C:\New
Open →
PowerShell
Remove-Item — Basic Usage

Use Remove-Item for a standard administrative task.

Remove-Item C:\Temp\old.log -Force
Open →
PowerShell
New-Item — Basic Usage

Use New-Item for a standard administrative task.

New-Item -ItemType Directory -Path C:\Reports
Open →
PowerShell
Get-Content — Basic Usage

Use Get-Content for a standard administrative task.

Get-Content C:\Logs\app.log -Tail 100
Open →
PowerShell
Set-Content — Basic Usage

Use Set-Content for a standard administrative task.

Set-Content C:\Temp\status.txt "OK"
Open →
PowerShell
Add-Content — Basic Usage

Use Add-Content for a standard administrative task.

Add-Content C:\Temp\status.txt "Completed"
Open →
PowerShell
Select-String — Basic Usage

Use Select-String for a standard administrative task.

Select-String -Path C:\Logs\*.log -Pattern "error"
Open →
PowerShell
Export-Csv — Basic Usage

Use Export-Csv for a standard administrative task.

Get-Process | Export-Csv processes.csv -NoTypeInformation
Open →
PowerShell
Import-Csv — Basic Usage

Use Import-Csv for a standard administrative task.

Import-Csv users.csv
Open →
PowerShell
ConvertTo-Json — Basic Usage

Use ConvertTo-Json for a standard administrative task.

Get-Service | ConvertTo-Json -Depth 3
Open →
PowerShell
Invoke-RestMethod — Basic Usage

Use Invoke-RestMethod for a standard administrative task.

Invoke-RestMethod https://api.example.com/status
Open →
PowerShell
Invoke-WebRequest — Basic Usage

Use Invoke-WebRequest for a standard administrative task.

Invoke-WebRequest https://example.com
Open →
PowerShell
Get-ScheduledTask — Basic Usage

Use Get-ScheduledTask for a standard administrative task.

Get-ScheduledTask
Open →
PowerShell
Start-ScheduledTask — Basic Usage

Use Start-ScheduledTask for a standard administrative task.

Start-ScheduledTask -TaskName "Daily Backup"
Open →
PowerShell
Get-LocalUser — Basic Usage

Use Get-LocalUser for a standard administrative task.

Get-LocalUser
Open →
PowerShell
New-LocalUser — Basic Usage

Use New-LocalUser for a standard administrative task.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString)
Open →
PowerShell
Get-LocalGroupMember — Basic Usage

Use Get-LocalGroupMember for a standard administrative task.

Get-LocalGroupMember Administrators
Open →
PowerShell
Add-LocalGroupMember — Basic Usage

Use Add-LocalGroupMember for a standard administrative task.

Add-LocalGroupMember -Group Administrators -Member helpdesk
Open →
PowerShell
Get-HotFix — Basic Usage

Use Get-HotFix for a standard administrative task.

Get-HotFix
Open →
PowerShell
Get-WindowsOptionalFeature — Basic Usage

Use Get-WindowsOptionalFeature for a standard administrative task.

Get-WindowsOptionalFeature -Online
Open →
PowerShell
Enable-WindowsOptionalFeature — Basic Usage

Use Enable-WindowsOptionalFeature for a standard administrative task.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole
Open →
PowerShell
Get-Volume — Basic Usage

Use Get-Volume for a standard administrative task.

Get-Volume
Open →
PowerShell
Get-Disk — Basic Usage

Use Get-Disk for a standard administrative task.

Get-Disk
Open →
PowerShell
Get-Partition — Basic Usage

Use Get-Partition for a standard administrative task.

Get-Partition
Open →
PowerShell
Get-SmbShare — Basic Usage

Use Get-SmbShare for a standard administrative task.

Get-SmbShare
Open →
PowerShell
New-SmbShare — Basic Usage

Use New-SmbShare for a standard administrative task.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators
Open →
PowerShell
Get-FileHash — Basic Usage

Use Get-FileHash for a standard administrative task.

Get-FileHash .\installer.exe -Algorithm SHA256
Open →
PowerShell
Measure-Object — Basic Usage

Use Measure-Object for a standard administrative task.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum
Open →
PowerShell
Where-Object — Basic Usage

Use Where-Object for a standard administrative task.

Get-Service | Where-Object Status -eq Running
Open →
PowerShell
Sort-Object — Basic Usage

Use Sort-Object for a standard administrative task.

Get-Process | Sort-Object CPU -Descending
Open →
PowerShell
Select-Object — Basic Usage

Use Select-Object for a standard administrative task.

Get-Process | Select-Object Name,Id,CPU
Open →
PowerShell
ForEach-Object — Basic Usage

Use ForEach-Object for a standard administrative task.

Get-Service | ForEach-Object { $_.Name }
Open →
PowerShell
Start-Transcript — Basic Usage

Use Start-Transcript for a standard administrative task.

Start-Transcript -Path C:\Logs\session.txt
Open →
PowerShell
Get-ExecutionPolicy — Basic Usage

Use Get-ExecutionPolicy for a standard administrative task.

Get-ExecutionPolicy -List
Open →
PowerShell
Set-ExecutionPolicy — Basic Usage

Use Set-ExecutionPolicy for a standard administrative task.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Open →
PowerShell
Get-Module — Basic Usage

Use Get-Module for a standard administrative task.

Get-Module -ListAvailable
Open →
PowerShell
Install-Module — Basic Usage

Use Install-Module for a standard administrative task.

Install-Module Microsoft.Graph -Scope CurrentUser
Open →
PowerShell
Update-Module — Basic Usage

Use Update-Module for a standard administrative task.

Update-Module Microsoft.Graph
Open →
PowerShell
Get-Help — Basic Usage

Use Get-Help for a standard administrative task.

Get-Help Get-Service -Examples
Open →
PowerShell
Get-Service — Export Results

Export the output of Get-Service for documentation or review.

Get-Service | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Start-Service — Export Results

Export the output of Start-Service for documentation or review.

Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Stop-Service — Export Results

Export the output of Stop-Service for documentation or review.

Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Restart-Service — Export Results

Export the output of Restart-Service for documentation or review.

Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-Process — Export Results

Export the output of Get-Process for documentation or review.

Get-Process | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Stop-Process — Export Results

Export the output of Stop-Process for documentation or review.

Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-EventLog — Export Results

Export the output of Get-EventLog for documentation or review.

Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-WinEvent — Export Results

Export the output of Get-WinEvent for documentation or review.

Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ComputerInfo — Export Results

Export the output of Get-ComputerInfo for documentation or review.

Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-CimInstance — Export Results

Export the output of Get-CimInstance for documentation or review.

Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Test-Connection — Export Results

Export the output of Test-Connection for documentation or review.

Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Test-NetConnection — Export Results

Export the output of Test-NetConnection for documentation or review.

Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Resolve-DnsName — Export Results

Export the output of Resolve-DnsName for documentation or review.

Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-NetIPAddress — Export Results

Export the output of Get-NetIPAddress for documentation or review.

Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-NetIPConfiguration — Export Results

Export the output of Get-NetIPConfiguration for documentation or review.

Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-NetAdapter — Export Results

Export the output of Get-NetAdapter for documentation or review.

Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Restart-NetAdapter — Export Results

Export the output of Restart-NetAdapter for documentation or review.

Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-NetRoute — Export Results

Export the output of Get-NetRoute for documentation or review.

Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-NetTCPConnection — Export Results

Export the output of Get-NetTCPConnection for documentation or review.

Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-DnsClientCache — Export Results

Export the output of Get-DnsClientCache for documentation or review.

Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Clear-DnsClientCache — Export Results

Export the output of Clear-DnsClientCache for documentation or review.

Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ChildItem — Export Results

Export the output of Get-ChildItem for documentation or review.

Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Copy-Item — Export Results

Export the output of Copy-Item for documentation or review.

Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Move-Item — Export Results

Export the output of Move-Item for documentation or review.

Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Remove-Item — Export Results

Export the output of Remove-Item for documentation or review.

Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
New-Item — Export Results

Export the output of New-Item for documentation or review.

New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-Content — Export Results

Export the output of Get-Content for documentation or review.

Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Set-Content — Export Results

Export the output of Set-Content for documentation or review.

Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Add-Content — Export Results

Export the output of Add-Content for documentation or review.

Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Select-String — Export Results

Export the output of Select-String for documentation or review.

Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Export-Csv — Export Results

Export the output of Export-Csv for documentation or review.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Import-Csv — Export Results

Export the output of Import-Csv for documentation or review.

Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
ConvertTo-Json — Export Results

Export the output of ConvertTo-Json for documentation or review.

Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Invoke-RestMethod — Export Results

Export the output of Invoke-RestMethod for documentation or review.

Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Invoke-WebRequest — Export Results

Export the output of Invoke-WebRequest for documentation or review.

Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ScheduledTask — Export Results

Export the output of Get-ScheduledTask for documentation or review.

Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Start-ScheduledTask — Export Results

Export the output of Start-ScheduledTask for documentation or review.

Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-LocalUser — Export Results

Export the output of Get-LocalUser for documentation or review.

Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
New-LocalUser — Export Results

Export the output of New-LocalUser for documentation or review.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-LocalGroupMember — Export Results

Export the output of Get-LocalGroupMember for documentation or review.

Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Add-LocalGroupMember — Export Results

Export the output of Add-LocalGroupMember for documentation or review.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-HotFix — Export Results

Export the output of Get-HotFix for documentation or review.

Get-HotFix | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results

Export the output of Get-WindowsOptionalFeature for documentation or review.

Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results

Export the output of Enable-WindowsOptionalFeature for documentation or review.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-Volume — Export Results

Export the output of Get-Volume for documentation or review.

Get-Volume | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-Disk — Export Results

Export the output of Get-Disk for documentation or review.

Get-Disk | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-Partition — Export Results

Export the output of Get-Partition for documentation or review.

Get-Partition | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-SmbShare — Export Results

Export the output of Get-SmbShare for documentation or review.

Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
New-SmbShare — Export Results

Export the output of New-SmbShare for documentation or review.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-FileHash — Export Results

Export the output of Get-FileHash for documentation or review.

Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Measure-Object — Export Results

Export the output of Measure-Object for documentation or review.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Where-Object — Export Results

Export the output of Where-Object for documentation or review.

Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Sort-Object — Export Results

Export the output of Sort-Object for documentation or review.

Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Select-Object — Export Results

Export the output of Select-Object for documentation or review.

Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
ForEach-Object — Export Results

Export the output of ForEach-Object for documentation or review.

Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Start-Transcript — Export Results

Export the output of Start-Transcript for documentation or review.

Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-ExecutionPolicy — Export Results

Export the output of Get-ExecutionPolicy for documentation or review.

Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Set-ExecutionPolicy — Export Results

Export the output of Set-ExecutionPolicy for documentation or review.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-Module — Export Results

Export the output of Get-Module for documentation or review.

Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Install-Module — Export Results

Export the output of Install-Module for documentation or review.

Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Update-Module — Export Results

Export the output of Update-Module for documentation or review.

Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-Help — Export Results

Export the output of Get-Help for documentation or review.

Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation
Open →
PowerShell
Get-Service Help and Syntax

Display complete syntax, parameter details, and examples for Get-Service.

Get-Help Get-Service -Full
Open →
PowerShell
Start-Service Help and Syntax

Display complete syntax, parameter details, and examples for Start-Service.

Get-Help Start-Service -Full
Open →
PowerShell
Stop-Service Help and Syntax

Display complete syntax, parameter details, and examples for Stop-Service.

Get-Help Stop-Service -Full
Open →
PowerShell
Restart-Service Help and Syntax

Display complete syntax, parameter details, and examples for Restart-Service.

Get-Help Restart-Service -Full
Open →
PowerShell
Get-Process Help and Syntax

Display complete syntax, parameter details, and examples for Get-Process.

Get-Help Get-Process -Full
Open →
PowerShell
Stop-Process Help and Syntax

Display complete syntax, parameter details, and examples for Stop-Process.

Get-Help Stop-Process -Full
Open →
PowerShell
Get-EventLog Help and Syntax

Display complete syntax, parameter details, and examples for Get-EventLog.

Get-Help Get-EventLog -Full
Open →
PowerShell
Get-WinEvent Help and Syntax

Display complete syntax, parameter details, and examples for Get-WinEvent.

Get-Help Get-WinEvent -Full
Open →
PowerShell
Get-ComputerInfo Help and Syntax

Display complete syntax, parameter details, and examples for Get-ComputerInfo.

Get-Help Get-ComputerInfo -Full
Open →
PowerShell
Get-CimInstance Help and Syntax

Display complete syntax, parameter details, and examples for Get-CimInstance.

Get-Help Get-CimInstance -Full
Open →
PowerShell
Test-Connection Help and Syntax

Display complete syntax, parameter details, and examples for Test-Connection.

Get-Help Test-Connection -Full
Open →
PowerShell
Test-NetConnection Help and Syntax

Display complete syntax, parameter details, and examples for Test-NetConnection.

Get-Help Test-NetConnection -Full
Open →
PowerShell
Resolve-DnsName Help and Syntax

Display complete syntax, parameter details, and examples for Resolve-DnsName.

Get-Help Resolve-DnsName -Full
Open →
PowerShell
Get-NetIPAddress Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetIPAddress.

Get-Help Get-NetIPAddress -Full
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

Get-Help Get-NetIPConfiguration -Full
Open →
PowerShell
Get-NetAdapter Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetAdapter.

Get-Help Get-NetAdapter -Full
Open →
PowerShell
Restart-NetAdapter Help and Syntax

Display complete syntax, parameter details, and examples for Restart-NetAdapter.

Get-Help Restart-NetAdapter -Full
Open →
PowerShell
Get-NetRoute Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetRoute.

Get-Help Get-NetRoute -Full
Open →
PowerShell
Get-NetTCPConnection Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

Get-Help Get-NetTCPConnection -Full
Open →
PowerShell
Get-DnsClientCache Help and Syntax

Display complete syntax, parameter details, and examples for Get-DnsClientCache.

Get-Help Get-DnsClientCache -Full
Open →
PowerShell
Clear-DnsClientCache Help and Syntax

Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

Get-Help Clear-DnsClientCache -Full
Open →
PowerShell
Get-ChildItem Help and Syntax

Display complete syntax, parameter details, and examples for Get-ChildItem.

Get-Help Get-ChildItem -Full
Open →
PowerShell
Copy-Item Help and Syntax

Display complete syntax, parameter details, and examples for Copy-Item.

Get-Help Copy-Item -Full
Open →
PowerShell
Move-Item Help and Syntax

Display complete syntax, parameter details, and examples for Move-Item.

Get-Help Move-Item -Full
Open →
PowerShell
Remove-Item Help and Syntax

Display complete syntax, parameter details, and examples for Remove-Item.

Get-Help Remove-Item -Full
Open →
PowerShell
New-Item Help and Syntax

Display complete syntax, parameter details, and examples for New-Item.

Get-Help New-Item -Full
Open →
PowerShell
Get-Content Help and Syntax

Display complete syntax, parameter details, and examples for Get-Content.

Get-Help Get-Content -Full
Open →
PowerShell
Set-Content Help and Syntax

Display complete syntax, parameter details, and examples for Set-Content.

Get-Help Set-Content -Full
Open →
PowerShell
Add-Content Help and Syntax

Display complete syntax, parameter details, and examples for Add-Content.

Get-Help Add-Content -Full
Open →
PowerShell
Select-String Help and Syntax

Display complete syntax, parameter details, and examples for Select-String.

Get-Help Select-String -Full
Open →
PowerShell
Export-Csv Help and Syntax

Display complete syntax, parameter details, and examples for Export-Csv.

Get-Help Get-Process -Full
Open →
PowerShell
Import-Csv Help and Syntax

Display complete syntax, parameter details, and examples for Import-Csv.

Get-Help Import-Csv -Full
Open →
PowerShell
ConvertTo-Json Help and Syntax

Display complete syntax, parameter details, and examples for ConvertTo-Json.

Get-Help Get-Service -Full
Open →
PowerShell
Invoke-RestMethod Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-RestMethod.

Get-Help Invoke-RestMethod -Full
Open →
PowerShell
Invoke-WebRequest Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-WebRequest.

Get-Help Invoke-WebRequest -Full
Open →
PowerShell
Get-ScheduledTask Help and Syntax

Display complete syntax, parameter details, and examples for Get-ScheduledTask.

Get-Help Get-ScheduledTask -Full
Open →
PowerShell
Start-ScheduledTask Help and Syntax

Display complete syntax, parameter details, and examples for Start-ScheduledTask.

Get-Help Start-ScheduledTask -Full
Open →
PowerShell
Get-LocalUser Help and Syntax

Display complete syntax, parameter details, and examples for Get-LocalUser.

Get-Help Get-LocalUser -Full
Open →
PowerShell
New-LocalUser Help and Syntax

Display complete syntax, parameter details, and examples for New-LocalUser.

Get-Help New-LocalUser -Full
Open →
PowerShell
Get-LocalGroupMember Help and Syntax

Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

Get-Help Get-LocalGroupMember -Full
Open →
PowerShell
Add-LocalGroupMember Help and Syntax

Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

Get-Help Add-LocalGroupMember -Full
Open →
PowerShell
Get-HotFix Help and Syntax

Display complete syntax, parameter details, and examples for Get-HotFix.

Get-Help Get-HotFix -Full
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax

Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

Get-Help Get-WindowsOptionalFeature -Full
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax

Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

Get-Help Enable-WindowsOptionalFeature -Full
Open →
PowerShell
Get-Volume Help and Syntax

Display complete syntax, parameter details, and examples for Get-Volume.

Get-Help Get-Volume -Full
Open →
PowerShell
Get-Disk Help and Syntax

Display complete syntax, parameter details, and examples for Get-Disk.

Get-Help Get-Disk -Full
Open →
PowerShell
Get-Partition Help and Syntax

Display complete syntax, parameter details, and examples for Get-Partition.

Get-Help Get-Partition -Full
Open →
PowerShell
Get-SmbShare Help and Syntax

Display complete syntax, parameter details, and examples for Get-SmbShare.

Get-Help Get-SmbShare -Full
Open →
PowerShell
New-SmbShare Help and Syntax

Display complete syntax, parameter details, and examples for New-SmbShare.

Get-Help New-SmbShare -Full
Open →
PowerShell
Get-FileHash Help and Syntax

Display complete syntax, parameter details, and examples for Get-FileHash.

Get-Help Get-FileHash -Full
Open →
PowerShell
Measure-Object Help and Syntax

Display complete syntax, parameter details, and examples for Measure-Object.

Get-Help Get-ChildItem -Full
Open →
PowerShell
Where-Object Help and Syntax

Display complete syntax, parameter details, and examples for Where-Object.

Get-Help Get-Service -Full
Open →
PowerShell
Sort-Object Help and Syntax

Display complete syntax, parameter details, and examples for Sort-Object.

Get-Help Get-Process -Full
Open →
PowerShell
Select-Object Help and Syntax

Display complete syntax, parameter details, and examples for Select-Object.

Get-Help Get-Process -Full
Open →
PowerShell
ForEach-Object Help and Syntax

Display complete syntax, parameter details, and examples for ForEach-Object.

Get-Help Get-Service -Full
Open →
PowerShell
Start-Transcript Help and Syntax

Display complete syntax, parameter details, and examples for Start-Transcript.

Get-Help Start-Transcript -Full
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax

Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

Get-Help Get-ExecutionPolicy -Full
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax

Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

Get-Help Set-ExecutionPolicy -Full
Open →
PowerShell
Get-Module Help and Syntax

Display complete syntax, parameter details, and examples for Get-Module.

Get-Help Get-Module -Full
Open →
PowerShell
Install-Module Help and Syntax

Display complete syntax, parameter details, and examples for Install-Module.

Get-Help Install-Module -Full
Open →
PowerShell
Update-Module Help and Syntax

Display complete syntax, parameter details, and examples for Update-Module.

Get-Help Update-Module -Full
Open →
PowerShell
Get-Help Help and Syntax

Display complete syntax, parameter details, and examples for Get-Help.

Get-Help Get-Help -Full
Open →
PowerShell
Get-Service — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Service — Basic Usage.

Get-Help Get-Service -Full
Open →
PowerShell
Start-Service — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Start-Service — Basic Usage.

Get-Help Start-Service -Full
Open →
PowerShell
Stop-Service — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Stop-Service — Basic Usage.

Get-Help Stop-Service -Full
Open →
PowerShell
Restart-Service — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Restart-Service — Basic Usage.

Get-Help Restart-Service -Full
Open →
PowerShell
Get-Process — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Process — Basic Usage.

Get-Help Get-Process -Full
Open →
PowerShell
Stop-Process — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Stop-Process — Basic Usage.

Get-Help Stop-Process -Full
Open →
PowerShell
Get-EventLog — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-EventLog — Basic Usage.

Get-Help Get-EventLog -Full
Open →
PowerShell
Get-WinEvent — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-WinEvent — Basic Usage.

Get-Help Get-WinEvent -Full
Open →
PowerShell
Get-ComputerInfo — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ComputerInfo — Basic Usage.

Get-Help Get-ComputerInfo -Full
Open →
PowerShell
Get-CimInstance — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-CimInstance — Basic Usage.

Get-Help Get-CimInstance -Full
Open →
PowerShell
Test-Connection — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Test-Connection — Basic Usage.

Get-Help Test-Connection -Full
Open →
PowerShell
Test-NetConnection — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Test-NetConnection — Basic Usage.

Get-Help Test-NetConnection -Full
Open →
PowerShell
Resolve-DnsName — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Resolve-DnsName — Basic Usage.

Get-Help Resolve-DnsName -Full
Open →
PowerShell
Get-NetIPAddress — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetIPAddress — Basic Usage.

Get-Help Get-NetIPAddress -Full
Open →
PowerShell
Get-NetIPConfiguration — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetIPConfiguration — Basic Usage.

Get-Help Get-NetIPConfiguration -Full
Open →
PowerShell
Get-NetAdapter — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetAdapter — Basic Usage.

Get-Help Get-NetAdapter -Full
Open →
PowerShell
Restart-NetAdapter — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Restart-NetAdapter — Basic Usage.

Get-Help Restart-NetAdapter -Full
Open →
PowerShell
Get-NetRoute — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetRoute — Basic Usage.

Get-Help Get-NetRoute -Full
Open →
PowerShell
Get-NetTCPConnection — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetTCPConnection — Basic Usage.

Get-Help Get-NetTCPConnection -Full
Open →
PowerShell
Get-DnsClientCache — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-DnsClientCache — Basic Usage.

Get-Help Get-DnsClientCache -Full
Open →
PowerShell
Clear-DnsClientCache — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Clear-DnsClientCache — Basic Usage.

Get-Help Clear-DnsClientCache -Full
Open →
PowerShell
Get-ChildItem — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ChildItem — Basic Usage.

Get-Help Get-ChildItem -Full
Open →
PowerShell
Copy-Item — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Copy-Item — Basic Usage.

Get-Help Copy-Item -Full
Open →
PowerShell
Move-Item — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Move-Item — Basic Usage.

Get-Help Move-Item -Full
Open →
PowerShell
Remove-Item — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Remove-Item — Basic Usage.

Get-Help Remove-Item -Full
Open →
PowerShell
New-Item — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for New-Item — Basic Usage.

Get-Help New-Item -Full
Open →
PowerShell
Get-Content — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Content — Basic Usage.

Get-Help Get-Content -Full
Open →
PowerShell
Set-Content — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Set-Content — Basic Usage.

Get-Help Set-Content -Full
Open →
PowerShell
Add-Content — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Add-Content — Basic Usage.

Get-Help Add-Content -Full
Open →
PowerShell
Select-String — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Select-String — Basic Usage.

Get-Help Select-String -Full
Open →
PowerShell
Export-Csv — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Export-Csv — Basic Usage.

Get-Help Get-Process -Full
Open →
PowerShell
Import-Csv — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Import-Csv — Basic Usage.

Get-Help Import-Csv -Full
Open →
PowerShell
ConvertTo-Json — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for ConvertTo-Json — Basic Usage.

Get-Help Get-Service -Full
Open →
PowerShell
Invoke-RestMethod — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-RestMethod — Basic Usage.

Get-Help Invoke-RestMethod -Full
Open →
PowerShell
Invoke-WebRequest — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-WebRequest — Basic Usage.

Get-Help Invoke-WebRequest -Full
Open →
PowerShell
Get-ScheduledTask — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ScheduledTask — Basic Usage.

Get-Help Get-ScheduledTask -Full
Open →
PowerShell
Start-ScheduledTask — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Start-ScheduledTask — Basic Usage.

Get-Help Start-ScheduledTask -Full
Open →
PowerShell
Get-LocalUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-LocalUser — Basic Usage.

Get-Help Get-LocalUser -Full
Open →
PowerShell
New-LocalUser — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for New-LocalUser — Basic Usage.

Get-Help New-LocalUser -Full
Open →
PowerShell
Get-LocalGroupMember — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-LocalGroupMember — Basic Usage.

Get-Help Get-LocalGroupMember -Full
Open →
PowerShell
Add-LocalGroupMember — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Add-LocalGroupMember — Basic Usage.

Get-Help Add-LocalGroupMember -Full
Open →
PowerShell
Get-HotFix — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-HotFix — Basic Usage.

Get-Help Get-HotFix -Full
Open →
PowerShell
Get-WindowsOptionalFeature — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature — Basic Usage.

Get-Help Get-WindowsOptionalFeature -Full
Open →
PowerShell
Enable-WindowsOptionalFeature — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature — Basic Usage.

Get-Help Enable-WindowsOptionalFeature -Full
Open →
PowerShell
Get-Volume — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Volume — Basic Usage.

Get-Help Get-Volume -Full
Open →
PowerShell
Get-Disk — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Disk — Basic Usage.

Get-Help Get-Disk -Full
Open →
PowerShell
Get-Partition — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Partition — Basic Usage.

Get-Help Get-Partition -Full
Open →
PowerShell
Get-SmbShare — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-SmbShare — Basic Usage.

Get-Help Get-SmbShare -Full
Open →
PowerShell
New-SmbShare — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for New-SmbShare — Basic Usage.

Get-Help New-SmbShare -Full
Open →
PowerShell
Get-FileHash — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-FileHash — Basic Usage.

Get-Help Get-FileHash -Full
Open →
PowerShell
Measure-Object — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Measure-Object — Basic Usage.

Get-Help Get-ChildItem -Full
Open →
PowerShell
Where-Object — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Where-Object — Basic Usage.

Get-Help Get-Service -Full
Open →
PowerShell
Sort-Object — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Sort-Object — Basic Usage.

Get-Help Get-Process -Full
Open →
PowerShell
Select-Object — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Select-Object — Basic Usage.

Get-Help Get-Process -Full
Open →
PowerShell
ForEach-Object — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for ForEach-Object — Basic Usage.

Get-Help Get-Service -Full
Open →
PowerShell
Start-Transcript — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Start-Transcript — Basic Usage.

Get-Help Start-Transcript -Full
Open →
PowerShell
Get-ExecutionPolicy — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-ExecutionPolicy — Basic Usage.

Get-Help Get-ExecutionPolicy -Full
Open →
PowerShell
Set-ExecutionPolicy — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Set-ExecutionPolicy — Basic Usage.

Get-Help Set-ExecutionPolicy -Full
Open →
PowerShell
Get-Module — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Module — Basic Usage.

Get-Help Get-Module -Full
Open →
PowerShell
Install-Module — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Install-Module — Basic Usage.

Get-Help Install-Module -Full
Open →
PowerShell
Update-Module — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Update-Module — Basic Usage.

Get-Help Update-Module -Full
Open →
PowerShell
Get-Help — Basic Usage Help and Syntax

Display complete syntax, parameter details, and examples for Get-Help — Basic Usage.

Get-Help Get-Help -Full
Open →
PowerShell
Get-Service — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Service — Export Results.

Get-Help Get-Service -Full
Open →
PowerShell
Start-Service — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Start-Service — Export Results.

Get-Help Start-Service -Full
Open →
PowerShell
Stop-Service — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Stop-Service — Export Results.

Get-Help Stop-Service -Full
Open →
PowerShell
Restart-Service — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Restart-Service — Export Results.

Get-Help Restart-Service -Full
Open →
PowerShell
Get-Process — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Process — Export Results.

Get-Help Get-Process -Full
Open →
PowerShell
Stop-Process — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Stop-Process — Export Results.

Get-Help Stop-Process -Full
Open →
PowerShell
Get-EventLog — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-EventLog — Export Results.

Get-Help Get-EventLog -Full
Open →
PowerShell
Get-WinEvent — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-WinEvent — Export Results.

Get-Help Get-WinEvent -Full
Open →
PowerShell
Get-ComputerInfo — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ComputerInfo — Export Results.

Get-Help Get-ComputerInfo -Full
Open →
PowerShell
Get-CimInstance — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-CimInstance — Export Results.

Get-Help Get-CimInstance -Full
Open →
PowerShell
Test-Connection — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Test-Connection — Export Results.

Get-Help Test-Connection -Full
Open →
PowerShell
Test-NetConnection — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Test-NetConnection — Export Results.

Get-Help Test-NetConnection -Full
Open →
PowerShell
Resolve-DnsName — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Resolve-DnsName — Export Results.

Get-Help Resolve-DnsName -Full
Open →
PowerShell
Get-NetIPAddress — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetIPAddress — Export Results.

Get-Help Get-NetIPAddress -Full
Open →
PowerShell
Get-NetIPConfiguration — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetIPConfiguration — Export Results.

Get-Help Get-NetIPConfiguration -Full
Open →
PowerShell
Get-NetAdapter — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetAdapter — Export Results.

Get-Help Get-NetAdapter -Full
Open →
PowerShell
Restart-NetAdapter — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Restart-NetAdapter — Export Results.

Get-Help Restart-NetAdapter -Full
Open →
PowerShell
Get-NetRoute — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetRoute — Export Results.

Get-Help Get-NetRoute -Full
Open →
PowerShell
Get-NetTCPConnection — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-NetTCPConnection — Export Results.

Get-Help Get-NetTCPConnection -Full
Open →
PowerShell
Get-DnsClientCache — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-DnsClientCache — Export Results.

Get-Help Get-DnsClientCache -Full
Open →
PowerShell
Clear-DnsClientCache — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Clear-DnsClientCache — Export Results.

Get-Help Clear-DnsClientCache -Full
Open →
PowerShell
Get-ChildItem — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ChildItem — Export Results.

Get-Help Get-ChildItem -Full
Open →
PowerShell
Copy-Item — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Copy-Item — Export Results.

Get-Help Copy-Item -Full
Open →
PowerShell
Move-Item — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Move-Item — Export Results.

Get-Help Move-Item -Full
Open →
PowerShell
Remove-Item — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Remove-Item — Export Results.

Get-Help Remove-Item -Full
Open →
PowerShell
New-Item — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for New-Item — Export Results.

Get-Help New-Item -Full
Open →
PowerShell
Get-Content — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Content — Export Results.

Get-Help Get-Content -Full
Open →
PowerShell
Set-Content — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Set-Content — Export Results.

Get-Help Set-Content -Full
Open →
PowerShell
Add-Content — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Add-Content — Export Results.

Get-Help Add-Content -Full
Open →
PowerShell
Select-String — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Select-String — Export Results.

Get-Help Select-String -Full
Open →
PowerShell
Export-Csv — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Export-Csv — Export Results.

Get-Help Get-Process -Full
Open →
PowerShell
Import-Csv — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Import-Csv — Export Results.

Get-Help Import-Csv -Full
Open →
PowerShell
ConvertTo-Json — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for ConvertTo-Json — Export Results.

Get-Help Get-Service -Full
Open →
PowerShell
Invoke-RestMethod — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-RestMethod — Export Results.

Get-Help Invoke-RestMethod -Full
Open →
PowerShell
Invoke-WebRequest — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Invoke-WebRequest — Export Results.

Get-Help Invoke-WebRequest -Full
Open →
PowerShell
Get-ScheduledTask — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ScheduledTask — Export Results.

Get-Help Get-ScheduledTask -Full
Open →
PowerShell
Start-ScheduledTask — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Start-ScheduledTask — Export Results.

Get-Help Start-ScheduledTask -Full
Open →
PowerShell
Get-LocalUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-LocalUser — Export Results.

Get-Help Get-LocalUser -Full
Open →
PowerShell
New-LocalUser — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for New-LocalUser — Export Results.

Get-Help New-LocalUser -Full
Open →
PowerShell
Get-LocalGroupMember — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-LocalGroupMember — Export Results.

Get-Help Get-LocalGroupMember -Full
Open →
PowerShell
Add-LocalGroupMember — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Add-LocalGroupMember — Export Results.

Get-Help Add-LocalGroupMember -Full
Open →
PowerShell
Get-HotFix — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-HotFix — Export Results.

Get-Help Get-HotFix -Full
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature — Export Results.

Get-Help Get-WindowsOptionalFeature -Full
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature — Export Results.

Get-Help Enable-WindowsOptionalFeature -Full
Open →
PowerShell
Get-Volume — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Volume — Export Results.

Get-Help Get-Volume -Full
Open →
PowerShell
Get-Disk — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Disk — Export Results.

Get-Help Get-Disk -Full
Open →
PowerShell
Get-Partition — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Partition — Export Results.

Get-Help Get-Partition -Full
Open →
PowerShell
Get-SmbShare — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-SmbShare — Export Results.

Get-Help Get-SmbShare -Full
Open →
PowerShell
New-SmbShare — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for New-SmbShare — Export Results.

Get-Help New-SmbShare -Full
Open →
PowerShell
Get-FileHash — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-FileHash — Export Results.

Get-Help Get-FileHash -Full
Open →
PowerShell
Measure-Object — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Measure-Object — Export Results.

Get-Help Get-ChildItem -Full
Open →
PowerShell
Where-Object — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Where-Object — Export Results.

Get-Help Get-Service -Full
Open →
PowerShell
Sort-Object — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Sort-Object — Export Results.

Get-Help Get-Process -Full
Open →
PowerShell
Select-Object — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Select-Object — Export Results.

Get-Help Get-Process -Full
Open →
PowerShell
ForEach-Object — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for ForEach-Object — Export Results.

Get-Help Get-Service -Full
Open →
PowerShell
Start-Transcript — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Start-Transcript — Export Results.

Get-Help Start-Transcript -Full
Open →
PowerShell
Get-ExecutionPolicy — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-ExecutionPolicy — Export Results.

Get-Help Get-ExecutionPolicy -Full
Open →
PowerShell
Set-ExecutionPolicy — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Set-ExecutionPolicy — Export Results.

Get-Help Set-ExecutionPolicy -Full
Open →
PowerShell
Get-Module — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Module — Export Results.

Get-Help Get-Module -Full
Open →
PowerShell
Install-Module — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Install-Module — Export Results.

Get-Help Install-Module -Full
Open →
PowerShell
Update-Module — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Update-Module — Export Results.

Get-Help Update-Module -Full
Open →
PowerShell
Get-Help — Export Results Help and Syntax

Display complete syntax, parameter details, and examples for Get-Help — Export Results.

Get-Help Get-Help -Full
Open →
PowerShell
Get-Service — Formatted details

Display all returned properties in a readable list. Base task: List Windows services on the local computer.

Get-Service | Format-List *
Open →
PowerShell
Get-Service — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List Windows services on the local computer.

Get-Service | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Service — Measure execution time

Measure how long the command takes to complete. Base task: List Windows services on the local computer.

Measure-Command { Get-Service }
Open →
PowerShell
Get-Service — Stop on error

Run the command with terminating error handling. Base task: List Windows services on the local computer.

try { Get-Service -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Service — Save transcript output

Capture the command and console output in a transcript log. Base task: List Windows services on the local computer.

Start-Transcript -Path .\command-session.log; Get-Service; Stop-Transcript
Open →
PowerShell
Get-Service — Select common properties

Return all available object properties for inspection. Base task: List Windows services on the local computer.

Get-Service | Select-Object *
Open →
PowerShell
Get-Service — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List Windows services on the local computer.

Get-Service | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Service — Write results to text

Save formatted output to a UTF-8 text file. Base task: List Windows services on the local computer.

Get-Service | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-Service — Formatted details

Display all returned properties in a readable list. Base task: Start a Windows service.

Start-Service -Name Spooler | Format-List *
Open →
PowerShell
Start-Service — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Start a Windows service.

Start-Service -Name Spooler | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-Service — Measure execution time

Measure how long the command takes to complete. Base task: Start a Windows service.

Measure-Command { Start-Service -Name Spooler }
Open →
PowerShell
Start-Service — Stop on error

Run the command with terminating error handling. Base task: Start a Windows service.

try { Start-Service -Name Spooler -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-Service — Save transcript output

Capture the command and console output in a transcript log. Base task: Start a Windows service.

Start-Transcript -Path .\command-session.log; Start-Service -Name Spooler; Stop-Transcript
Open →
PowerShell
Start-Service — Select common properties

Return all available object properties for inspection. Base task: Start a Windows service.

Start-Service -Name Spooler | Select-Object *
Open →
PowerShell
Start-Service — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Start a Windows service.

Start-Service -Name Spooler | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-Service — Write results to text

Save formatted output to a UTF-8 text file. Base task: Start a Windows service.

Start-Service -Name Spooler | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Stop-Service — Formatted details

Display all returned properties in a readable list. Base task: Stop a Windows service.

Stop-Service -Name Spooler | Format-List *
Open →
PowerShell
Stop-Service — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Stop a Windows service.

Stop-Service -Name Spooler | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Stop-Service — Measure execution time

Measure how long the command takes to complete. Base task: Stop a Windows service.

Measure-Command { Stop-Service -Name Spooler }
Open →
PowerShell
Stop-Service — Stop on error

Run the command with terminating error handling. Base task: Stop a Windows service.

try { Stop-Service -Name Spooler -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Stop-Service — Save transcript output

Capture the command and console output in a transcript log. Base task: Stop a Windows service.

Start-Transcript -Path .\command-session.log; Stop-Service -Name Spooler; Stop-Transcript
Open →
PowerShell
Stop-Service — Select common properties

Return all available object properties for inspection. Base task: Stop a Windows service.

Stop-Service -Name Spooler | Select-Object *
Open →
PowerShell
Stop-Service — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Stop a Windows service.

Stop-Service -Name Spooler | ConvertTo-Json -Depth 6
Open →
PowerShell
Stop-Service — Write results to text

Save formatted output to a UTF-8 text file. Base task: Stop a Windows service.

Stop-Service -Name Spooler | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Restart-Service — Formatted details

Display all returned properties in a readable list. Base task: Restart a Windows service.

Restart-Service -Name Spooler | Format-List *
Open →
PowerShell
Restart-Service — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Restart a Windows service.

Restart-Service -Name Spooler | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Restart-Service — Measure execution time

Measure how long the command takes to complete. Base task: Restart a Windows service.

Measure-Command { Restart-Service -Name Spooler }
Open →
PowerShell
Restart-Service — Stop on error

Run the command with terminating error handling. Base task: Restart a Windows service.

try { Restart-Service -Name Spooler -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Restart-Service — Save transcript output

Capture the command and console output in a transcript log. Base task: Restart a Windows service.

Start-Transcript -Path .\command-session.log; Restart-Service -Name Spooler; Stop-Transcript
Open →
PowerShell
Restart-Service — Select common properties

Return all available object properties for inspection. Base task: Restart a Windows service.

Restart-Service -Name Spooler | Select-Object *
Open →
PowerShell
Restart-Service — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Restart a Windows service.

Restart-Service -Name Spooler | ConvertTo-Json -Depth 6
Open →
PowerShell
Restart-Service — Write results to text

Save formatted output to a UTF-8 text file. Base task: Restart a Windows service.

Restart-Service -Name Spooler | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Process — Formatted details

Display all returned properties in a readable list. Base task: List running processes.

Get-Process | Format-List *
Open →
PowerShell
Get-Process — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List running processes.

Get-Process | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Process — Measure execution time

Measure how long the command takes to complete. Base task: List running processes.

Measure-Command { Get-Process }
Open →
PowerShell
Get-Process — Stop on error

Run the command with terminating error handling. Base task: List running processes.

try { Get-Process -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Process — Save transcript output

Capture the command and console output in a transcript log. Base task: List running processes.

Start-Transcript -Path .\command-session.log; Get-Process; Stop-Transcript
Open →
PowerShell
Get-Process — Select common properties

Return all available object properties for inspection. Base task: List running processes.

Get-Process | Select-Object *
Open →
PowerShell
Get-Process — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List running processes.

Get-Process | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Process — Write results to text

Save formatted output to a UTF-8 text file. Base task: List running processes.

Get-Process | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Stop-Process — Formatted details

Display all returned properties in a readable list. Base task: Stop a running process by name.

Stop-Process -Name notepad | Format-List *
Open →
PowerShell
Stop-Process — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Stop a running process by name.

Stop-Process -Name notepad | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Stop-Process — Measure execution time

Measure how long the command takes to complete. Base task: Stop a running process by name.

Measure-Command { Stop-Process -Name notepad }
Open →
PowerShell
Stop-Process — Stop on error

Run the command with terminating error handling. Base task: Stop a running process by name.

try { Stop-Process -Name notepad -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Stop-Process — Save transcript output

Capture the command and console output in a transcript log. Base task: Stop a running process by name.

Start-Transcript -Path .\command-session.log; Stop-Process -Name notepad; Stop-Transcript
Open →
PowerShell
Stop-Process — Select common properties

Return all available object properties for inspection. Base task: Stop a running process by name.

Stop-Process -Name notepad | Select-Object *
Open →
PowerShell
Stop-Process — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Stop a running process by name.

Stop-Process -Name notepad | ConvertTo-Json -Depth 6
Open →
PowerShell
Stop-Process — Write results to text

Save formatted output to a UTF-8 text file. Base task: Stop a running process by name.

Stop-Process -Name notepad | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-EventLog — Formatted details

Display all returned properties in a readable list. Base task: Read recent entries from a classic Windows event log.

Get-EventLog -LogName System -Newest 50 | Format-List *
Open →
PowerShell
Get-EventLog — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Read recent entries from a classic Windows event log.

Get-EventLog -LogName System -Newest 50 | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-EventLog — Measure execution time

Measure how long the command takes to complete. Base task: Read recent entries from a classic Windows event log.

Measure-Command { Get-EventLog -LogName System -Newest 50 }
Open →
PowerShell
Get-EventLog — Stop on error

Run the command with terminating error handling. Base task: Read recent entries from a classic Windows event log.

try { Get-EventLog -LogName System -Newest 50 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-EventLog — Save transcript output

Capture the command and console output in a transcript log. Base task: Read recent entries from a classic Windows event log.

Start-Transcript -Path .\command-session.log; Get-EventLog -LogName System -Newest 50; Stop-Transcript
Open →
PowerShell
Get-EventLog — Select common properties

Return all available object properties for inspection. Base task: Read recent entries from a classic Windows event log.

Get-EventLog -LogName System -Newest 50 | Select-Object *
Open →
PowerShell
Get-EventLog — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Read recent entries from a classic Windows event log.

Get-EventLog -LogName System -Newest 50 | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-EventLog — Write results to text

Save formatted output to a UTF-8 text file. Base task: Read recent entries from a classic Windows event log.

Get-EventLog -LogName System -Newest 50 | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-WinEvent — Formatted details

Display all returned properties in a readable list. Base task: Read recent Windows event log entries.

Get-WinEvent -LogName System -MaxEvents 50 | Format-List *
Open →
PowerShell
Get-WinEvent — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Read recent Windows event log entries.

Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-WinEvent — Measure execution time

Measure how long the command takes to complete. Base task: Read recent Windows event log entries.

Measure-Command { Get-WinEvent -LogName System -MaxEvents 50 }
Open →
PowerShell
Get-WinEvent — Stop on error

Run the command with terminating error handling. Base task: Read recent Windows event log entries.

try { Get-WinEvent -LogName System -MaxEvents 50 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-WinEvent — Save transcript output

Capture the command and console output in a transcript log. Base task: Read recent Windows event log entries.

Start-Transcript -Path .\command-session.log; Get-WinEvent -LogName System -MaxEvents 50; Stop-Transcript
Open →
PowerShell
Get-WinEvent — Select common properties

Return all available object properties for inspection. Base task: Read recent Windows event log entries.

Get-WinEvent -LogName System -MaxEvents 50 | Select-Object *
Open →
PowerShell
Get-WinEvent — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Read recent Windows event log entries.

Get-WinEvent -LogName System -MaxEvents 50 | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-WinEvent — Write results to text

Save formatted output to a UTF-8 text file. Base task: Read recent Windows event log entries.

Get-WinEvent -LogName System -MaxEvents 50 | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ComputerInfo — Formatted details

Display all returned properties in a readable list. Base task: Display detailed Windows system information.

Get-ComputerInfo | Format-List *
Open →
PowerShell
Get-ComputerInfo — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display detailed Windows system information.

Get-ComputerInfo | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ComputerInfo — Measure execution time

Measure how long the command takes to complete. Base task: Display detailed Windows system information.

Measure-Command { Get-ComputerInfo }
Open →
PowerShell
Get-ComputerInfo — Stop on error

Run the command with terminating error handling. Base task: Display detailed Windows system information.

try { Get-ComputerInfo -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ComputerInfo — Save transcript output

Capture the command and console output in a transcript log. Base task: Display detailed Windows system information.

Start-Transcript -Path .\command-session.log; Get-ComputerInfo; Stop-Transcript
Open →
PowerShell
Get-ComputerInfo — Select common properties

Return all available object properties for inspection. Base task: Display detailed Windows system information.

Get-ComputerInfo | Select-Object *
Open →
PowerShell
Get-ComputerInfo — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display detailed Windows system information.

Get-ComputerInfo | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ComputerInfo — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display detailed Windows system information.

Get-ComputerInfo | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-CimInstance — Formatted details

Display all returned properties in a readable list. Base task: Query operating system information through CIM.

Get-CimInstance Win32_OperatingSystem | Format-List *
Open →
PowerShell
Get-CimInstance — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Query operating system information through CIM.

Get-CimInstance Win32_OperatingSystem | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-CimInstance — Measure execution time

Measure how long the command takes to complete. Base task: Query operating system information through CIM.

Measure-Command { Get-CimInstance Win32_OperatingSystem }
Open →
PowerShell
Get-CimInstance — Stop on error

Run the command with terminating error handling. Base task: Query operating system information through CIM.

try { Get-CimInstance Win32_OperatingSystem -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-CimInstance — Save transcript output

Capture the command and console output in a transcript log. Base task: Query operating system information through CIM.

Start-Transcript -Path .\command-session.log; Get-CimInstance Win32_OperatingSystem; Stop-Transcript
Open →
PowerShell
Get-CimInstance — Select common properties

Return all available object properties for inspection. Base task: Query operating system information through CIM.

Get-CimInstance Win32_OperatingSystem | Select-Object *
Open →
PowerShell
Get-CimInstance — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Query operating system information through CIM.

Get-CimInstance Win32_OperatingSystem | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-CimInstance — Write results to text

Save formatted output to a UTF-8 text file. Base task: Query operating system information through CIM.

Get-CimInstance Win32_OperatingSystem | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Test-Connection — Formatted details

Display all returned properties in a readable list. Base task: Test ICMP connectivity to a host.

Test-Connection server01 -Count 4 | Format-List *
Open →
PowerShell
Test-Connection — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Test ICMP connectivity to a host.

Test-Connection server01 -Count 4 | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Test-Connection — Measure execution time

Measure how long the command takes to complete. Base task: Test ICMP connectivity to a host.

Measure-Command { Test-Connection server01 -Count 4 }
Open →
PowerShell
Test-Connection — Stop on error

Run the command with terminating error handling. Base task: Test ICMP connectivity to a host.

try { Test-Connection server01 -Count 4 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Test-Connection — Save transcript output

Capture the command and console output in a transcript log. Base task: Test ICMP connectivity to a host.

Start-Transcript -Path .\command-session.log; Test-Connection server01 -Count 4; Stop-Transcript
Open →
PowerShell
Test-Connection — Select common properties

Return all available object properties for inspection. Base task: Test ICMP connectivity to a host.

Test-Connection server01 -Count 4 | Select-Object *
Open →
PowerShell
Test-Connection — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Test ICMP connectivity to a host.

Test-Connection server01 -Count 4 | ConvertTo-Json -Depth 6
Open →
PowerShell
Test-Connection — Write results to text

Save formatted output to a UTF-8 text file. Base task: Test ICMP connectivity to a host.

Test-Connection server01 -Count 4 | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Test-NetConnection — Formatted details

Display all returned properties in a readable list. Base task: Test TCP connectivity to a host and port.

Test-NetConnection server01 -Port 443 | Format-List *
Open →
PowerShell
Test-NetConnection — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Test TCP connectivity to a host and port.

Test-NetConnection server01 -Port 443 | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Test-NetConnection — Measure execution time

Measure how long the command takes to complete. Base task: Test TCP connectivity to a host and port.

Measure-Command { Test-NetConnection server01 -Port 443 }
Open →
PowerShell
Test-NetConnection — Stop on error

Run the command with terminating error handling. Base task: Test TCP connectivity to a host and port.

try { Test-NetConnection server01 -Port 443 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Test-NetConnection — Save transcript output

Capture the command and console output in a transcript log. Base task: Test TCP connectivity to a host and port.

Start-Transcript -Path .\command-session.log; Test-NetConnection server01 -Port 443; Stop-Transcript
Open →
PowerShell
Test-NetConnection — Select common properties

Return all available object properties for inspection. Base task: Test TCP connectivity to a host and port.

Test-NetConnection server01 -Port 443 | Select-Object *
Open →
PowerShell
Test-NetConnection — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Test TCP connectivity to a host and port.

Test-NetConnection server01 -Port 443 | ConvertTo-Json -Depth 6
Open →
PowerShell
Test-NetConnection — Write results to text

Save formatted output to a UTF-8 text file. Base task: Test TCP connectivity to a host and port.

Test-NetConnection server01 -Port 443 | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Resolve-DnsName — Formatted details

Display all returned properties in a readable list. Base task: Resolve DNS records for a name.

Resolve-DnsName example.com | Format-List *
Open →
PowerShell
Resolve-DnsName — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Resolve DNS records for a name.

Resolve-DnsName example.com | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Resolve-DnsName — Measure execution time

Measure how long the command takes to complete. Base task: Resolve DNS records for a name.

Measure-Command { Resolve-DnsName example.com }
Open →
PowerShell
Resolve-DnsName — Stop on error

Run the command with terminating error handling. Base task: Resolve DNS records for a name.

try { Resolve-DnsName example.com -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Resolve-DnsName — Save transcript output

Capture the command and console output in a transcript log. Base task: Resolve DNS records for a name.

Start-Transcript -Path .\command-session.log; Resolve-DnsName example.com; Stop-Transcript
Open →
PowerShell
Resolve-DnsName — Select common properties

Return all available object properties for inspection. Base task: Resolve DNS records for a name.

Resolve-DnsName example.com | Select-Object *
Open →
PowerShell
Resolve-DnsName — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Resolve DNS records for a name.

Resolve-DnsName example.com | ConvertTo-Json -Depth 6
Open →
PowerShell
Resolve-DnsName — Write results to text

Save formatted output to a UTF-8 text file. Base task: Resolve DNS records for a name.

Resolve-DnsName example.com | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetIPAddress — Formatted details

Display all returned properties in a readable list. Base task: List IP addresses configured on the computer.

Get-NetIPAddress | Format-List *
Open →
PowerShell
Get-NetIPAddress — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List IP addresses configured on the computer.

Get-NetIPAddress | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetIPAddress — Measure execution time

Measure how long the command takes to complete. Base task: List IP addresses configured on the computer.

Measure-Command { Get-NetIPAddress }
Open →
PowerShell
Get-NetIPAddress — Stop on error

Run the command with terminating error handling. Base task: List IP addresses configured on the computer.

try { Get-NetIPAddress -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetIPAddress — Save transcript output

Capture the command and console output in a transcript log. Base task: List IP addresses configured on the computer.

Start-Transcript -Path .\command-session.log; Get-NetIPAddress; Stop-Transcript
Open →
PowerShell
Get-NetIPAddress — Select common properties

Return all available object properties for inspection. Base task: List IP addresses configured on the computer.

Get-NetIPAddress | Select-Object *
Open →
PowerShell
Get-NetIPAddress — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List IP addresses configured on the computer.

Get-NetIPAddress | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetIPAddress — Write results to text

Save formatted output to a UTF-8 text file. Base task: List IP addresses configured on the computer.

Get-NetIPAddress | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetIPConfiguration — Formatted details

Display all returned properties in a readable list. Base task: Display IP configuration for network adapters.

Get-NetIPConfiguration | Format-List *
Open →
PowerShell
Get-NetIPConfiguration — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display IP configuration for network adapters.

Get-NetIPConfiguration | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetIPConfiguration — Measure execution time

Measure how long the command takes to complete. Base task: Display IP configuration for network adapters.

Measure-Command { Get-NetIPConfiguration }
Open →
PowerShell
Get-NetIPConfiguration — Stop on error

Run the command with terminating error handling. Base task: Display IP configuration for network adapters.

try { Get-NetIPConfiguration -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetIPConfiguration — Save transcript output

Capture the command and console output in a transcript log. Base task: Display IP configuration for network adapters.

Start-Transcript -Path .\command-session.log; Get-NetIPConfiguration; Stop-Transcript
Open →
PowerShell
Get-NetIPConfiguration — Select common properties

Return all available object properties for inspection. Base task: Display IP configuration for network adapters.

Get-NetIPConfiguration | Select-Object *
Open →
PowerShell
Get-NetIPConfiguration — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display IP configuration for network adapters.

Get-NetIPConfiguration | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetIPConfiguration — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display IP configuration for network adapters.

Get-NetIPConfiguration | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetAdapter — Formatted details

Display all returned properties in a readable list. Base task: List network adapters and link state.

Get-NetAdapter | Format-List *
Open →
PowerShell
Get-NetAdapter — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List network adapters and link state.

Get-NetAdapter | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetAdapter — Measure execution time

Measure how long the command takes to complete. Base task: List network adapters and link state.

Measure-Command { Get-NetAdapter }
Open →
PowerShell
Get-NetAdapter — Stop on error

Run the command with terminating error handling. Base task: List network adapters and link state.

try { Get-NetAdapter -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetAdapter — Save transcript output

Capture the command and console output in a transcript log. Base task: List network adapters and link state.

Start-Transcript -Path .\command-session.log; Get-NetAdapter; Stop-Transcript
Open →
PowerShell
Get-NetAdapter — Select common properties

Return all available object properties for inspection. Base task: List network adapters and link state.

Get-NetAdapter | Select-Object *
Open →
PowerShell
Get-NetAdapter — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List network adapters and link state.

Get-NetAdapter | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetAdapter — Write results to text

Save formatted output to a UTF-8 text file. Base task: List network adapters and link state.

Get-NetAdapter | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Restart-NetAdapter — Formatted details

Display all returned properties in a readable list. Base task: Restart a network adapter.

Restart-NetAdapter -Name Ethernet | Format-List *
Open →
PowerShell
Restart-NetAdapter — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Restart a network adapter.

Restart-NetAdapter -Name Ethernet | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Restart-NetAdapter — Measure execution time

Measure how long the command takes to complete. Base task: Restart a network adapter.

Measure-Command { Restart-NetAdapter -Name Ethernet }
Open →
PowerShell
Restart-NetAdapter — Stop on error

Run the command with terminating error handling. Base task: Restart a network adapter.

try { Restart-NetAdapter -Name Ethernet -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Restart-NetAdapter — Save transcript output

Capture the command and console output in a transcript log. Base task: Restart a network adapter.

Start-Transcript -Path .\command-session.log; Restart-NetAdapter -Name Ethernet; Stop-Transcript
Open →
PowerShell
Restart-NetAdapter — Select common properties

Return all available object properties for inspection. Base task: Restart a network adapter.

Restart-NetAdapter -Name Ethernet | Select-Object *
Open →
PowerShell
Restart-NetAdapter — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Restart a network adapter.

Restart-NetAdapter -Name Ethernet | ConvertTo-Json -Depth 6
Open →
PowerShell
Restart-NetAdapter — Write results to text

Save formatted output to a UTF-8 text file. Base task: Restart a network adapter.

Restart-NetAdapter -Name Ethernet | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetRoute — Formatted details

Display all returned properties in a readable list. Base task: List routes in the Windows routing table.

Get-NetRoute | Format-List *
Open →
PowerShell
Get-NetRoute — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List routes in the Windows routing table.

Get-NetRoute | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetRoute — Measure execution time

Measure how long the command takes to complete. Base task: List routes in the Windows routing table.

Measure-Command { Get-NetRoute }
Open →
PowerShell
Get-NetRoute — Stop on error

Run the command with terminating error handling. Base task: List routes in the Windows routing table.

try { Get-NetRoute -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetRoute — Save transcript output

Capture the command and console output in a transcript log. Base task: List routes in the Windows routing table.

Start-Transcript -Path .\command-session.log; Get-NetRoute; Stop-Transcript
Open →
PowerShell
Get-NetRoute — Select common properties

Return all available object properties for inspection. Base task: List routes in the Windows routing table.

Get-NetRoute | Select-Object *
Open →
PowerShell
Get-NetRoute — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List routes in the Windows routing table.

Get-NetRoute | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetRoute — Write results to text

Save formatted output to a UTF-8 text file. Base task: List routes in the Windows routing table.

Get-NetRoute | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetTCPConnection — Formatted details

Display all returned properties in a readable list. Base task: List listening TCP connections.

Get-NetTCPConnection -State Listen | Format-List *
Open →
PowerShell
Get-NetTCPConnection — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List listening TCP connections.

Get-NetTCPConnection -State Listen | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetTCPConnection — Measure execution time

Measure how long the command takes to complete. Base task: List listening TCP connections.

Measure-Command { Get-NetTCPConnection -State Listen }
Open →
PowerShell
Get-NetTCPConnection — Stop on error

Run the command with terminating error handling. Base task: List listening TCP connections.

try { Get-NetTCPConnection -State Listen -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetTCPConnection — Save transcript output

Capture the command and console output in a transcript log. Base task: List listening TCP connections.

Start-Transcript -Path .\command-session.log; Get-NetTCPConnection -State Listen; Stop-Transcript
Open →
PowerShell
Get-NetTCPConnection — Select common properties

Return all available object properties for inspection. Base task: List listening TCP connections.

Get-NetTCPConnection -State Listen | Select-Object *
Open →
PowerShell
Get-NetTCPConnection — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List listening TCP connections.

Get-NetTCPConnection -State Listen | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetTCPConnection — Write results to text

Save formatted output to a UTF-8 text file. Base task: List listening TCP connections.

Get-NetTCPConnection -State Listen | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-DnsClientCache — Formatted details

Display all returned properties in a readable list. Base task: Display the Windows DNS client cache.

Get-DnsClientCache | Format-List *
Open →
PowerShell
Get-DnsClientCache — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display the Windows DNS client cache.

Get-DnsClientCache | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-DnsClientCache — Measure execution time

Measure how long the command takes to complete. Base task: Display the Windows DNS client cache.

Measure-Command { Get-DnsClientCache }
Open →
PowerShell
Get-DnsClientCache — Stop on error

Run the command with terminating error handling. Base task: Display the Windows DNS client cache.

try { Get-DnsClientCache -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-DnsClientCache — Save transcript output

Capture the command and console output in a transcript log. Base task: Display the Windows DNS client cache.

Start-Transcript -Path .\command-session.log; Get-DnsClientCache; Stop-Transcript
Open →
PowerShell
Get-DnsClientCache — Select common properties

Return all available object properties for inspection. Base task: Display the Windows DNS client cache.

Get-DnsClientCache | Select-Object *
Open →
PowerShell
Get-DnsClientCache — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display the Windows DNS client cache.

Get-DnsClientCache | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-DnsClientCache — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display the Windows DNS client cache.

Get-DnsClientCache | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Clear-DnsClientCache — Formatted details

Display all returned properties in a readable list. Base task: Clear the Windows DNS client cache.

Clear-DnsClientCache | Format-List *
Open →
PowerShell
Clear-DnsClientCache — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Clear the Windows DNS client cache.

Clear-DnsClientCache | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Clear-DnsClientCache — Measure execution time

Measure how long the command takes to complete. Base task: Clear the Windows DNS client cache.

Measure-Command { Clear-DnsClientCache }
Open →
PowerShell
Clear-DnsClientCache — Stop on error

Run the command with terminating error handling. Base task: Clear the Windows DNS client cache.

try { Clear-DnsClientCache -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Clear-DnsClientCache — Save transcript output

Capture the command and console output in a transcript log. Base task: Clear the Windows DNS client cache.

Start-Transcript -Path .\command-session.log; Clear-DnsClientCache; Stop-Transcript
Open →
PowerShell
Clear-DnsClientCache — Select common properties

Return all available object properties for inspection. Base task: Clear the Windows DNS client cache.

Clear-DnsClientCache | Select-Object *
Open →
PowerShell
Clear-DnsClientCache — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Clear the Windows DNS client cache.

Clear-DnsClientCache | ConvertTo-Json -Depth 6
Open →
PowerShell
Clear-DnsClientCache — Write results to text

Save formatted output to a UTF-8 text file. Base task: Clear the Windows DNS client cache.

Clear-DnsClientCache | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ChildItem — Formatted details

Display all returned properties in a readable list. Base task: List files and folders recursively.

Get-ChildItem C:\Logs -Recurse | Format-List *
Open →
PowerShell
Get-ChildItem — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List files and folders recursively.

Get-ChildItem C:\Logs -Recurse | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ChildItem — Measure execution time

Measure how long the command takes to complete. Base task: List files and folders recursively.

Measure-Command { Get-ChildItem C:\Logs -Recurse }
Open →
PowerShell
Get-ChildItem — Stop on error

Run the command with terminating error handling. Base task: List files and folders recursively.

try { Get-ChildItem C:\Logs -Recurse -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ChildItem — Save transcript output

Capture the command and console output in a transcript log. Base task: List files and folders recursively.

Start-Transcript -Path .\command-session.log; Get-ChildItem C:\Logs -Recurse; Stop-Transcript
Open →
PowerShell
Get-ChildItem — Select common properties

Return all available object properties for inspection. Base task: List files and folders recursively.

Get-ChildItem C:\Logs -Recurse | Select-Object *
Open →
PowerShell
Get-ChildItem — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List files and folders recursively.

Get-ChildItem C:\Logs -Recurse | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ChildItem — Write results to text

Save formatted output to a UTF-8 text file. Base task: List files and folders recursively.

Get-ChildItem C:\Logs -Recurse | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Copy-Item — Formatted details

Display all returned properties in a readable list. Base task: Copy files or folders.

Copy-Item C:\Source C:\Backup -Recurse | Format-List *
Open →
PowerShell
Copy-Item — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Copy files or folders.

Copy-Item C:\Source C:\Backup -Recurse | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Copy-Item — Measure execution time

Measure how long the command takes to complete. Base task: Copy files or folders.

Measure-Command { Copy-Item C:\Source C:\Backup -Recurse }
Open →
PowerShell
Copy-Item — Stop on error

Run the command with terminating error handling. Base task: Copy files or folders.

try { Copy-Item C:\Source C:\Backup -Recurse -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Copy-Item — Save transcript output

Capture the command and console output in a transcript log. Base task: Copy files or folders.

Start-Transcript -Path .\command-session.log; Copy-Item C:\Source C:\Backup -Recurse; Stop-Transcript
Open →
PowerShell
Copy-Item — Select common properties

Return all available object properties for inspection. Base task: Copy files or folders.

Copy-Item C:\Source C:\Backup -Recurse | Select-Object *
Open →
PowerShell
Copy-Item — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Copy files or folders.

Copy-Item C:\Source C:\Backup -Recurse | ConvertTo-Json -Depth 6
Open →
PowerShell
Copy-Item — Write results to text

Save formatted output to a UTF-8 text file. Base task: Copy files or folders.

Copy-Item C:\Source C:\Backup -Recurse | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Move-Item — Formatted details

Display all returned properties in a readable list. Base task: Move or rename a file or folder.

Move-Item C:\Old C:\New | Format-List *
Open →
PowerShell
Move-Item — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Move or rename a file or folder.

Move-Item C:\Old C:\New | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Move-Item — Measure execution time

Measure how long the command takes to complete. Base task: Move or rename a file or folder.

Measure-Command { Move-Item C:\Old C:\New }
Open →
PowerShell
Move-Item — Stop on error

Run the command with terminating error handling. Base task: Move or rename a file or folder.

try { Move-Item C:\Old C:\New -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Move-Item — Save transcript output

Capture the command and console output in a transcript log. Base task: Move or rename a file or folder.

Start-Transcript -Path .\command-session.log; Move-Item C:\Old C:\New; Stop-Transcript
Open →
PowerShell
Move-Item — Select common properties

Return all available object properties for inspection. Base task: Move or rename a file or folder.

Move-Item C:\Old C:\New | Select-Object *
Open →
PowerShell
Move-Item — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Move or rename a file or folder.

Move-Item C:\Old C:\New | ConvertTo-Json -Depth 6
Open →
PowerShell
Move-Item — Write results to text

Save formatted output to a UTF-8 text file. Base task: Move or rename a file or folder.

Move-Item C:\Old C:\New | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Remove-Item — Formatted details

Display all returned properties in a readable list. Base task: Delete a file.

Remove-Item C:\Temp\old.log -Force | Format-List *
Open →
PowerShell
Remove-Item — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Delete a file.

Remove-Item C:\Temp\old.log -Force | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Remove-Item — Measure execution time

Measure how long the command takes to complete. Base task: Delete a file.

Measure-Command { Remove-Item C:\Temp\old.log -Force }
Open →
PowerShell
Remove-Item — Stop on error

Run the command with terminating error handling. Base task: Delete a file.

try { Remove-Item C:\Temp\old.log -Force -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Remove-Item — Save transcript output

Capture the command and console output in a transcript log. Base task: Delete a file.

Start-Transcript -Path .\command-session.log; Remove-Item C:\Temp\old.log -Force; Stop-Transcript
Open →
PowerShell
Remove-Item — Select common properties

Return all available object properties for inspection. Base task: Delete a file.

Remove-Item C:\Temp\old.log -Force | Select-Object *
Open →
PowerShell
Remove-Item — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Delete a file.

Remove-Item C:\Temp\old.log -Force | ConvertTo-Json -Depth 6
Open →
PowerShell
Remove-Item — Write results to text

Save formatted output to a UTF-8 text file. Base task: Delete a file.

Remove-Item C:\Temp\old.log -Force | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-Item — Formatted details

Display all returned properties in a readable list. Base task: Create a directory.

New-Item -ItemType Directory -Path C:\Reports | Format-List *
Open →
PowerShell
New-Item — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Create a directory.

New-Item -ItemType Directory -Path C:\Reports | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-Item — Measure execution time

Measure how long the command takes to complete. Base task: Create a directory.

Measure-Command { New-Item -ItemType Directory -Path C:\Reports }
Open →
PowerShell
New-Item — Stop on error

Run the command with terminating error handling. Base task: Create a directory.

try { New-Item -ItemType Directory -Path C:\Reports -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-Item — Save transcript output

Capture the command and console output in a transcript log. Base task: Create a directory.

Start-Transcript -Path .\command-session.log; New-Item -ItemType Directory -Path C:\Reports; Stop-Transcript
Open →
PowerShell
New-Item — Select common properties

Return all available object properties for inspection. Base task: Create a directory.

New-Item -ItemType Directory -Path C:\Reports | Select-Object *
Open →
PowerShell
New-Item — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Create a directory.

New-Item -ItemType Directory -Path C:\Reports | ConvertTo-Json -Depth 6
Open →
PowerShell
New-Item — Write results to text

Save formatted output to a UTF-8 text file. Base task: Create a directory.

New-Item -ItemType Directory -Path C:\Reports | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Content — Formatted details

Display all returned properties in a readable list. Base task: Read the last 100 lines of a file.

Get-Content C:\Logs\app.log -Tail 100 | Format-List *
Open →
PowerShell
Get-Content — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Read the last 100 lines of a file.

Get-Content C:\Logs\app.log -Tail 100 | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Content — Measure execution time

Measure how long the command takes to complete. Base task: Read the last 100 lines of a file.

Measure-Command { Get-Content C:\Logs\app.log -Tail 100 }
Open →
PowerShell
Get-Content — Stop on error

Run the command with terminating error handling. Base task: Read the last 100 lines of a file.

try { Get-Content C:\Logs\app.log -Tail 100 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Content — Save transcript output

Capture the command and console output in a transcript log. Base task: Read the last 100 lines of a file.

Start-Transcript -Path .\command-session.log; Get-Content C:\Logs\app.log -Tail 100; Stop-Transcript
Open →
PowerShell
Get-Content — Select common properties

Return all available object properties for inspection. Base task: Read the last 100 lines of a file.

Get-Content C:\Logs\app.log -Tail 100 | Select-Object *
Open →
PowerShell
Get-Content — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Read the last 100 lines of a file.

Get-Content C:\Logs\app.log -Tail 100 | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Content — Write results to text

Save formatted output to a UTF-8 text file. Base task: Read the last 100 lines of a file.

Get-Content C:\Logs\app.log -Tail 100 | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-Content — Formatted details

Display all returned properties in a readable list. Base task: Write text to a file.

Set-Content C:\Temp\status.txt "OK" | Format-List *
Open →
PowerShell
Set-Content — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Write text to a file.

Set-Content C:\Temp\status.txt "OK" | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-Content — Measure execution time

Measure how long the command takes to complete. Base task: Write text to a file.

Measure-Command { Set-Content C:\Temp\status.txt "OK" }
Open →
PowerShell
Set-Content — Stop on error

Run the command with terminating error handling. Base task: Write text to a file.

try { Set-Content C:\Temp\status.txt "OK" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-Content — Save transcript output

Capture the command and console output in a transcript log. Base task: Write text to a file.

Start-Transcript -Path .\command-session.log; Set-Content C:\Temp\status.txt "OK"; Stop-Transcript
Open →
PowerShell
Set-Content — Select common properties

Return all available object properties for inspection. Base task: Write text to a file.

Set-Content C:\Temp\status.txt "OK" | Select-Object *
Open →
PowerShell
Set-Content — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Write text to a file.

Set-Content C:\Temp\status.txt "OK" | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-Content — Write results to text

Save formatted output to a UTF-8 text file. Base task: Write text to a file.

Set-Content C:\Temp\status.txt "OK" | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-Content — Formatted details

Display all returned properties in a readable list. Base task: Append text to a file.

Add-Content C:\Temp\status.txt "Completed" | Format-List *
Open →
PowerShell
Add-Content — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Append text to a file.

Add-Content C:\Temp\status.txt "Completed" | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-Content — Measure execution time

Measure how long the command takes to complete. Base task: Append text to a file.

Measure-Command { Add-Content C:\Temp\status.txt "Completed" }
Open →
PowerShell
Add-Content — Stop on error

Run the command with terminating error handling. Base task: Append text to a file.

try { Add-Content C:\Temp\status.txt "Completed" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-Content — Save transcript output

Capture the command and console output in a transcript log. Base task: Append text to a file.

Start-Transcript -Path .\command-session.log; Add-Content C:\Temp\status.txt "Completed"; Stop-Transcript
Open →
PowerShell
Add-Content — Select common properties

Return all available object properties for inspection. Base task: Append text to a file.

Add-Content C:\Temp\status.txt "Completed" | Select-Object *
Open →
PowerShell
Add-Content — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Append text to a file.

Add-Content C:\Temp\status.txt "Completed" | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-Content — Write results to text

Save formatted output to a UTF-8 text file. Base task: Append text to a file.

Add-Content C:\Temp\status.txt "Completed" | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Select-String — Formatted details

Display all returned properties in a readable list. Base task: Search text files for a pattern.

Select-String -Path C:\Logs\*.log -Pattern "error" | Format-List *
Open →
PowerShell
Select-String — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Search text files for a pattern.

Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Select-String — Measure execution time

Measure how long the command takes to complete. Base task: Search text files for a pattern.

Measure-Command { Select-String -Path C:\Logs\*.log -Pattern "error" }
Open →
PowerShell
Select-String — Stop on error

Run the command with terminating error handling. Base task: Search text files for a pattern.

try { Select-String -Path C:\Logs\*.log -Pattern "error" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Select-String — Save transcript output

Capture the command and console output in a transcript log. Base task: Search text files for a pattern.

Start-Transcript -Path .\command-session.log; Select-String -Path C:\Logs\*.log -Pattern "error"; Stop-Transcript
Open →
PowerShell
Select-String — Select common properties

Return all available object properties for inspection. Base task: Search text files for a pattern.

Select-String -Path C:\Logs\*.log -Pattern "error" | Select-Object *
Open →
PowerShell
Select-String — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Search text files for a pattern.

Select-String -Path C:\Logs\*.log -Pattern "error" | ConvertTo-Json -Depth 6
Open →
PowerShell
Select-String — Write results to text

Save formatted output to a UTF-8 text file. Base task: Search text files for a pattern.

Select-String -Path C:\Logs\*.log -Pattern "error" | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Export-Csv — Formatted details

Display all returned properties in a readable list. Base task: Export objects to a CSV file.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Export-Csv — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export objects to a CSV file.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Export-Csv — Measure execution time

Measure how long the command takes to complete. Base task: Export objects to a CSV file.

Measure-Command { Get-Process | Export-Csv processes.csv -NoTypeInformation }
Open →
PowerShell
Export-Csv — Stop on error

Run the command with terminating error handling. Base task: Export objects to a CSV file.

try { Get-Process | Export-Csv processes.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Export-Csv — Save transcript output

Capture the command and console output in a transcript log. Base task: Export objects to a CSV file.

Start-Transcript -Path .\command-session.log; Get-Process | Export-Csv processes.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Export-Csv — Select common properties

Return all available object properties for inspection. Base task: Export objects to a CSV file.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Export-Csv — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export objects to a CSV file.

Get-Process | Export-Csv processes.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Export-Csv — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export objects to a CSV file.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Import-Csv — Formatted details

Display all returned properties in a readable list. Base task: Import rows from a CSV file.

Import-Csv users.csv | Format-List *
Open →
PowerShell
Import-Csv — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Import rows from a CSV file.

Import-Csv users.csv | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Import-Csv — Measure execution time

Measure how long the command takes to complete. Base task: Import rows from a CSV file.

Measure-Command { Import-Csv users.csv }
Open →
PowerShell
Import-Csv — Stop on error

Run the command with terminating error handling. Base task: Import rows from a CSV file.

try { Import-Csv users.csv -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Import-Csv — Save transcript output

Capture the command and console output in a transcript log. Base task: Import rows from a CSV file.

Start-Transcript -Path .\command-session.log; Import-Csv users.csv; Stop-Transcript
Open →
PowerShell
Import-Csv — Select common properties

Return all available object properties for inspection. Base task: Import rows from a CSV file.

Import-Csv users.csv | Select-Object *
Open →
PowerShell
Import-Csv — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Import rows from a CSV file.

Import-Csv users.csv | ConvertTo-Json -Depth 6
Open →
PowerShell
Import-Csv — Write results to text

Save formatted output to a UTF-8 text file. Base task: Import rows from a CSV file.

Import-Csv users.csv | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
ConvertTo-Json — Formatted details

Display all returned properties in a readable list. Base task: Convert PowerShell objects to JSON.

Get-Service | ConvertTo-Json -Depth 3 | Format-List *
Open →
PowerShell
ConvertTo-Json — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Convert PowerShell objects to JSON.

Get-Service | ConvertTo-Json -Depth 3 | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
ConvertTo-Json — Measure execution time

Measure how long the command takes to complete. Base task: Convert PowerShell objects to JSON.

Measure-Command { Get-Service | ConvertTo-Json -Depth 3 }
Open →
PowerShell
ConvertTo-Json — Stop on error

Run the command with terminating error handling. Base task: Convert PowerShell objects to JSON.

try { Get-Service | ConvertTo-Json -Depth 3 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
ConvertTo-Json — Save transcript output

Capture the command and console output in a transcript log. Base task: Convert PowerShell objects to JSON.

Start-Transcript -Path .\command-session.log; Get-Service | ConvertTo-Json -Depth 3; Stop-Transcript
Open →
PowerShell
ConvertTo-Json — Select common properties

Return all available object properties for inspection. Base task: Convert PowerShell objects to JSON.

Get-Service | ConvertTo-Json -Depth 3 | Select-Object *
Open →
PowerShell
ConvertTo-Json — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Convert PowerShell objects to JSON.

Get-Service | ConvertTo-Json -Depth 3 | ConvertTo-Json -Depth 6
Open →
PowerShell
ConvertTo-Json — Write results to text

Save formatted output to a UTF-8 text file. Base task: Convert PowerShell objects to JSON.

Get-Service | ConvertTo-Json -Depth 3 | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Invoke-RestMethod — Formatted details

Display all returned properties in a readable list. Base task: Call a REST endpoint and parse its response.

Invoke-RestMethod https://api.example.com/status | Format-List *
Open →
PowerShell
Invoke-RestMethod — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Call a REST endpoint and parse its response.

Invoke-RestMethod https://api.example.com/status | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Invoke-RestMethod — Measure execution time

Measure how long the command takes to complete. Base task: Call a REST endpoint and parse its response.

Measure-Command { Invoke-RestMethod https://api.example.com/status }
Open →
PowerShell
Invoke-RestMethod — Stop on error

Run the command with terminating error handling. Base task: Call a REST endpoint and parse its response.

try { Invoke-RestMethod https://api.example.com/status -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Invoke-RestMethod — Save transcript output

Capture the command and console output in a transcript log. Base task: Call a REST endpoint and parse its response.

Start-Transcript -Path .\command-session.log; Invoke-RestMethod https://api.example.com/status; Stop-Transcript
Open →
PowerShell
Invoke-RestMethod — Select common properties

Return all available object properties for inspection. Base task: Call a REST endpoint and parse its response.

Invoke-RestMethod https://api.example.com/status | Select-Object *
Open →
PowerShell
Invoke-RestMethod — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Call a REST endpoint and parse its response.

Invoke-RestMethod https://api.example.com/status | ConvertTo-Json -Depth 6
Open →
PowerShell
Invoke-RestMethod — Write results to text

Save formatted output to a UTF-8 text file. Base task: Call a REST endpoint and parse its response.

Invoke-RestMethod https://api.example.com/status | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Invoke-WebRequest — Formatted details

Display all returned properties in a readable list. Base task: Send an HTTP request and return the web response.

Invoke-WebRequest https://example.com | Format-List *
Open →
PowerShell
Invoke-WebRequest — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Send an HTTP request and return the web response.

Invoke-WebRequest https://example.com | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Invoke-WebRequest — Measure execution time

Measure how long the command takes to complete. Base task: Send an HTTP request and return the web response.

Measure-Command { Invoke-WebRequest https://example.com }
Open →
PowerShell
Invoke-WebRequest — Stop on error

Run the command with terminating error handling. Base task: Send an HTTP request and return the web response.

try { Invoke-WebRequest https://example.com -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Invoke-WebRequest — Save transcript output

Capture the command and console output in a transcript log. Base task: Send an HTTP request and return the web response.

Start-Transcript -Path .\command-session.log; Invoke-WebRequest https://example.com; Stop-Transcript
Open →
PowerShell
Invoke-WebRequest — Select common properties

Return all available object properties for inspection. Base task: Send an HTTP request and return the web response.

Invoke-WebRequest https://example.com | Select-Object *
Open →
PowerShell
Invoke-WebRequest — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Send an HTTP request and return the web response.

Invoke-WebRequest https://example.com | ConvertTo-Json -Depth 6
Open →
PowerShell
Invoke-WebRequest — Write results to text

Save formatted output to a UTF-8 text file. Base task: Send an HTTP request and return the web response.

Invoke-WebRequest https://example.com | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ScheduledTask — Formatted details

Display all returned properties in a readable list. Base task: List Windows scheduled tasks.

Get-ScheduledTask | Format-List *
Open →
PowerShell
Get-ScheduledTask — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List Windows scheduled tasks.

Get-ScheduledTask | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ScheduledTask — Measure execution time

Measure how long the command takes to complete. Base task: List Windows scheduled tasks.

Measure-Command { Get-ScheduledTask }
Open →
PowerShell
Get-ScheduledTask — Stop on error

Run the command with terminating error handling. Base task: List Windows scheduled tasks.

try { Get-ScheduledTask -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ScheduledTask — Save transcript output

Capture the command and console output in a transcript log. Base task: List Windows scheduled tasks.

Start-Transcript -Path .\command-session.log; Get-ScheduledTask; Stop-Transcript
Open →
PowerShell
Get-ScheduledTask — Select common properties

Return all available object properties for inspection. Base task: List Windows scheduled tasks.

Get-ScheduledTask | Select-Object *
Open →
PowerShell
Get-ScheduledTask — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List Windows scheduled tasks.

Get-ScheduledTask | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ScheduledTask — Write results to text

Save formatted output to a UTF-8 text file. Base task: List Windows scheduled tasks.

Get-ScheduledTask | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-ScheduledTask — Formatted details

Display all returned properties in a readable list. Base task: Start a Windows scheduled task.

Start-ScheduledTask -TaskName "Daily Backup" | Format-List *
Open →
PowerShell
Start-ScheduledTask — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Start a Windows scheduled task.

Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-ScheduledTask — Measure execution time

Measure how long the command takes to complete. Base task: Start a Windows scheduled task.

Measure-Command { Start-ScheduledTask -TaskName "Daily Backup" }
Open →
PowerShell
Start-ScheduledTask — Stop on error

Run the command with terminating error handling. Base task: Start a Windows scheduled task.

try { Start-ScheduledTask -TaskName "Daily Backup" -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-ScheduledTask — Save transcript output

Capture the command and console output in a transcript log. Base task: Start a Windows scheduled task.

Start-Transcript -Path .\command-session.log; Start-ScheduledTask -TaskName "Daily Backup"; Stop-Transcript
Open →
PowerShell
Start-ScheduledTask — Select common properties

Return all available object properties for inspection. Base task: Start a Windows scheduled task.

Start-ScheduledTask -TaskName "Daily Backup" | Select-Object *
Open →
PowerShell
Start-ScheduledTask — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Start a Windows scheduled task.

Start-ScheduledTask -TaskName "Daily Backup" | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-ScheduledTask — Write results to text

Save formatted output to a UTF-8 text file. Base task: Start a Windows scheduled task.

Start-ScheduledTask -TaskName "Daily Backup" | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-LocalUser — Formatted details

Display all returned properties in a readable list. Base task: List local user accounts.

Get-LocalUser | Format-List *
Open →
PowerShell
Get-LocalUser — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List local user accounts.

Get-LocalUser | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-LocalUser — Measure execution time

Measure how long the command takes to complete. Base task: List local user accounts.

Measure-Command { Get-LocalUser }
Open →
PowerShell
Get-LocalUser — Stop on error

Run the command with terminating error handling. Base task: List local user accounts.

try { Get-LocalUser -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-LocalUser — Save transcript output

Capture the command and console output in a transcript log. Base task: List local user accounts.

Start-Transcript -Path .\command-session.log; Get-LocalUser; Stop-Transcript
Open →
PowerShell
Get-LocalUser — Select common properties

Return all available object properties for inspection. Base task: List local user accounts.

Get-LocalUser | Select-Object *
Open →
PowerShell
Get-LocalUser — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List local user accounts.

Get-LocalUser | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-LocalUser — Write results to text

Save formatted output to a UTF-8 text file. Base task: List local user accounts.

Get-LocalUser | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-LocalUser — Formatted details

Display all returned properties in a readable list. Base task: Create a local user account.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Format-List *
Open →
PowerShell
New-LocalUser — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Create a local user account.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-LocalUser — Measure execution time

Measure how long the command takes to complete. Base task: Create a local user account.

Measure-Command { New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) }
Open →
PowerShell
New-LocalUser — Stop on error

Run the command with terminating error handling. Base task: Create a local user account.

try { New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-LocalUser — Save transcript output

Capture the command and console output in a transcript log. Base task: Create a local user account.

Start-Transcript -Path .\command-session.log; New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString); Stop-Transcript
Open →
PowerShell
New-LocalUser — Select common properties

Return all available object properties for inspection. Base task: Create a local user account.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Select-Object *
Open →
PowerShell
New-LocalUser — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Create a local user account.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | ConvertTo-Json -Depth 6
Open →
PowerShell
New-LocalUser — Write results to text

Save formatted output to a UTF-8 text file. Base task: Create a local user account.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-LocalGroupMember — Formatted details

Display all returned properties in a readable list. Base task: List members of a local group.

Get-LocalGroupMember Administrators | Format-List *
Open →
PowerShell
Get-LocalGroupMember — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List members of a local group.

Get-LocalGroupMember Administrators | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-LocalGroupMember — Measure execution time

Measure how long the command takes to complete. Base task: List members of a local group.

Measure-Command { Get-LocalGroupMember Administrators }
Open →
PowerShell
Get-LocalGroupMember — Stop on error

Run the command with terminating error handling. Base task: List members of a local group.

try { Get-LocalGroupMember Administrators -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-LocalGroupMember — Save transcript output

Capture the command and console output in a transcript log. Base task: List members of a local group.

Start-Transcript -Path .\command-session.log; Get-LocalGroupMember Administrators; Stop-Transcript
Open →
PowerShell
Get-LocalGroupMember — Select common properties

Return all available object properties for inspection. Base task: List members of a local group.

Get-LocalGroupMember Administrators | Select-Object *
Open →
PowerShell
Get-LocalGroupMember — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List members of a local group.

Get-LocalGroupMember Administrators | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-LocalGroupMember — Write results to text

Save formatted output to a UTF-8 text file. Base task: List members of a local group.

Get-LocalGroupMember Administrators | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-LocalGroupMember — Formatted details

Display all returned properties in a readable list. Base task: Add a member to a local group.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Format-List *
Open →
PowerShell
Add-LocalGroupMember — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Add a member to a local group.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-LocalGroupMember — Measure execution time

Measure how long the command takes to complete. Base task: Add a member to a local group.

Measure-Command { Add-LocalGroupMember -Group Administrators -Member helpdesk }
Open →
PowerShell
Add-LocalGroupMember — Stop on error

Run the command with terminating error handling. Base task: Add a member to a local group.

try { Add-LocalGroupMember -Group Administrators -Member helpdesk -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-LocalGroupMember — Save transcript output

Capture the command and console output in a transcript log. Base task: Add a member to a local group.

Start-Transcript -Path .\command-session.log; Add-LocalGroupMember -Group Administrators -Member helpdesk; Stop-Transcript
Open →
PowerShell
Add-LocalGroupMember — Select common properties

Return all available object properties for inspection. Base task: Add a member to a local group.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Select-Object *
Open →
PowerShell
Add-LocalGroupMember — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Add a member to a local group.

Add-LocalGroupMember -Group Administrators -Member helpdesk | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-LocalGroupMember — Write results to text

Save formatted output to a UTF-8 text file. Base task: Add a member to a local group.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-HotFix — Formatted details

Display all returned properties in a readable list. Base task: List installed Windows updates.

Get-HotFix | Format-List *
Open →
PowerShell
Get-HotFix — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List installed Windows updates.

Get-HotFix | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-HotFix — Measure execution time

Measure how long the command takes to complete. Base task: List installed Windows updates.

Measure-Command { Get-HotFix }
Open →
PowerShell
Get-HotFix — Stop on error

Run the command with terminating error handling. Base task: List installed Windows updates.

try { Get-HotFix -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-HotFix — Save transcript output

Capture the command and console output in a transcript log. Base task: List installed Windows updates.

Start-Transcript -Path .\command-session.log; Get-HotFix; Stop-Transcript
Open →
PowerShell
Get-HotFix — Select common properties

Return all available object properties for inspection. Base task: List installed Windows updates.

Get-HotFix | Select-Object *
Open →
PowerShell
Get-HotFix — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List installed Windows updates.

Get-HotFix | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-HotFix — Write results to text

Save formatted output to a UTF-8 text file. Base task: List installed Windows updates.

Get-HotFix | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-WindowsOptionalFeature — Formatted details

Display all returned properties in a readable list. Base task: List Windows optional features.

Get-WindowsOptionalFeature -Online | Format-List *
Open →
PowerShell
Get-WindowsOptionalFeature — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List Windows optional features.

Get-WindowsOptionalFeature -Online | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-WindowsOptionalFeature — Measure execution time

Measure how long the command takes to complete. Base task: List Windows optional features.

Measure-Command { Get-WindowsOptionalFeature -Online }
Open →
PowerShell
Get-WindowsOptionalFeature — Stop on error

Run the command with terminating error handling. Base task: List Windows optional features.

try { Get-WindowsOptionalFeature -Online -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-WindowsOptionalFeature — Save transcript output

Capture the command and console output in a transcript log. Base task: List Windows optional features.

Start-Transcript -Path .\command-session.log; Get-WindowsOptionalFeature -Online; Stop-Transcript
Open →
PowerShell
Get-WindowsOptionalFeature — Select common properties

Return all available object properties for inspection. Base task: List Windows optional features.

Get-WindowsOptionalFeature -Online | Select-Object *
Open →
PowerShell
Get-WindowsOptionalFeature — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List Windows optional features.

Get-WindowsOptionalFeature -Online | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-WindowsOptionalFeature — Write results to text

Save formatted output to a UTF-8 text file. Base task: List Windows optional features.

Get-WindowsOptionalFeature -Online | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Enable-WindowsOptionalFeature — Formatted details

Display all returned properties in a readable list. Base task: Enable a Windows optional feature.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Format-List *
Open →
PowerShell
Enable-WindowsOptionalFeature — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Enable a Windows optional feature.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Enable-WindowsOptionalFeature — Measure execution time

Measure how long the command takes to complete. Base task: Enable a Windows optional feature.

Measure-Command { Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole }
Open →
PowerShell
Enable-WindowsOptionalFeature — Stop on error

Run the command with terminating error handling. Base task: Enable a Windows optional feature.

try { Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Enable-WindowsOptionalFeature — Save transcript output

Capture the command and console output in a transcript log. Base task: Enable a Windows optional feature.

Start-Transcript -Path .\command-session.log; Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole; Stop-Transcript
Open →
PowerShell
Enable-WindowsOptionalFeature — Select common properties

Return all available object properties for inspection. Base task: Enable a Windows optional feature.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Select-Object *
Open →
PowerShell
Enable-WindowsOptionalFeature — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Enable a Windows optional feature.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | ConvertTo-Json -Depth 6
Open →
PowerShell
Enable-WindowsOptionalFeature — Write results to text

Save formatted output to a UTF-8 text file. Base task: Enable a Windows optional feature.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Volume — Formatted details

Display all returned properties in a readable list. Base task: List storage volumes.

Get-Volume | Format-List *
Open →
PowerShell
Get-Volume — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List storage volumes.

Get-Volume | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Volume — Measure execution time

Measure how long the command takes to complete. Base task: List storage volumes.

Measure-Command { Get-Volume }
Open →
PowerShell
Get-Volume — Stop on error

Run the command with terminating error handling. Base task: List storage volumes.

try { Get-Volume -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Volume — Save transcript output

Capture the command and console output in a transcript log. Base task: List storage volumes.

Start-Transcript -Path .\command-session.log; Get-Volume; Stop-Transcript
Open →
PowerShell
Get-Volume — Select common properties

Return all available object properties for inspection. Base task: List storage volumes.

Get-Volume | Select-Object *
Open →
PowerShell
Get-Volume — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List storage volumes.

Get-Volume | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Volume — Write results to text

Save formatted output to a UTF-8 text file. Base task: List storage volumes.

Get-Volume | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Disk — Formatted details

Display all returned properties in a readable list. Base task: List physical disks.

Get-Disk | Format-List *
Open →
PowerShell
Get-Disk — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List physical disks.

Get-Disk | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Disk — Measure execution time

Measure how long the command takes to complete. Base task: List physical disks.

Measure-Command { Get-Disk }
Open →
PowerShell
Get-Disk — Stop on error

Run the command with terminating error handling. Base task: List physical disks.

try { Get-Disk -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Disk — Save transcript output

Capture the command and console output in a transcript log. Base task: List physical disks.

Start-Transcript -Path .\command-session.log; Get-Disk; Stop-Transcript
Open →
PowerShell
Get-Disk — Select common properties

Return all available object properties for inspection. Base task: List physical disks.

Get-Disk | Select-Object *
Open →
PowerShell
Get-Disk — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List physical disks.

Get-Disk | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Disk — Write results to text

Save formatted output to a UTF-8 text file. Base task: List physical disks.

Get-Disk | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Partition — Formatted details

Display all returned properties in a readable list. Base task: List disk partitions.

Get-Partition | Format-List *
Open →
PowerShell
Get-Partition — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List disk partitions.

Get-Partition | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Partition — Measure execution time

Measure how long the command takes to complete. Base task: List disk partitions.

Measure-Command { Get-Partition }
Open →
PowerShell
Get-Partition — Stop on error

Run the command with terminating error handling. Base task: List disk partitions.

try { Get-Partition -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Partition — Save transcript output

Capture the command and console output in a transcript log. Base task: List disk partitions.

Start-Transcript -Path .\command-session.log; Get-Partition; Stop-Transcript
Open →
PowerShell
Get-Partition — Select common properties

Return all available object properties for inspection. Base task: List disk partitions.

Get-Partition | Select-Object *
Open →
PowerShell
Get-Partition — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List disk partitions.

Get-Partition | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Partition — Write results to text

Save formatted output to a UTF-8 text file. Base task: List disk partitions.

Get-Partition | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-SmbShare — Formatted details

Display all returned properties in a readable list. Base task: List SMB shares.

Get-SmbShare | Format-List *
Open →
PowerShell
Get-SmbShare — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List SMB shares.

Get-SmbShare | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-SmbShare — Measure execution time

Measure how long the command takes to complete. Base task: List SMB shares.

Measure-Command { Get-SmbShare }
Open →
PowerShell
Get-SmbShare — Stop on error

Run the command with terminating error handling. Base task: List SMB shares.

try { Get-SmbShare -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-SmbShare — Save transcript output

Capture the command and console output in a transcript log. Base task: List SMB shares.

Start-Transcript -Path .\command-session.log; Get-SmbShare; Stop-Transcript
Open →
PowerShell
Get-SmbShare — Select common properties

Return all available object properties for inspection. Base task: List SMB shares.

Get-SmbShare | Select-Object *
Open →
PowerShell
Get-SmbShare — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List SMB shares.

Get-SmbShare | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-SmbShare — Write results to text

Save formatted output to a UTF-8 text file. Base task: List SMB shares.

Get-SmbShare | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-SmbShare — Formatted details

Display all returned properties in a readable list. Base task: Create an SMB share.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Format-List *
Open →
PowerShell
New-SmbShare — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Create an SMB share.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-SmbShare — Measure execution time

Measure how long the command takes to complete. Base task: Create an SMB share.

Measure-Command { New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators }
Open →
PowerShell
New-SmbShare — Stop on error

Run the command with terminating error handling. Base task: Create an SMB share.

try { New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-SmbShare — Save transcript output

Capture the command and console output in a transcript log. Base task: Create an SMB share.

Start-Transcript -Path .\command-session.log; New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators; Stop-Transcript
Open →
PowerShell
New-SmbShare — Select common properties

Return all available object properties for inspection. Base task: Create an SMB share.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Select-Object *
Open →
PowerShell
New-SmbShare — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Create an SMB share.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | ConvertTo-Json -Depth 6
Open →
PowerShell
New-SmbShare — Write results to text

Save formatted output to a UTF-8 text file. Base task: Create an SMB share.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-FileHash — Formatted details

Display all returned properties in a readable list. Base task: Calculate a file hash.

Get-FileHash .\installer.exe -Algorithm SHA256 | Format-List *
Open →
PowerShell
Get-FileHash — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Calculate a file hash.

Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-FileHash — Measure execution time

Measure how long the command takes to complete. Base task: Calculate a file hash.

Measure-Command { Get-FileHash .\installer.exe -Algorithm SHA256 }
Open →
PowerShell
Get-FileHash — Stop on error

Run the command with terminating error handling. Base task: Calculate a file hash.

try { Get-FileHash .\installer.exe -Algorithm SHA256 -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-FileHash — Save transcript output

Capture the command and console output in a transcript log. Base task: Calculate a file hash.

Start-Transcript -Path .\command-session.log; Get-FileHash .\installer.exe -Algorithm SHA256; Stop-Transcript
Open →
PowerShell
Get-FileHash — Select common properties

Return all available object properties for inspection. Base task: Calculate a file hash.

Get-FileHash .\installer.exe -Algorithm SHA256 | Select-Object *
Open →
PowerShell
Get-FileHash — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Calculate a file hash.

Get-FileHash .\installer.exe -Algorithm SHA256 | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-FileHash — Write results to text

Save formatted output to a UTF-8 text file. Base task: Calculate a file hash.

Get-FileHash .\installer.exe -Algorithm SHA256 | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Measure-Object — Formatted details

Display all returned properties in a readable list. Base task: Count objects or calculate totals.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Format-List *
Open →
PowerShell
Measure-Object — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Count objects or calculate totals.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Measure-Object — Measure execution time

Measure how long the command takes to complete. Base task: Count objects or calculate totals.

Measure-Command { Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum }
Open →
PowerShell
Measure-Object — Stop on error

Run the command with terminating error handling. Base task: Count objects or calculate totals.

try { Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Measure-Object — Save transcript output

Capture the command and console output in a transcript log. Base task: Count objects or calculate totals.

Start-Transcript -Path .\command-session.log; Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum; Stop-Transcript
Open →
PowerShell
Measure-Object — Select common properties

Return all available object properties for inspection. Base task: Count objects or calculate totals.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Select-Object *
Open →
PowerShell
Measure-Object — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Count objects or calculate totals.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | ConvertTo-Json -Depth 6
Open →
PowerShell
Measure-Object — Write results to text

Save formatted output to a UTF-8 text file. Base task: Count objects or calculate totals.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Where-Object — Formatted details

Display all returned properties in a readable list. Base task: Filter pipeline objects.

Get-Service | Where-Object Status -eq Running | Format-List *
Open →
PowerShell
Where-Object — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Filter pipeline objects.

Get-Service | Where-Object Status -eq Running | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Where-Object — Measure execution time

Measure how long the command takes to complete. Base task: Filter pipeline objects.

Measure-Command { Get-Service | Where-Object Status -eq Running }
Open →
PowerShell
Where-Object — Stop on error

Run the command with terminating error handling. Base task: Filter pipeline objects.

try { Get-Service | Where-Object Status -eq Running -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Where-Object — Save transcript output

Capture the command and console output in a transcript log. Base task: Filter pipeline objects.

Start-Transcript -Path .\command-session.log; Get-Service | Where-Object Status -eq Running; Stop-Transcript
Open →
PowerShell
Where-Object — Select common properties

Return all available object properties for inspection. Base task: Filter pipeline objects.

Get-Service | Where-Object Status -eq Running | Select-Object *
Open →
PowerShell
Where-Object — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Filter pipeline objects.

Get-Service | Where-Object Status -eq Running | ConvertTo-Json -Depth 6
Open →
PowerShell
Where-Object — Write results to text

Save formatted output to a UTF-8 text file. Base task: Filter pipeline objects.

Get-Service | Where-Object Status -eq Running | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Sort-Object — Formatted details

Display all returned properties in a readable list. Base task: Sort objects by a property.

Get-Process | Sort-Object CPU -Descending | Format-List *
Open →
PowerShell
Sort-Object — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Sort objects by a property.

Get-Process | Sort-Object CPU -Descending | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Sort-Object — Measure execution time

Measure how long the command takes to complete. Base task: Sort objects by a property.

Measure-Command { Get-Process | Sort-Object CPU -Descending }
Open →
PowerShell
Sort-Object — Stop on error

Run the command with terminating error handling. Base task: Sort objects by a property.

try { Get-Process | Sort-Object CPU -Descending -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Sort-Object — Save transcript output

Capture the command and console output in a transcript log. Base task: Sort objects by a property.

Start-Transcript -Path .\command-session.log; Get-Process | Sort-Object CPU -Descending; Stop-Transcript
Open →
PowerShell
Sort-Object — Select common properties

Return all available object properties for inspection. Base task: Sort objects by a property.

Get-Process | Sort-Object CPU -Descending | Select-Object *
Open →
PowerShell
Sort-Object — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Sort objects by a property.

Get-Process | Sort-Object CPU -Descending | ConvertTo-Json -Depth 6
Open →
PowerShell
Sort-Object — Write results to text

Save formatted output to a UTF-8 text file. Base task: Sort objects by a property.

Get-Process | Sort-Object CPU -Descending | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Select-Object — Formatted details

Display all returned properties in a readable list. Base task: Choose properties from objects.

Get-Process | Select-Object Name,Id,CPU | Format-List *
Open →
PowerShell
Select-Object — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Choose properties from objects.

Get-Process | Select-Object Name,Id,CPU | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Select-Object — Measure execution time

Measure how long the command takes to complete. Base task: Choose properties from objects.

Measure-Command { Get-Process | Select-Object Name,Id,CPU }
Open →
PowerShell
Select-Object — Stop on error

Run the command with terminating error handling. Base task: Choose properties from objects.

try { Get-Process | Select-Object Name,Id,CPU -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Select-Object — Save transcript output

Capture the command and console output in a transcript log. Base task: Choose properties from objects.

Start-Transcript -Path .\command-session.log; Get-Process | Select-Object Name,Id,CPU; Stop-Transcript
Open →
PowerShell
Select-Object — Select common properties

Return all available object properties for inspection. Base task: Choose properties from objects.

Get-Process | Select-Object Name,Id,CPU | Select-Object *
Open →
PowerShell
Select-Object — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Choose properties from objects.

Get-Process | Select-Object Name,Id,CPU | ConvertTo-Json -Depth 6
Open →
PowerShell
Select-Object — Write results to text

Save formatted output to a UTF-8 text file. Base task: Choose properties from objects.

Get-Process | Select-Object Name,Id,CPU | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
ForEach-Object — Formatted details

Display all returned properties in a readable list. Base task: Run an action for each pipeline object.

Get-Service | ForEach-Object { $_.Name } | Format-List *
Open →
PowerShell
ForEach-Object — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Run an action for each pipeline object.

Get-Service | ForEach-Object { $_.Name } | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
ForEach-Object — Measure execution time

Measure how long the command takes to complete. Base task: Run an action for each pipeline object.

Measure-Command { Get-Service | ForEach-Object { $_.Name } }
Open →
PowerShell
ForEach-Object — Stop on error

Run the command with terminating error handling. Base task: Run an action for each pipeline object.

try { Get-Service | ForEach-Object { $_.Name } -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
ForEach-Object — Save transcript output

Capture the command and console output in a transcript log. Base task: Run an action for each pipeline object.

Start-Transcript -Path .\command-session.log; Get-Service | ForEach-Object { $_.Name }; Stop-Transcript
Open →
PowerShell
ForEach-Object — Select common properties

Return all available object properties for inspection. Base task: Run an action for each pipeline object.

Get-Service | ForEach-Object { $_.Name } | Select-Object *
Open →
PowerShell
ForEach-Object — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Run an action for each pipeline object.

Get-Service | ForEach-Object { $_.Name } | ConvertTo-Json -Depth 6
Open →
PowerShell
ForEach-Object — Write results to text

Save formatted output to a UTF-8 text file. Base task: Run an action for each pipeline object.

Get-Service | ForEach-Object { $_.Name } | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-Transcript — Formatted details

Display all returned properties in a readable list. Base task: Record a PowerShell session to a text file.

Start-Transcript -Path C:\Logs\session.txt | Format-List *
Open →
PowerShell
Start-Transcript — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Record a PowerShell session to a text file.

Start-Transcript -Path C:\Logs\session.txt | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-Transcript — Measure execution time

Measure how long the command takes to complete. Base task: Record a PowerShell session to a text file.

Measure-Command { Start-Transcript -Path C:\Logs\session.txt }
Open →
PowerShell
Start-Transcript — Stop on error

Run the command with terminating error handling. Base task: Record a PowerShell session to a text file.

try { Start-Transcript -Path C:\Logs\session.txt -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-Transcript — Save transcript output

Capture the command and console output in a transcript log. Base task: Record a PowerShell session to a text file.

Start-Transcript -Path .\command-session.log; Start-Transcript -Path C:\Logs\session.txt; Stop-Transcript
Open →
PowerShell
Start-Transcript — Select common properties

Return all available object properties for inspection. Base task: Record a PowerShell session to a text file.

Start-Transcript -Path C:\Logs\session.txt | Select-Object *
Open →
PowerShell
Start-Transcript — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Record a PowerShell session to a text file.

Start-Transcript -Path C:\Logs\session.txt | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-Transcript — Write results to text

Save formatted output to a UTF-8 text file. Base task: Record a PowerShell session to a text file.

Start-Transcript -Path C:\Logs\session.txt | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ExecutionPolicy — Formatted details

Display all returned properties in a readable list. Base task: Display PowerShell execution policies.

Get-ExecutionPolicy -List | Format-List *
Open →
PowerShell
Get-ExecutionPolicy — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display PowerShell execution policies.

Get-ExecutionPolicy -List | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ExecutionPolicy — Measure execution time

Measure how long the command takes to complete. Base task: Display PowerShell execution policies.

Measure-Command { Get-ExecutionPolicy -List }
Open →
PowerShell
Get-ExecutionPolicy — Stop on error

Run the command with terminating error handling. Base task: Display PowerShell execution policies.

try { Get-ExecutionPolicy -List -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ExecutionPolicy — Save transcript output

Capture the command and console output in a transcript log. Base task: Display PowerShell execution policies.

Start-Transcript -Path .\command-session.log; Get-ExecutionPolicy -List; Stop-Transcript
Open →
PowerShell
Get-ExecutionPolicy — Select common properties

Return all available object properties for inspection. Base task: Display PowerShell execution policies.

Get-ExecutionPolicy -List | Select-Object *
Open →
PowerShell
Get-ExecutionPolicy — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display PowerShell execution policies.

Get-ExecutionPolicy -List | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ExecutionPolicy — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display PowerShell execution policies.

Get-ExecutionPolicy -List | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ExecutionPolicy — Formatted details

Display all returned properties in a readable list. Base task: Set the PowerShell execution policy for a scope.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Format-List *
Open →
PowerShell
Set-ExecutionPolicy — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Set the PowerShell execution policy for a scope.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ExecutionPolicy — Measure execution time

Measure how long the command takes to complete. Base task: Set the PowerShell execution policy for a scope.

Measure-Command { Set-ExecutionPolicy RemoteSigned -Scope CurrentUser }
Open →
PowerShell
Set-ExecutionPolicy — Stop on error

Run the command with terminating error handling. Base task: Set the PowerShell execution policy for a scope.

try { Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ExecutionPolicy — Save transcript output

Capture the command and console output in a transcript log. Base task: Set the PowerShell execution policy for a scope.

Start-Transcript -Path .\command-session.log; Set-ExecutionPolicy RemoteSigned -Scope CurrentUser; Stop-Transcript
Open →
PowerShell
Set-ExecutionPolicy — Select common properties

Return all available object properties for inspection. Base task: Set the PowerShell execution policy for a scope.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Select-Object *
Open →
PowerShell
Set-ExecutionPolicy — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Set the PowerShell execution policy for a scope.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ExecutionPolicy — Write results to text

Save formatted output to a UTF-8 text file. Base task: Set the PowerShell execution policy for a scope.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Module — Formatted details

Display all returned properties in a readable list. Base task: List installed PowerShell modules.

Get-Module -ListAvailable | Format-List *
Open →
PowerShell
Get-Module — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: List installed PowerShell modules.

Get-Module -ListAvailable | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Module — Measure execution time

Measure how long the command takes to complete. Base task: List installed PowerShell modules.

Measure-Command { Get-Module -ListAvailable }
Open →
PowerShell
Get-Module — Stop on error

Run the command with terminating error handling. Base task: List installed PowerShell modules.

try { Get-Module -ListAvailable -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Module — Save transcript output

Capture the command and console output in a transcript log. Base task: List installed PowerShell modules.

Start-Transcript -Path .\command-session.log; Get-Module -ListAvailable; Stop-Transcript
Open →
PowerShell
Get-Module — Select common properties

Return all available object properties for inspection. Base task: List installed PowerShell modules.

Get-Module -ListAvailable | Select-Object *
Open →
PowerShell
Get-Module — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: List installed PowerShell modules.

Get-Module -ListAvailable | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Module — Write results to text

Save formatted output to a UTF-8 text file. Base task: List installed PowerShell modules.

Get-Module -ListAvailable | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Install-Module — Formatted details

Display all returned properties in a readable list. Base task: Install a module from PowerShell Gallery.

Install-Module Microsoft.Graph -Scope CurrentUser | Format-List *
Open →
PowerShell
Install-Module — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Install a module from PowerShell Gallery.

Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Install-Module — Measure execution time

Measure how long the command takes to complete. Base task: Install a module from PowerShell Gallery.

Measure-Command { Install-Module Microsoft.Graph -Scope CurrentUser }
Open →
PowerShell
Install-Module — Stop on error

Run the command with terminating error handling. Base task: Install a module from PowerShell Gallery.

try { Install-Module Microsoft.Graph -Scope CurrentUser -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Install-Module — Save transcript output

Capture the command and console output in a transcript log. Base task: Install a module from PowerShell Gallery.

Start-Transcript -Path .\command-session.log; Install-Module Microsoft.Graph -Scope CurrentUser; Stop-Transcript
Open →
PowerShell
Install-Module — Select common properties

Return all available object properties for inspection. Base task: Install a module from PowerShell Gallery.

Install-Module Microsoft.Graph -Scope CurrentUser | Select-Object *
Open →
PowerShell
Install-Module — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Install a module from PowerShell Gallery.

Install-Module Microsoft.Graph -Scope CurrentUser | ConvertTo-Json -Depth 6
Open →
PowerShell
Install-Module — Write results to text

Save formatted output to a UTF-8 text file. Base task: Install a module from PowerShell Gallery.

Install-Module Microsoft.Graph -Scope CurrentUser | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Update-Module — Formatted details

Display all returned properties in a readable list. Base task: Update an installed PowerShell module.

Update-Module Microsoft.Graph | Format-List *
Open →
PowerShell
Update-Module — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Update an installed PowerShell module.

Update-Module Microsoft.Graph | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Update-Module — Measure execution time

Measure how long the command takes to complete. Base task: Update an installed PowerShell module.

Measure-Command { Update-Module Microsoft.Graph }
Open →
PowerShell
Update-Module — Stop on error

Run the command with terminating error handling. Base task: Update an installed PowerShell module.

try { Update-Module Microsoft.Graph -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Update-Module — Save transcript output

Capture the command and console output in a transcript log. Base task: Update an installed PowerShell module.

Start-Transcript -Path .\command-session.log; Update-Module Microsoft.Graph; Stop-Transcript
Open →
PowerShell
Update-Module — Select common properties

Return all available object properties for inspection. Base task: Update an installed PowerShell module.

Update-Module Microsoft.Graph | Select-Object *
Open →
PowerShell
Update-Module — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Update an installed PowerShell module.

Update-Module Microsoft.Graph | ConvertTo-Json -Depth 6
Open →
PowerShell
Update-Module — Write results to text

Save formatted output to a UTF-8 text file. Base task: Update an installed PowerShell module.

Update-Module Microsoft.Graph | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Help — Formatted details

Display all returned properties in a readable list. Base task: Display command help and examples.

Get-Help Get-Service -Examples | Format-List *
Open →
PowerShell
Get-Help — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display command help and examples.

Get-Help Get-Service -Examples | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Help — Measure execution time

Measure how long the command takes to complete. Base task: Display command help and examples.

Measure-Command { Get-Help Get-Service -Examples }
Open →
PowerShell
Get-Help — Stop on error

Run the command with terminating error handling. Base task: Display command help and examples.

try { Get-Help Get-Service -Examples -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Help — Save transcript output

Capture the command and console output in a transcript log. Base task: Display command help and examples.

Start-Transcript -Path .\command-session.log; Get-Help Get-Service -Examples; Stop-Transcript
Open →
PowerShell
Get-Help — Select common properties

Return all available object properties for inspection. Base task: Display command help and examples.

Get-Help Get-Service -Examples | Select-Object *
Open →
PowerShell
Get-Help — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display command help and examples.

Get-Help Get-Service -Examples | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Help — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display command help and examples.

Get-Help Get-Service -Examples | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Service — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-Service for documentation or review.

Get-Service | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-Service — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-Service for documentation or review.

Get-Service | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Service — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-Service for documentation or review.

Measure-Command { Get-Service | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-Service — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-Service for documentation or review.

try { Get-Service | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Service — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-Service for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Service | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-Service — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-Service for documentation or review.

Get-Service | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-Service — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-Service for documentation or review.

Get-Service | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Service — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-Service for documentation or review.

Get-Service | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-Service — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Start-Service for documentation or review.

Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Start-Service — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Start-Service for documentation or review.

Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-Service — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Start-Service for documentation or review.

Measure-Command { Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Start-Service — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Start-Service for documentation or review.

try { Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-Service — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Start-Service for documentation or review.

Start-Transcript -Path .\command-session.log; Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Start-Service — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Start-Service for documentation or review.

Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Start-Service — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Start-Service for documentation or review.

Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-Service — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Start-Service for documentation or review.

Start-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Stop-Service — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Stop-Service for documentation or review.

Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Stop-Service — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Stop-Service for documentation or review.

Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Stop-Service — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Stop-Service for documentation or review.

Measure-Command { Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Stop-Service — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Stop-Service for documentation or review.

try { Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Stop-Service — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Stop-Service for documentation or review.

Start-Transcript -Path .\command-session.log; Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Stop-Service — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Stop-Service for documentation or review.

Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Stop-Service — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Stop-Service for documentation or review.

Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Stop-Service — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Stop-Service for documentation or review.

Stop-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Restart-Service — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Restart-Service for documentation or review.

Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Restart-Service — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Restart-Service for documentation or review.

Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Restart-Service — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Restart-Service for documentation or review.

Measure-Command { Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Restart-Service — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Restart-Service for documentation or review.

try { Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Restart-Service — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Restart-Service for documentation or review.

Start-Transcript -Path .\command-session.log; Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Restart-Service — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Restart-Service for documentation or review.

Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Restart-Service — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Restart-Service for documentation or review.

Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Restart-Service — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Restart-Service for documentation or review.

Restart-Service -Name Spooler | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Process — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-Process for documentation or review.

Get-Process | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-Process — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-Process for documentation or review.

Get-Process | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Process — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-Process for documentation or review.

Measure-Command { Get-Process | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-Process — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-Process for documentation or review.

try { Get-Process | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Process — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-Process for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Process | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-Process — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-Process for documentation or review.

Get-Process | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-Process — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-Process for documentation or review.

Get-Process | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Process — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-Process for documentation or review.

Get-Process | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Stop-Process — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Stop-Process for documentation or review.

Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Stop-Process — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Stop-Process for documentation or review.

Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Stop-Process — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Stop-Process for documentation or review.

Measure-Command { Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Stop-Process — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Stop-Process for documentation or review.

try { Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Stop-Process — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Stop-Process for documentation or review.

Start-Transcript -Path .\command-session.log; Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Stop-Process — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Stop-Process for documentation or review.

Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Stop-Process — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Stop-Process for documentation or review.

Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Stop-Process — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Stop-Process for documentation or review.

Stop-Process -Name notepad | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-EventLog — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-EventLog for documentation or review.

Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-EventLog — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-EventLog for documentation or review.

Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-EventLog — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-EventLog for documentation or review.

Measure-Command { Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-EventLog — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-EventLog for documentation or review.

try { Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-EventLog — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-EventLog for documentation or review.

Start-Transcript -Path .\command-session.log; Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-EventLog — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-EventLog for documentation or review.

Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-EventLog — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-EventLog for documentation or review.

Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-EventLog — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-EventLog for documentation or review.

Get-EventLog -LogName System -Newest 50 | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-WinEvent — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-WinEvent for documentation or review.

Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-WinEvent — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-WinEvent for documentation or review.

Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-WinEvent — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-WinEvent for documentation or review.

Measure-Command { Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-WinEvent — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-WinEvent for documentation or review.

try { Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-WinEvent — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-WinEvent for documentation or review.

Start-Transcript -Path .\command-session.log; Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-WinEvent — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-WinEvent for documentation or review.

Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-WinEvent — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-WinEvent for documentation or review.

Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-WinEvent — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-WinEvent for documentation or review.

Get-WinEvent -LogName System -MaxEvents 50 | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ComputerInfo — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ComputerInfo for documentation or review.

Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ComputerInfo — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ComputerInfo for documentation or review.

Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ComputerInfo — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ComputerInfo for documentation or review.

Measure-Command { Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ComputerInfo — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ComputerInfo for documentation or review.

try { Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ComputerInfo — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ComputerInfo for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ComputerInfo — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ComputerInfo for documentation or review.

Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ComputerInfo — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ComputerInfo for documentation or review.

Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ComputerInfo — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ComputerInfo for documentation or review.

Get-ComputerInfo | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-CimInstance — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-CimInstance for documentation or review.

Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-CimInstance — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-CimInstance for documentation or review.

Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-CimInstance — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-CimInstance for documentation or review.

Measure-Command { Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-CimInstance — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-CimInstance for documentation or review.

try { Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-CimInstance — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-CimInstance for documentation or review.

Start-Transcript -Path .\command-session.log; Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-CimInstance — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-CimInstance for documentation or review.

Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-CimInstance — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-CimInstance for documentation or review.

Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-CimInstance — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-CimInstance for documentation or review.

Get-CimInstance Win32_OperatingSystem | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Test-Connection — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Test-Connection for documentation or review.

Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Test-Connection — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Test-Connection for documentation or review.

Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Test-Connection — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Test-Connection for documentation or review.

Measure-Command { Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Test-Connection — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Test-Connection for documentation or review.

try { Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Test-Connection — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Test-Connection for documentation or review.

Start-Transcript -Path .\command-session.log; Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Test-Connection — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Test-Connection for documentation or review.

Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Test-Connection — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Test-Connection for documentation or review.

Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Test-Connection — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Test-Connection for documentation or review.

Test-Connection server01 -Count 4 | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Test-NetConnection — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Test-NetConnection for documentation or review.

Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Test-NetConnection — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Test-NetConnection for documentation or review.

Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Test-NetConnection — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Test-NetConnection for documentation or review.

Measure-Command { Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Test-NetConnection — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Test-NetConnection for documentation or review.

try { Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Test-NetConnection — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Test-NetConnection for documentation or review.

Start-Transcript -Path .\command-session.log; Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Test-NetConnection — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Test-NetConnection for documentation or review.

Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Test-NetConnection — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Test-NetConnection for documentation or review.

Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Test-NetConnection — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Test-NetConnection for documentation or review.

Test-NetConnection server01 -Port 443 | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Resolve-DnsName — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Resolve-DnsName for documentation or review.

Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Resolve-DnsName — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Resolve-DnsName for documentation or review.

Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Resolve-DnsName — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Resolve-DnsName for documentation or review.

Measure-Command { Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Resolve-DnsName — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Resolve-DnsName for documentation or review.

try { Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Resolve-DnsName — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Resolve-DnsName for documentation or review.

Start-Transcript -Path .\command-session.log; Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Resolve-DnsName — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Resolve-DnsName for documentation or review.

Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Resolve-DnsName — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Resolve-DnsName for documentation or review.

Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Resolve-DnsName — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Resolve-DnsName for documentation or review.

Resolve-DnsName example.com | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetIPAddress — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-NetIPAddress for documentation or review.

Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-NetIPAddress — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-NetIPAddress for documentation or review.

Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetIPAddress — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-NetIPAddress for documentation or review.

Measure-Command { Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-NetIPAddress — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-NetIPAddress for documentation or review.

try { Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetIPAddress — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-NetIPAddress for documentation or review.

Start-Transcript -Path .\command-session.log; Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-NetIPAddress — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-NetIPAddress for documentation or review.

Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-NetIPAddress — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-NetIPAddress for documentation or review.

Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetIPAddress — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-NetIPAddress for documentation or review.

Get-NetIPAddress | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetIPConfiguration — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-NetIPConfiguration for documentation or review.

Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-NetIPConfiguration — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-NetIPConfiguration for documentation or review.

Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetIPConfiguration — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-NetIPConfiguration for documentation or review.

Measure-Command { Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-NetIPConfiguration — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-NetIPConfiguration for documentation or review.

try { Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetIPConfiguration — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-NetIPConfiguration for documentation or review.

Start-Transcript -Path .\command-session.log; Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-NetIPConfiguration — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-NetIPConfiguration for documentation or review.

Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-NetIPConfiguration — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-NetIPConfiguration for documentation or review.

Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetIPConfiguration — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-NetIPConfiguration for documentation or review.

Get-NetIPConfiguration | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetAdapter — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-NetAdapter for documentation or review.

Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-NetAdapter — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-NetAdapter for documentation or review.

Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetAdapter — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-NetAdapter for documentation or review.

Measure-Command { Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-NetAdapter — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-NetAdapter for documentation or review.

try { Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetAdapter — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-NetAdapter for documentation or review.

Start-Transcript -Path .\command-session.log; Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-NetAdapter — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-NetAdapter for documentation or review.

Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-NetAdapter — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-NetAdapter for documentation or review.

Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetAdapter — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-NetAdapter for documentation or review.

Get-NetAdapter | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Restart-NetAdapter — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Restart-NetAdapter for documentation or review.

Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Restart-NetAdapter — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Restart-NetAdapter for documentation or review.

Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Restart-NetAdapter — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Restart-NetAdapter for documentation or review.

Measure-Command { Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Restart-NetAdapter — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Restart-NetAdapter for documentation or review.

try { Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Restart-NetAdapter — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Restart-NetAdapter for documentation or review.

Start-Transcript -Path .\command-session.log; Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Restart-NetAdapter — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Restart-NetAdapter for documentation or review.

Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Restart-NetAdapter — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Restart-NetAdapter for documentation or review.

Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Restart-NetAdapter — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Restart-NetAdapter for documentation or review.

Restart-NetAdapter -Name Ethernet | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetRoute — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-NetRoute for documentation or review.

Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-NetRoute — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-NetRoute for documentation or review.

Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetRoute — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-NetRoute for documentation or review.

Measure-Command { Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-NetRoute — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-NetRoute for documentation or review.

try { Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetRoute — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-NetRoute for documentation or review.

Start-Transcript -Path .\command-session.log; Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-NetRoute — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-NetRoute for documentation or review.

Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-NetRoute — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-NetRoute for documentation or review.

Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetRoute — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-NetRoute for documentation or review.

Get-NetRoute | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetTCPConnection — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-NetTCPConnection for documentation or review.

Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-NetTCPConnection — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-NetTCPConnection for documentation or review.

Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetTCPConnection — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-NetTCPConnection for documentation or review.

Measure-Command { Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-NetTCPConnection — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-NetTCPConnection for documentation or review.

try { Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetTCPConnection — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-NetTCPConnection for documentation or review.

Start-Transcript -Path .\command-session.log; Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-NetTCPConnection — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-NetTCPConnection for documentation or review.

Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-NetTCPConnection — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-NetTCPConnection for documentation or review.

Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetTCPConnection — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-NetTCPConnection for documentation or review.

Get-NetTCPConnection -State Listen | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-DnsClientCache — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-DnsClientCache for documentation or review.

Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-DnsClientCache — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-DnsClientCache for documentation or review.

Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-DnsClientCache — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-DnsClientCache for documentation or review.

Measure-Command { Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-DnsClientCache — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-DnsClientCache for documentation or review.

try { Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-DnsClientCache — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-DnsClientCache for documentation or review.

Start-Transcript -Path .\command-session.log; Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-DnsClientCache — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-DnsClientCache for documentation or review.

Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-DnsClientCache — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-DnsClientCache for documentation or review.

Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-DnsClientCache — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-DnsClientCache for documentation or review.

Get-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Clear-DnsClientCache — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Clear-DnsClientCache for documentation or review.

Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Clear-DnsClientCache — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Clear-DnsClientCache for documentation or review.

Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Clear-DnsClientCache — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Clear-DnsClientCache for documentation or review.

Measure-Command { Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Clear-DnsClientCache — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Clear-DnsClientCache for documentation or review.

try { Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Clear-DnsClientCache — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Clear-DnsClientCache for documentation or review.

Start-Transcript -Path .\command-session.log; Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Clear-DnsClientCache — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Clear-DnsClientCache for documentation or review.

Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Clear-DnsClientCache — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Clear-DnsClientCache for documentation or review.

Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Clear-DnsClientCache — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Clear-DnsClientCache for documentation or review.

Clear-DnsClientCache | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ChildItem — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ChildItem for documentation or review.

Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ChildItem — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ChildItem for documentation or review.

Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ChildItem — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ChildItem for documentation or review.

Measure-Command { Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ChildItem — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ChildItem for documentation or review.

try { Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ChildItem — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ChildItem for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ChildItem — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ChildItem for documentation or review.

Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ChildItem — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ChildItem for documentation or review.

Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ChildItem — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ChildItem for documentation or review.

Get-ChildItem C:\Logs -Recurse | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Copy-Item — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Copy-Item for documentation or review.

Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Copy-Item — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Copy-Item for documentation or review.

Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Copy-Item — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Copy-Item for documentation or review.

Measure-Command { Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Copy-Item — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Copy-Item for documentation or review.

try { Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Copy-Item — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Copy-Item for documentation or review.

Start-Transcript -Path .\command-session.log; Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Copy-Item — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Copy-Item for documentation or review.

Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Copy-Item — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Copy-Item for documentation or review.

Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Copy-Item — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Copy-Item for documentation or review.

Copy-Item C:\Source C:\Backup -Recurse | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Move-Item — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Move-Item for documentation or review.

Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Move-Item — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Move-Item for documentation or review.

Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Move-Item — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Move-Item for documentation or review.

Measure-Command { Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Move-Item — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Move-Item for documentation or review.

try { Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Move-Item — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Move-Item for documentation or review.

Start-Transcript -Path .\command-session.log; Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Move-Item — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Move-Item for documentation or review.

Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Move-Item — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Move-Item for documentation or review.

Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Move-Item — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Move-Item for documentation or review.

Move-Item C:\Old C:\New | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Remove-Item — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Remove-Item for documentation or review.

Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Remove-Item — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Remove-Item for documentation or review.

Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Remove-Item — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Remove-Item for documentation or review.

Measure-Command { Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Remove-Item — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Remove-Item for documentation or review.

try { Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Remove-Item — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Remove-Item for documentation or review.

Start-Transcript -Path .\command-session.log; Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Remove-Item — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Remove-Item for documentation or review.

Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Remove-Item — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Remove-Item for documentation or review.

Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Remove-Item — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Remove-Item for documentation or review.

Remove-Item C:\Temp\old.log -Force | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-Item — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of New-Item for documentation or review.

New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
New-Item — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of New-Item for documentation or review.

New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-Item — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of New-Item for documentation or review.

Measure-Command { New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
New-Item — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of New-Item for documentation or review.

try { New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-Item — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of New-Item for documentation or review.

Start-Transcript -Path .\command-session.log; New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
New-Item — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of New-Item for documentation or review.

New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
New-Item — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of New-Item for documentation or review.

New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
New-Item — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of New-Item for documentation or review.

New-Item -ItemType Directory -Path C:\Reports | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Content — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-Content for documentation or review.

Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-Content — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-Content for documentation or review.

Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Content — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-Content for documentation or review.

Measure-Command { Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-Content — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-Content for documentation or review.

try { Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Content — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-Content for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-Content — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-Content for documentation or review.

Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-Content — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-Content for documentation or review.

Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Content — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-Content for documentation or review.

Get-Content C:\Logs\app.log -Tail 100 | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-Content — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Set-Content for documentation or review.

Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Set-Content — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Set-Content for documentation or review.

Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-Content — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Set-Content for documentation or review.

Measure-Command { Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Set-Content — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Set-Content for documentation or review.

try { Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-Content — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Set-Content for documentation or review.

Start-Transcript -Path .\command-session.log; Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Set-Content — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Set-Content for documentation or review.

Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Set-Content — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Set-Content for documentation or review.

Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-Content — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Set-Content for documentation or review.

Set-Content C:\Temp\status.txt "OK" | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-Content — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Add-Content for documentation or review.

Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Add-Content — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Add-Content for documentation or review.

Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-Content — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Add-Content for documentation or review.

Measure-Command { Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Add-Content — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Add-Content for documentation or review.

try { Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-Content — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Add-Content for documentation or review.

Start-Transcript -Path .\command-session.log; Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Add-Content — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Add-Content for documentation or review.

Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Add-Content — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Add-Content for documentation or review.

Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-Content — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Add-Content for documentation or review.

Add-Content C:\Temp\status.txt "Completed" | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Select-String — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Select-String for documentation or review.

Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Select-String — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Select-String for documentation or review.

Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Select-String — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Select-String for documentation or review.

Measure-Command { Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Select-String — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Select-String for documentation or review.

try { Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Select-String — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Select-String for documentation or review.

Start-Transcript -Path .\command-session.log; Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Select-String — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Select-String for documentation or review.

Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Select-String — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Select-String for documentation or review.

Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Select-String — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Select-String for documentation or review.

Select-String -Path C:\Logs\*.log -Pattern "error" | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Export-Csv — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Export-Csv for documentation or review.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Export-Csv — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Export-Csv for documentation or review.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Export-Csv — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Export-Csv for documentation or review.

Measure-Command { Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Export-Csv — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Export-Csv for documentation or review.

try { Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Export-Csv — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Export-Csv for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Export-Csv — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Export-Csv for documentation or review.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Export-Csv — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Export-Csv for documentation or review.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Export-Csv — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Export-Csv for documentation or review.

Get-Process | Export-Csv processes.csv -NoTypeInformation | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Import-Csv — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Import-Csv for documentation or review.

Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Import-Csv — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Import-Csv for documentation or review.

Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Import-Csv — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Import-Csv for documentation or review.

Measure-Command { Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Import-Csv — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Import-Csv for documentation or review.

try { Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Import-Csv — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Import-Csv for documentation or review.

Start-Transcript -Path .\command-session.log; Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Import-Csv — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Import-Csv for documentation or review.

Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Import-Csv — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Import-Csv for documentation or review.

Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Import-Csv — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Import-Csv for documentation or review.

Import-Csv users.csv | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
ConvertTo-Json — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of ConvertTo-Json for documentation or review.

Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
ConvertTo-Json — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of ConvertTo-Json for documentation or review.

Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
ConvertTo-Json — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of ConvertTo-Json for documentation or review.

Measure-Command { Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
ConvertTo-Json — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of ConvertTo-Json for documentation or review.

try { Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
ConvertTo-Json — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of ConvertTo-Json for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
ConvertTo-Json — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of ConvertTo-Json for documentation or review.

Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
ConvertTo-Json — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of ConvertTo-Json for documentation or review.

Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
ConvertTo-Json — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of ConvertTo-Json for documentation or review.

Get-Service | ConvertTo-Json -Depth 3 | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Invoke-RestMethod — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Invoke-RestMethod for documentation or review.

Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Invoke-RestMethod — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Invoke-RestMethod for documentation or review.

Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Invoke-RestMethod — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Invoke-RestMethod for documentation or review.

Measure-Command { Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Invoke-RestMethod — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Invoke-RestMethod for documentation or review.

try { Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Invoke-RestMethod — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Invoke-RestMethod for documentation or review.

Start-Transcript -Path .\command-session.log; Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Invoke-RestMethod — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Invoke-RestMethod for documentation or review.

Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Invoke-RestMethod — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Invoke-RestMethod for documentation or review.

Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Invoke-RestMethod — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Invoke-RestMethod for documentation or review.

Invoke-RestMethod https://api.example.com/status | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Invoke-WebRequest — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Invoke-WebRequest for documentation or review.

Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Invoke-WebRequest — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Invoke-WebRequest for documentation or review.

Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Invoke-WebRequest — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Invoke-WebRequest for documentation or review.

Measure-Command { Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Invoke-WebRequest — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Invoke-WebRequest for documentation or review.

try { Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Invoke-WebRequest — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Invoke-WebRequest for documentation or review.

Start-Transcript -Path .\command-session.log; Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Invoke-WebRequest — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Invoke-WebRequest for documentation or review.

Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Invoke-WebRequest — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Invoke-WebRequest for documentation or review.

Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Invoke-WebRequest — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Invoke-WebRequest for documentation or review.

Invoke-WebRequest https://example.com | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ScheduledTask — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ScheduledTask for documentation or review.

Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ScheduledTask — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ScheduledTask for documentation or review.

Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ScheduledTask — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ScheduledTask for documentation or review.

Measure-Command { Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ScheduledTask — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ScheduledTask for documentation or review.

try { Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ScheduledTask — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ScheduledTask for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ScheduledTask — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ScheduledTask for documentation or review.

Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ScheduledTask — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ScheduledTask for documentation or review.

Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ScheduledTask — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ScheduledTask for documentation or review.

Get-ScheduledTask | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-ScheduledTask — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Start-ScheduledTask for documentation or review.

Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Start-ScheduledTask — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Start-ScheduledTask for documentation or review.

Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-ScheduledTask — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Start-ScheduledTask for documentation or review.

Measure-Command { Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Start-ScheduledTask — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Start-ScheduledTask for documentation or review.

try { Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-ScheduledTask — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Start-ScheduledTask for documentation or review.

Start-Transcript -Path .\command-session.log; Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Start-ScheduledTask — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Start-ScheduledTask for documentation or review.

Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Start-ScheduledTask — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Start-ScheduledTask for documentation or review.

Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-ScheduledTask — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Start-ScheduledTask for documentation or review.

Start-ScheduledTask -TaskName "Daily Backup" | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-LocalUser — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-LocalUser for documentation or review.

Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-LocalUser — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-LocalUser for documentation or review.

Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-LocalUser — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-LocalUser for documentation or review.

Measure-Command { Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-LocalUser — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-LocalUser for documentation or review.

try { Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-LocalUser — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-LocalUser for documentation or review.

Start-Transcript -Path .\command-session.log; Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-LocalUser — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-LocalUser for documentation or review.

Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-LocalUser — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-LocalUser for documentation or review.

Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-LocalUser — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-LocalUser for documentation or review.

Get-LocalUser | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-LocalUser — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of New-LocalUser for documentation or review.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
New-LocalUser — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of New-LocalUser for documentation or review.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-LocalUser — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of New-LocalUser for documentation or review.

Measure-Command { New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
New-LocalUser — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of New-LocalUser for documentation or review.

try { New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-LocalUser — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of New-LocalUser for documentation or review.

Start-Transcript -Path .\command-session.log; New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
New-LocalUser — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of New-LocalUser for documentation or review.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
New-LocalUser — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of New-LocalUser for documentation or review.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
New-LocalUser — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of New-LocalUser for documentation or review.

New-LocalUser -Name helpdesk -Password (Read-Host -AsSecureString) | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-LocalGroupMember — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-LocalGroupMember for documentation or review.

Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-LocalGroupMember — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-LocalGroupMember for documentation or review.

Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-LocalGroupMember — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-LocalGroupMember for documentation or review.

Measure-Command { Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-LocalGroupMember — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-LocalGroupMember for documentation or review.

try { Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-LocalGroupMember — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-LocalGroupMember for documentation or review.

Start-Transcript -Path .\command-session.log; Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-LocalGroupMember — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-LocalGroupMember for documentation or review.

Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-LocalGroupMember — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-LocalGroupMember for documentation or review.

Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-LocalGroupMember — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-LocalGroupMember for documentation or review.

Get-LocalGroupMember Administrators | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-LocalGroupMember — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Add-LocalGroupMember for documentation or review.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Add-LocalGroupMember — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Add-LocalGroupMember for documentation or review.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-LocalGroupMember — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Add-LocalGroupMember for documentation or review.

Measure-Command { Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Add-LocalGroupMember — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Add-LocalGroupMember for documentation or review.

try { Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-LocalGroupMember — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Add-LocalGroupMember for documentation or review.

Start-Transcript -Path .\command-session.log; Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Add-LocalGroupMember — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Add-LocalGroupMember for documentation or review.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Add-LocalGroupMember — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Add-LocalGroupMember for documentation or review.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-LocalGroupMember — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Add-LocalGroupMember for documentation or review.

Add-LocalGroupMember -Group Administrators -Member helpdesk | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-HotFix — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-HotFix for documentation or review.

Get-HotFix | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-HotFix — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-HotFix for documentation or review.

Get-HotFix | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-HotFix — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-HotFix for documentation or review.

Measure-Command { Get-HotFix | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-HotFix — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-HotFix for documentation or review.

try { Get-HotFix | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-HotFix — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-HotFix for documentation or review.

Start-Transcript -Path .\command-session.log; Get-HotFix | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-HotFix — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-HotFix for documentation or review.

Get-HotFix | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-HotFix — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-HotFix for documentation or review.

Get-HotFix | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-HotFix — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-HotFix for documentation or review.

Get-HotFix | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-WindowsOptionalFeature for documentation or review.

Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-WindowsOptionalFeature for documentation or review.

Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-WindowsOptionalFeature for documentation or review.

Measure-Command { Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-WindowsOptionalFeature for documentation or review.

try { Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-WindowsOptionalFeature for documentation or review.

Start-Transcript -Path .\command-session.log; Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-WindowsOptionalFeature for documentation or review.

Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-WindowsOptionalFeature for documentation or review.

Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-WindowsOptionalFeature — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-WindowsOptionalFeature for documentation or review.

Get-WindowsOptionalFeature -Online | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Enable-WindowsOptionalFeature for documentation or review.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Enable-WindowsOptionalFeature for documentation or review.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Enable-WindowsOptionalFeature for documentation or review.

Measure-Command { Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Enable-WindowsOptionalFeature for documentation or review.

try { Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Enable-WindowsOptionalFeature for documentation or review.

Start-Transcript -Path .\command-session.log; Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Enable-WindowsOptionalFeature for documentation or review.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Enable-WindowsOptionalFeature for documentation or review.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Enable-WindowsOptionalFeature — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Enable-WindowsOptionalFeature for documentation or review.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Volume — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-Volume for documentation or review.

Get-Volume | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-Volume — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-Volume for documentation or review.

Get-Volume | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Volume — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-Volume for documentation or review.

Measure-Command { Get-Volume | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-Volume — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-Volume for documentation or review.

try { Get-Volume | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Volume — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-Volume for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Volume | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-Volume — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-Volume for documentation or review.

Get-Volume | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-Volume — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-Volume for documentation or review.

Get-Volume | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Volume — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-Volume for documentation or review.

Get-Volume | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Disk — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-Disk for documentation or review.

Get-Disk | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-Disk — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-Disk for documentation or review.

Get-Disk | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Disk — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-Disk for documentation or review.

Measure-Command { Get-Disk | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-Disk — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-Disk for documentation or review.

try { Get-Disk | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Disk — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-Disk for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Disk | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-Disk — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-Disk for documentation or review.

Get-Disk | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-Disk — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-Disk for documentation or review.

Get-Disk | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Disk — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-Disk for documentation or review.

Get-Disk | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Partition — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-Partition for documentation or review.

Get-Partition | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-Partition — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-Partition for documentation or review.

Get-Partition | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Partition — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-Partition for documentation or review.

Measure-Command { Get-Partition | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-Partition — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-Partition for documentation or review.

try { Get-Partition | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Partition — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-Partition for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Partition | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-Partition — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-Partition for documentation or review.

Get-Partition | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-Partition — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-Partition for documentation or review.

Get-Partition | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Partition — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-Partition for documentation or review.

Get-Partition | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-SmbShare — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-SmbShare for documentation or review.

Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-SmbShare — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-SmbShare for documentation or review.

Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-SmbShare — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-SmbShare for documentation or review.

Measure-Command { Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-SmbShare — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-SmbShare for documentation or review.

try { Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-SmbShare — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-SmbShare for documentation or review.

Start-Transcript -Path .\command-session.log; Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-SmbShare — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-SmbShare for documentation or review.

Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-SmbShare — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-SmbShare for documentation or review.

Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-SmbShare — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-SmbShare for documentation or review.

Get-SmbShare | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-SmbShare — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of New-SmbShare for documentation or review.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
New-SmbShare — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of New-SmbShare for documentation or review.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-SmbShare — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of New-SmbShare for documentation or review.

Measure-Command { New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
New-SmbShare — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of New-SmbShare for documentation or review.

try { New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-SmbShare — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of New-SmbShare for documentation or review.

Start-Transcript -Path .\command-session.log; New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
New-SmbShare — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of New-SmbShare for documentation or review.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
New-SmbShare — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of New-SmbShare for documentation or review.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
New-SmbShare — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of New-SmbShare for documentation or review.

New-SmbShare -Name Data -Path D:\Data -FullAccess Administrators | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-FileHash — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-FileHash for documentation or review.

Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-FileHash — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-FileHash for documentation or review.

Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-FileHash — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-FileHash for documentation or review.

Measure-Command { Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-FileHash — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-FileHash for documentation or review.

try { Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-FileHash — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-FileHash for documentation or review.

Start-Transcript -Path .\command-session.log; Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-FileHash — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-FileHash for documentation or review.

Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-FileHash — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-FileHash for documentation or review.

Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-FileHash — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-FileHash for documentation or review.

Get-FileHash .\installer.exe -Algorithm SHA256 | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Measure-Object — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Measure-Object for documentation or review.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Measure-Object — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Measure-Object for documentation or review.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Measure-Object — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Measure-Object for documentation or review.

Measure-Command { Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Measure-Object — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Measure-Object for documentation or review.

try { Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Measure-Object — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Measure-Object for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Measure-Object — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Measure-Object for documentation or review.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Measure-Object — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Measure-Object for documentation or review.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Measure-Object — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Measure-Object for documentation or review.

Get-ChildItem C:\Logs | Measure-Object -Property Length -Sum | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Where-Object — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Where-Object for documentation or review.

Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Where-Object — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Where-Object for documentation or review.

Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Where-Object — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Where-Object for documentation or review.

Measure-Command { Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Where-Object — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Where-Object for documentation or review.

try { Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Where-Object — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Where-Object for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Where-Object — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Where-Object for documentation or review.

Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Where-Object — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Where-Object for documentation or review.

Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Where-Object — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Where-Object for documentation or review.

Get-Service | Where-Object Status -eq Running | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Sort-Object — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Sort-Object for documentation or review.

Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Sort-Object — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Sort-Object for documentation or review.

Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Sort-Object — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Sort-Object for documentation or review.

Measure-Command { Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Sort-Object — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Sort-Object for documentation or review.

try { Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Sort-Object — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Sort-Object for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Sort-Object — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Sort-Object for documentation or review.

Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Sort-Object — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Sort-Object for documentation or review.

Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Sort-Object — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Sort-Object for documentation or review.

Get-Process | Sort-Object CPU -Descending | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Select-Object — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Select-Object for documentation or review.

Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Select-Object — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Select-Object for documentation or review.

Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Select-Object — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Select-Object for documentation or review.

Measure-Command { Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Select-Object — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Select-Object for documentation or review.

try { Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Select-Object — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Select-Object for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Select-Object — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Select-Object for documentation or review.

Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Select-Object — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Select-Object for documentation or review.

Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Select-Object — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Select-Object for documentation or review.

Get-Process | Select-Object Name,Id,CPU | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
ForEach-Object — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of ForEach-Object for documentation or review.

Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
ForEach-Object — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of ForEach-Object for documentation or review.

Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
ForEach-Object — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of ForEach-Object for documentation or review.

Measure-Command { Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
ForEach-Object — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of ForEach-Object for documentation or review.

try { Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
ForEach-Object — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of ForEach-Object for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
ForEach-Object — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of ForEach-Object for documentation or review.

Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
ForEach-Object — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of ForEach-Object for documentation or review.

Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
ForEach-Object — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of ForEach-Object for documentation or review.

Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-Transcript — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Start-Transcript for documentation or review.

Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Start-Transcript — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Start-Transcript for documentation or review.

Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-Transcript — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Start-Transcript for documentation or review.

Measure-Command { Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Start-Transcript — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Start-Transcript for documentation or review.

try { Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-Transcript — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Start-Transcript for documentation or review.

Start-Transcript -Path .\command-session.log; Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Start-Transcript — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Start-Transcript for documentation or review.

Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Start-Transcript — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Start-Transcript for documentation or review.

Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-Transcript — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Start-Transcript for documentation or review.

Start-Transcript -Path C:\Logs\session.txt | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ExecutionPolicy — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-ExecutionPolicy for documentation or review.

Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-ExecutionPolicy — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-ExecutionPolicy for documentation or review.

Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ExecutionPolicy — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-ExecutionPolicy for documentation or review.

Measure-Command { Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-ExecutionPolicy — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-ExecutionPolicy for documentation or review.

try { Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ExecutionPolicy — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-ExecutionPolicy for documentation or review.

Start-Transcript -Path .\command-session.log; Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-ExecutionPolicy — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-ExecutionPolicy for documentation or review.

Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-ExecutionPolicy — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-ExecutionPolicy for documentation or review.

Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ExecutionPolicy — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-ExecutionPolicy for documentation or review.

Get-ExecutionPolicy -List | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ExecutionPolicy — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Set-ExecutionPolicy for documentation or review.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Set-ExecutionPolicy — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Set-ExecutionPolicy for documentation or review.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ExecutionPolicy — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Set-ExecutionPolicy for documentation or review.

Measure-Command { Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Set-ExecutionPolicy — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Set-ExecutionPolicy for documentation or review.

try { Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ExecutionPolicy — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Set-ExecutionPolicy for documentation or review.

Start-Transcript -Path .\command-session.log; Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Set-ExecutionPolicy — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Set-ExecutionPolicy for documentation or review.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Set-ExecutionPolicy — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Set-ExecutionPolicy for documentation or review.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ExecutionPolicy — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Set-ExecutionPolicy for documentation or review.

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Module — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-Module for documentation or review.

Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-Module — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-Module for documentation or review.

Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Module — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-Module for documentation or review.

Measure-Command { Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-Module — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-Module for documentation or review.

try { Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Module — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-Module for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-Module — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-Module for documentation or review.

Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-Module — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-Module for documentation or review.

Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Module — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-Module for documentation or review.

Get-Module -ListAvailable | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Install-Module — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Install-Module for documentation or review.

Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Install-Module — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Install-Module for documentation or review.

Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Install-Module — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Install-Module for documentation or review.

Measure-Command { Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Install-Module — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Install-Module for documentation or review.

try { Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Install-Module — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Install-Module for documentation or review.

Start-Transcript -Path .\command-session.log; Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Install-Module — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Install-Module for documentation or review.

Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Install-Module — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Install-Module for documentation or review.

Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Install-Module — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Install-Module for documentation or review.

Install-Module Microsoft.Graph -Scope CurrentUser | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Update-Module — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Update-Module for documentation or review.

Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Update-Module — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Update-Module for documentation or review.

Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Update-Module — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Update-Module for documentation or review.

Measure-Command { Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Update-Module — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Update-Module for documentation or review.

try { Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Update-Module — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Update-Module for documentation or review.

Start-Transcript -Path .\command-session.log; Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Update-Module — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Update-Module for documentation or review.

Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Update-Module — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Update-Module for documentation or review.

Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Update-Module — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Update-Module for documentation or review.

Update-Module Microsoft.Graph | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Help — Export Results — Formatted details

Display all returned properties in a readable list. Base task: Export the output of Get-Help for documentation or review.

Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation | Format-List *
Open →
PowerShell
Get-Help — Export Results — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Export the output of Get-Help for documentation or review.

Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Help — Export Results — Measure execution time

Measure how long the command takes to complete. Base task: Export the output of Get-Help for documentation or review.

Measure-Command { Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation }
Open →
PowerShell
Get-Help — Export Results — Stop on error

Run the command with terminating error handling. Base task: Export the output of Get-Help for documentation or review.

try { Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Help — Export Results — Save transcript output

Capture the command and console output in a transcript log. Base task: Export the output of Get-Help for documentation or review.

Start-Transcript -Path .\command-session.log; Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation; Stop-Transcript
Open →
PowerShell
Get-Help — Export Results — Select common properties

Return all available object properties for inspection. Base task: Export the output of Get-Help for documentation or review.

Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation | Select-Object *
Open →
PowerShell
Get-Help — Export Results — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Export the output of Get-Help for documentation or review.

Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Help — Export Results — Write results to text

Save formatted output to a UTF-8 text file. Base task: Export the output of Get-Help for documentation or review.

Get-Help Get-Service -Examples | Export-Csv .\output.csv -NoTypeInformation | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Service Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-Service.

Get-Help Get-Service -Full | Format-List *
Open →
PowerShell
Get-Service Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-Service.

Get-Help Get-Service -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Service Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-Service.

Measure-Command { Get-Help Get-Service -Full }
Open →
PowerShell
Get-Service Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-Service.

try { Get-Help Get-Service -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Service Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-Service.

Start-Transcript -Path .\command-session.log; Get-Help Get-Service -Full; Stop-Transcript
Open →
PowerShell
Get-Service Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-Service.

Get-Help Get-Service -Full | Select-Object *
Open →
PowerShell
Get-Service Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-Service.

Get-Help Get-Service -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Service Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-Service.

Get-Help Get-Service -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-Service Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Start-Service.

Get-Help Start-Service -Full | Format-List *
Open →
PowerShell
Start-Service Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Start-Service.

Get-Help Start-Service -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-Service Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Start-Service.

Measure-Command { Get-Help Start-Service -Full }
Open →
PowerShell
Start-Service Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Start-Service.

try { Get-Help Start-Service -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-Service Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Start-Service.

Start-Transcript -Path .\command-session.log; Get-Help Start-Service -Full; Stop-Transcript
Open →
PowerShell
Start-Service Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Start-Service.

Get-Help Start-Service -Full | Select-Object *
Open →
PowerShell
Start-Service Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Start-Service.

Get-Help Start-Service -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-Service Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Start-Service.

Get-Help Start-Service -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Stop-Service Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Stop-Service.

Get-Help Stop-Service -Full | Format-List *
Open →
PowerShell
Stop-Service Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Stop-Service.

Get-Help Stop-Service -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Stop-Service Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Stop-Service.

Measure-Command { Get-Help Stop-Service -Full }
Open →
PowerShell
Stop-Service Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Stop-Service.

try { Get-Help Stop-Service -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Stop-Service Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Stop-Service.

Start-Transcript -Path .\command-session.log; Get-Help Stop-Service -Full; Stop-Transcript
Open →
PowerShell
Stop-Service Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Stop-Service.

Get-Help Stop-Service -Full | Select-Object *
Open →
PowerShell
Stop-Service Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Stop-Service.

Get-Help Stop-Service -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Stop-Service Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Stop-Service.

Get-Help Stop-Service -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Restart-Service Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Restart-Service.

Get-Help Restart-Service -Full | Format-List *
Open →
PowerShell
Restart-Service Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Restart-Service.

Get-Help Restart-Service -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Restart-Service Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Restart-Service.

Measure-Command { Get-Help Restart-Service -Full }
Open →
PowerShell
Restart-Service Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Restart-Service.

try { Get-Help Restart-Service -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Restart-Service Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Restart-Service.

Start-Transcript -Path .\command-session.log; Get-Help Restart-Service -Full; Stop-Transcript
Open →
PowerShell
Restart-Service Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Restart-Service.

Get-Help Restart-Service -Full | Select-Object *
Open →
PowerShell
Restart-Service Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Restart-Service.

Get-Help Restart-Service -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Restart-Service Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Restart-Service.

Get-Help Restart-Service -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Process Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-Process.

Get-Help Get-Process -Full | Format-List *
Open →
PowerShell
Get-Process Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-Process.

Get-Help Get-Process -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Process Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-Process.

Measure-Command { Get-Help Get-Process -Full }
Open →
PowerShell
Get-Process Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-Process.

try { Get-Help Get-Process -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Process Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-Process.

Start-Transcript -Path .\command-session.log; Get-Help Get-Process -Full; Stop-Transcript
Open →
PowerShell
Get-Process Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-Process.

Get-Help Get-Process -Full | Select-Object *
Open →
PowerShell
Get-Process Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-Process.

Get-Help Get-Process -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Process Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-Process.

Get-Help Get-Process -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Stop-Process Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Stop-Process.

Get-Help Stop-Process -Full | Format-List *
Open →
PowerShell
Stop-Process Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Stop-Process.

Get-Help Stop-Process -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Stop-Process Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Stop-Process.

Measure-Command { Get-Help Stop-Process -Full }
Open →
PowerShell
Stop-Process Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Stop-Process.

try { Get-Help Stop-Process -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Stop-Process Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Stop-Process.

Start-Transcript -Path .\command-session.log; Get-Help Stop-Process -Full; Stop-Transcript
Open →
PowerShell
Stop-Process Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Stop-Process.

Get-Help Stop-Process -Full | Select-Object *
Open →
PowerShell
Stop-Process Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Stop-Process.

Get-Help Stop-Process -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Stop-Process Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Stop-Process.

Get-Help Stop-Process -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-EventLog Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-EventLog.

Get-Help Get-EventLog -Full | Format-List *
Open →
PowerShell
Get-EventLog Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-EventLog.

Get-Help Get-EventLog -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-EventLog Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-EventLog.

Measure-Command { Get-Help Get-EventLog -Full }
Open →
PowerShell
Get-EventLog Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-EventLog.

try { Get-Help Get-EventLog -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-EventLog Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-EventLog.

Start-Transcript -Path .\command-session.log; Get-Help Get-EventLog -Full; Stop-Transcript
Open →
PowerShell
Get-EventLog Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-EventLog.

Get-Help Get-EventLog -Full | Select-Object *
Open →
PowerShell
Get-EventLog Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-EventLog.

Get-Help Get-EventLog -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-EventLog Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-EventLog.

Get-Help Get-EventLog -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-WinEvent Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-WinEvent.

Get-Help Get-WinEvent -Full | Format-List *
Open →
PowerShell
Get-WinEvent Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-WinEvent.

Get-Help Get-WinEvent -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-WinEvent Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-WinEvent.

Measure-Command { Get-Help Get-WinEvent -Full }
Open →
PowerShell
Get-WinEvent Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-WinEvent.

try { Get-Help Get-WinEvent -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-WinEvent Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-WinEvent.

Start-Transcript -Path .\command-session.log; Get-Help Get-WinEvent -Full; Stop-Transcript
Open →
PowerShell
Get-WinEvent Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-WinEvent.

Get-Help Get-WinEvent -Full | Select-Object *
Open →
PowerShell
Get-WinEvent Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-WinEvent.

Get-Help Get-WinEvent -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-WinEvent Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-WinEvent.

Get-Help Get-WinEvent -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ComputerInfo Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ComputerInfo.

Get-Help Get-ComputerInfo -Full | Format-List *
Open →
PowerShell
Get-ComputerInfo Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ComputerInfo.

Get-Help Get-ComputerInfo -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ComputerInfo Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ComputerInfo.

Measure-Command { Get-Help Get-ComputerInfo -Full }
Open →
PowerShell
Get-ComputerInfo Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ComputerInfo.

try { Get-Help Get-ComputerInfo -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ComputerInfo Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ComputerInfo.

Start-Transcript -Path .\command-session.log; Get-Help Get-ComputerInfo -Full; Stop-Transcript
Open →
PowerShell
Get-ComputerInfo Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ComputerInfo.

Get-Help Get-ComputerInfo -Full | Select-Object *
Open →
PowerShell
Get-ComputerInfo Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ComputerInfo.

Get-Help Get-ComputerInfo -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ComputerInfo Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ComputerInfo.

Get-Help Get-ComputerInfo -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-CimInstance Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-CimInstance.

Get-Help Get-CimInstance -Full | Format-List *
Open →
PowerShell
Get-CimInstance Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-CimInstance.

Get-Help Get-CimInstance -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-CimInstance Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-CimInstance.

Measure-Command { Get-Help Get-CimInstance -Full }
Open →
PowerShell
Get-CimInstance Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-CimInstance.

try { Get-Help Get-CimInstance -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-CimInstance Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-CimInstance.

Start-Transcript -Path .\command-session.log; Get-Help Get-CimInstance -Full; Stop-Transcript
Open →
PowerShell
Get-CimInstance Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-CimInstance.

Get-Help Get-CimInstance -Full | Select-Object *
Open →
PowerShell
Get-CimInstance Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-CimInstance.

Get-Help Get-CimInstance -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-CimInstance Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-CimInstance.

Get-Help Get-CimInstance -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Test-Connection Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Test-Connection.

Get-Help Test-Connection -Full | Format-List *
Open →
PowerShell
Test-Connection Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Test-Connection.

Get-Help Test-Connection -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Test-Connection Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Test-Connection.

Measure-Command { Get-Help Test-Connection -Full }
Open →
PowerShell
Test-Connection Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Test-Connection.

try { Get-Help Test-Connection -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Test-Connection Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Test-Connection.

Start-Transcript -Path .\command-session.log; Get-Help Test-Connection -Full; Stop-Transcript
Open →
PowerShell
Test-Connection Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Test-Connection.

Get-Help Test-Connection -Full | Select-Object *
Open →
PowerShell
Test-Connection Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Test-Connection.

Get-Help Test-Connection -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Test-Connection Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Test-Connection.

Get-Help Test-Connection -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Test-NetConnection Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Test-NetConnection.

Get-Help Test-NetConnection -Full | Format-List *
Open →
PowerShell
Test-NetConnection Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Test-NetConnection.

Get-Help Test-NetConnection -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Test-NetConnection Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Test-NetConnection.

Measure-Command { Get-Help Test-NetConnection -Full }
Open →
PowerShell
Test-NetConnection Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Test-NetConnection.

try { Get-Help Test-NetConnection -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Test-NetConnection Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Test-NetConnection.

Start-Transcript -Path .\command-session.log; Get-Help Test-NetConnection -Full; Stop-Transcript
Open →
PowerShell
Test-NetConnection Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Test-NetConnection.

Get-Help Test-NetConnection -Full | Select-Object *
Open →
PowerShell
Test-NetConnection Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Test-NetConnection.

Get-Help Test-NetConnection -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Test-NetConnection Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Test-NetConnection.

Get-Help Test-NetConnection -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Resolve-DnsName Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Resolve-DnsName.

Get-Help Resolve-DnsName -Full | Format-List *
Open →
PowerShell
Resolve-DnsName Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Resolve-DnsName.

Get-Help Resolve-DnsName -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Resolve-DnsName Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Resolve-DnsName.

Measure-Command { Get-Help Resolve-DnsName -Full }
Open →
PowerShell
Resolve-DnsName Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Resolve-DnsName.

try { Get-Help Resolve-DnsName -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Resolve-DnsName Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Resolve-DnsName.

Start-Transcript -Path .\command-session.log; Get-Help Resolve-DnsName -Full; Stop-Transcript
Open →
PowerShell
Resolve-DnsName Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Resolve-DnsName.

Get-Help Resolve-DnsName -Full | Select-Object *
Open →
PowerShell
Resolve-DnsName Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Resolve-DnsName.

Get-Help Resolve-DnsName -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Resolve-DnsName Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Resolve-DnsName.

Get-Help Resolve-DnsName -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetIPAddress Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-NetIPAddress.

Get-Help Get-NetIPAddress -Full | Format-List *
Open →
PowerShell
Get-NetIPAddress Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-NetIPAddress.

Get-Help Get-NetIPAddress -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetIPAddress Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-NetIPAddress.

Measure-Command { Get-Help Get-NetIPAddress -Full }
Open →
PowerShell
Get-NetIPAddress Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-NetIPAddress.

try { Get-Help Get-NetIPAddress -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetIPAddress Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-NetIPAddress.

Start-Transcript -Path .\command-session.log; Get-Help Get-NetIPAddress -Full; Stop-Transcript
Open →
PowerShell
Get-NetIPAddress Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-NetIPAddress.

Get-Help Get-NetIPAddress -Full | Select-Object *
Open →
PowerShell
Get-NetIPAddress Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-NetIPAddress.

Get-Help Get-NetIPAddress -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetIPAddress Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-NetIPAddress.

Get-Help Get-NetIPAddress -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

Get-Help Get-NetIPConfiguration -Full | Format-List *
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

Get-Help Get-NetIPConfiguration -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

Measure-Command { Get-Help Get-NetIPConfiguration -Full }
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

try { Get-Help Get-NetIPConfiguration -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

Start-Transcript -Path .\command-session.log; Get-Help Get-NetIPConfiguration -Full; Stop-Transcript
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

Get-Help Get-NetIPConfiguration -Full | Select-Object *
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

Get-Help Get-NetIPConfiguration -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetIPConfiguration Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-NetIPConfiguration.

Get-Help Get-NetIPConfiguration -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetAdapter Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-NetAdapter.

Get-Help Get-NetAdapter -Full | Format-List *
Open →
PowerShell
Get-NetAdapter Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-NetAdapter.

Get-Help Get-NetAdapter -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetAdapter Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-NetAdapter.

Measure-Command { Get-Help Get-NetAdapter -Full }
Open →
PowerShell
Get-NetAdapter Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-NetAdapter.

try { Get-Help Get-NetAdapter -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetAdapter Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-NetAdapter.

Start-Transcript -Path .\command-session.log; Get-Help Get-NetAdapter -Full; Stop-Transcript
Open →
PowerShell
Get-NetAdapter Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-NetAdapter.

Get-Help Get-NetAdapter -Full | Select-Object *
Open →
PowerShell
Get-NetAdapter Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-NetAdapter.

Get-Help Get-NetAdapter -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetAdapter Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-NetAdapter.

Get-Help Get-NetAdapter -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Restart-NetAdapter Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Restart-NetAdapter.

Get-Help Restart-NetAdapter -Full | Format-List *
Open →
PowerShell
Restart-NetAdapter Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Restart-NetAdapter.

Get-Help Restart-NetAdapter -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Restart-NetAdapter Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Restart-NetAdapter.

Measure-Command { Get-Help Restart-NetAdapter -Full }
Open →
PowerShell
Restart-NetAdapter Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Restart-NetAdapter.

try { Get-Help Restart-NetAdapter -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Restart-NetAdapter Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Restart-NetAdapter.

Start-Transcript -Path .\command-session.log; Get-Help Restart-NetAdapter -Full; Stop-Transcript
Open →
PowerShell
Restart-NetAdapter Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Restart-NetAdapter.

Get-Help Restart-NetAdapter -Full | Select-Object *
Open →
PowerShell
Restart-NetAdapter Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Restart-NetAdapter.

Get-Help Restart-NetAdapter -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Restart-NetAdapter Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Restart-NetAdapter.

Get-Help Restart-NetAdapter -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetRoute Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-NetRoute.

Get-Help Get-NetRoute -Full | Format-List *
Open →
PowerShell
Get-NetRoute Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-NetRoute.

Get-Help Get-NetRoute -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetRoute Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-NetRoute.

Measure-Command { Get-Help Get-NetRoute -Full }
Open →
PowerShell
Get-NetRoute Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-NetRoute.

try { Get-Help Get-NetRoute -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetRoute Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-NetRoute.

Start-Transcript -Path .\command-session.log; Get-Help Get-NetRoute -Full; Stop-Transcript
Open →
PowerShell
Get-NetRoute Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-NetRoute.

Get-Help Get-NetRoute -Full | Select-Object *
Open →
PowerShell
Get-NetRoute Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-NetRoute.

Get-Help Get-NetRoute -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetRoute Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-NetRoute.

Get-Help Get-NetRoute -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-NetTCPConnection Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

Get-Help Get-NetTCPConnection -Full | Format-List *
Open →
PowerShell
Get-NetTCPConnection Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

Get-Help Get-NetTCPConnection -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-NetTCPConnection Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

Measure-Command { Get-Help Get-NetTCPConnection -Full }
Open →
PowerShell
Get-NetTCPConnection Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

try { Get-Help Get-NetTCPConnection -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-NetTCPConnection Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

Start-Transcript -Path .\command-session.log; Get-Help Get-NetTCPConnection -Full; Stop-Transcript
Open →
PowerShell
Get-NetTCPConnection Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

Get-Help Get-NetTCPConnection -Full | Select-Object *
Open →
PowerShell
Get-NetTCPConnection Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

Get-Help Get-NetTCPConnection -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-NetTCPConnection Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-NetTCPConnection.

Get-Help Get-NetTCPConnection -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-DnsClientCache Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-DnsClientCache.

Get-Help Get-DnsClientCache -Full | Format-List *
Open →
PowerShell
Get-DnsClientCache Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-DnsClientCache.

Get-Help Get-DnsClientCache -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-DnsClientCache Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-DnsClientCache.

Measure-Command { Get-Help Get-DnsClientCache -Full }
Open →
PowerShell
Get-DnsClientCache Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-DnsClientCache.

try { Get-Help Get-DnsClientCache -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-DnsClientCache Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-DnsClientCache.

Start-Transcript -Path .\command-session.log; Get-Help Get-DnsClientCache -Full; Stop-Transcript
Open →
PowerShell
Get-DnsClientCache Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-DnsClientCache.

Get-Help Get-DnsClientCache -Full | Select-Object *
Open →
PowerShell
Get-DnsClientCache Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-DnsClientCache.

Get-Help Get-DnsClientCache -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-DnsClientCache Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-DnsClientCache.

Get-Help Get-DnsClientCache -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Clear-DnsClientCache Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

Get-Help Clear-DnsClientCache -Full | Format-List *
Open →
PowerShell
Clear-DnsClientCache Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

Get-Help Clear-DnsClientCache -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Clear-DnsClientCache Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

Measure-Command { Get-Help Clear-DnsClientCache -Full }
Open →
PowerShell
Clear-DnsClientCache Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

try { Get-Help Clear-DnsClientCache -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Clear-DnsClientCache Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

Start-Transcript -Path .\command-session.log; Get-Help Clear-DnsClientCache -Full; Stop-Transcript
Open →
PowerShell
Clear-DnsClientCache Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

Get-Help Clear-DnsClientCache -Full | Select-Object *
Open →
PowerShell
Clear-DnsClientCache Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

Get-Help Clear-DnsClientCache -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Clear-DnsClientCache Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Clear-DnsClientCache.

Get-Help Clear-DnsClientCache -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ChildItem Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ChildItem.

Get-Help Get-ChildItem -Full | Format-List *
Open →
PowerShell
Get-ChildItem Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ChildItem.

Get-Help Get-ChildItem -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ChildItem Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ChildItem.

Measure-Command { Get-Help Get-ChildItem -Full }
Open →
PowerShell
Get-ChildItem Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ChildItem.

try { Get-Help Get-ChildItem -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ChildItem Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ChildItem.

Start-Transcript -Path .\command-session.log; Get-Help Get-ChildItem -Full; Stop-Transcript
Open →
PowerShell
Get-ChildItem Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ChildItem.

Get-Help Get-ChildItem -Full | Select-Object *
Open →
PowerShell
Get-ChildItem Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ChildItem.

Get-Help Get-ChildItem -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ChildItem Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ChildItem.

Get-Help Get-ChildItem -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Copy-Item Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Copy-Item.

Get-Help Copy-Item -Full | Format-List *
Open →
PowerShell
Copy-Item Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Copy-Item.

Get-Help Copy-Item -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Copy-Item Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Copy-Item.

Measure-Command { Get-Help Copy-Item -Full }
Open →
PowerShell
Copy-Item Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Copy-Item.

try { Get-Help Copy-Item -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Copy-Item Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Copy-Item.

Start-Transcript -Path .\command-session.log; Get-Help Copy-Item -Full; Stop-Transcript
Open →
PowerShell
Copy-Item Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Copy-Item.

Get-Help Copy-Item -Full | Select-Object *
Open →
PowerShell
Copy-Item Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Copy-Item.

Get-Help Copy-Item -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Copy-Item Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Copy-Item.

Get-Help Copy-Item -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Move-Item Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Move-Item.

Get-Help Move-Item -Full | Format-List *
Open →
PowerShell
Move-Item Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Move-Item.

Get-Help Move-Item -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Move-Item Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Move-Item.

Measure-Command { Get-Help Move-Item -Full }
Open →
PowerShell
Move-Item Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Move-Item.

try { Get-Help Move-Item -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Move-Item Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Move-Item.

Start-Transcript -Path .\command-session.log; Get-Help Move-Item -Full; Stop-Transcript
Open →
PowerShell
Move-Item Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Move-Item.

Get-Help Move-Item -Full | Select-Object *
Open →
PowerShell
Move-Item Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Move-Item.

Get-Help Move-Item -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Move-Item Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Move-Item.

Get-Help Move-Item -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Remove-Item Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Remove-Item.

Get-Help Remove-Item -Full | Format-List *
Open →
PowerShell
Remove-Item Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Remove-Item.

Get-Help Remove-Item -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Remove-Item Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Remove-Item.

Measure-Command { Get-Help Remove-Item -Full }
Open →
PowerShell
Remove-Item Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Remove-Item.

try { Get-Help Remove-Item -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Remove-Item Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Remove-Item.

Start-Transcript -Path .\command-session.log; Get-Help Remove-Item -Full; Stop-Transcript
Open →
PowerShell
Remove-Item Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Remove-Item.

Get-Help Remove-Item -Full | Select-Object *
Open →
PowerShell
Remove-Item Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Remove-Item.

Get-Help Remove-Item -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Remove-Item Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Remove-Item.

Get-Help Remove-Item -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-Item Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for New-Item.

Get-Help New-Item -Full | Format-List *
Open →
PowerShell
New-Item Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for New-Item.

Get-Help New-Item -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-Item Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for New-Item.

Measure-Command { Get-Help New-Item -Full }
Open →
PowerShell
New-Item Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for New-Item.

try { Get-Help New-Item -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-Item Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for New-Item.

Start-Transcript -Path .\command-session.log; Get-Help New-Item -Full; Stop-Transcript
Open →
PowerShell
New-Item Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for New-Item.

Get-Help New-Item -Full | Select-Object *
Open →
PowerShell
New-Item Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for New-Item.

Get-Help New-Item -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
New-Item Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for New-Item.

Get-Help New-Item -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Content Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-Content.

Get-Help Get-Content -Full | Format-List *
Open →
PowerShell
Get-Content Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-Content.

Get-Help Get-Content -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Content Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-Content.

Measure-Command { Get-Help Get-Content -Full }
Open →
PowerShell
Get-Content Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-Content.

try { Get-Help Get-Content -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Content Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-Content.

Start-Transcript -Path .\command-session.log; Get-Help Get-Content -Full; Stop-Transcript
Open →
PowerShell
Get-Content Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-Content.

Get-Help Get-Content -Full | Select-Object *
Open →
PowerShell
Get-Content Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-Content.

Get-Help Get-Content -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Content Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-Content.

Get-Help Get-Content -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-Content Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Set-Content.

Get-Help Set-Content -Full | Format-List *
Open →
PowerShell
Set-Content Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Set-Content.

Get-Help Set-Content -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-Content Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Set-Content.

Measure-Command { Get-Help Set-Content -Full }
Open →
PowerShell
Set-Content Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Set-Content.

try { Get-Help Set-Content -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-Content Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Set-Content.

Start-Transcript -Path .\command-session.log; Get-Help Set-Content -Full; Stop-Transcript
Open →
PowerShell
Set-Content Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Set-Content.

Get-Help Set-Content -Full | Select-Object *
Open →
PowerShell
Set-Content Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Set-Content.

Get-Help Set-Content -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-Content Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Set-Content.

Get-Help Set-Content -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-Content Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Add-Content.

Get-Help Add-Content -Full | Format-List *
Open →
PowerShell
Add-Content Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Add-Content.

Get-Help Add-Content -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-Content Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Add-Content.

Measure-Command { Get-Help Add-Content -Full }
Open →
PowerShell
Add-Content Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Add-Content.

try { Get-Help Add-Content -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-Content Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Add-Content.

Start-Transcript -Path .\command-session.log; Get-Help Add-Content -Full; Stop-Transcript
Open →
PowerShell
Add-Content Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Add-Content.

Get-Help Add-Content -Full | Select-Object *
Open →
PowerShell
Add-Content Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Add-Content.

Get-Help Add-Content -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-Content Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Add-Content.

Get-Help Add-Content -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Select-String Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Select-String.

Get-Help Select-String -Full | Format-List *
Open →
PowerShell
Select-String Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Select-String.

Get-Help Select-String -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Select-String Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Select-String.

Measure-Command { Get-Help Select-String -Full }
Open →
PowerShell
Select-String Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Select-String.

try { Get-Help Select-String -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Select-String Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Select-String.

Start-Transcript -Path .\command-session.log; Get-Help Select-String -Full; Stop-Transcript
Open →
PowerShell
Select-String Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Select-String.

Get-Help Select-String -Full | Select-Object *
Open →
PowerShell
Select-String Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Select-String.

Get-Help Select-String -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Select-String Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Select-String.

Get-Help Select-String -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Import-Csv Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Import-Csv.

Get-Help Import-Csv -Full | Format-List *
Open →
PowerShell
Import-Csv Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Import-Csv.

Get-Help Import-Csv -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Import-Csv Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Import-Csv.

Measure-Command { Get-Help Import-Csv -Full }
Open →
PowerShell
Import-Csv Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Import-Csv.

try { Get-Help Import-Csv -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Import-Csv Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Import-Csv.

Start-Transcript -Path .\command-session.log; Get-Help Import-Csv -Full; Stop-Transcript
Open →
PowerShell
Import-Csv Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Import-Csv.

Get-Help Import-Csv -Full | Select-Object *
Open →
PowerShell
Import-Csv Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Import-Csv.

Get-Help Import-Csv -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Import-Csv Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Import-Csv.

Get-Help Import-Csv -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Invoke-RestMethod Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Invoke-RestMethod.

Get-Help Invoke-RestMethod -Full | Format-List *
Open →
PowerShell
Invoke-RestMethod Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Invoke-RestMethod.

Get-Help Invoke-RestMethod -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Invoke-RestMethod Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Invoke-RestMethod.

Measure-Command { Get-Help Invoke-RestMethod -Full }
Open →
PowerShell
Invoke-RestMethod Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Invoke-RestMethod.

try { Get-Help Invoke-RestMethod -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Invoke-RestMethod Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Invoke-RestMethod.

Start-Transcript -Path .\command-session.log; Get-Help Invoke-RestMethod -Full; Stop-Transcript
Open →
PowerShell
Invoke-RestMethod Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Invoke-RestMethod.

Get-Help Invoke-RestMethod -Full | Select-Object *
Open →
PowerShell
Invoke-RestMethod Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Invoke-RestMethod.

Get-Help Invoke-RestMethod -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Invoke-RestMethod Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Invoke-RestMethod.

Get-Help Invoke-RestMethod -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Invoke-WebRequest Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Invoke-WebRequest.

Get-Help Invoke-WebRequest -Full | Format-List *
Open →
PowerShell
Invoke-WebRequest Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Invoke-WebRequest.

Get-Help Invoke-WebRequest -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Invoke-WebRequest Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Invoke-WebRequest.

Measure-Command { Get-Help Invoke-WebRequest -Full }
Open →
PowerShell
Invoke-WebRequest Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Invoke-WebRequest.

try { Get-Help Invoke-WebRequest -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Invoke-WebRequest Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Invoke-WebRequest.

Start-Transcript -Path .\command-session.log; Get-Help Invoke-WebRequest -Full; Stop-Transcript
Open →
PowerShell
Invoke-WebRequest Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Invoke-WebRequest.

Get-Help Invoke-WebRequest -Full | Select-Object *
Open →
PowerShell
Invoke-WebRequest Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Invoke-WebRequest.

Get-Help Invoke-WebRequest -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Invoke-WebRequest Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Invoke-WebRequest.

Get-Help Invoke-WebRequest -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ScheduledTask Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ScheduledTask.

Get-Help Get-ScheduledTask -Full | Format-List *
Open →
PowerShell
Get-ScheduledTask Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ScheduledTask.

Get-Help Get-ScheduledTask -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ScheduledTask Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ScheduledTask.

Measure-Command { Get-Help Get-ScheduledTask -Full }
Open →
PowerShell
Get-ScheduledTask Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ScheduledTask.

try { Get-Help Get-ScheduledTask -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ScheduledTask Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ScheduledTask.

Start-Transcript -Path .\command-session.log; Get-Help Get-ScheduledTask -Full; Stop-Transcript
Open →
PowerShell
Get-ScheduledTask Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ScheduledTask.

Get-Help Get-ScheduledTask -Full | Select-Object *
Open →
PowerShell
Get-ScheduledTask Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ScheduledTask.

Get-Help Get-ScheduledTask -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ScheduledTask Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ScheduledTask.

Get-Help Get-ScheduledTask -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-ScheduledTask Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Start-ScheduledTask.

Get-Help Start-ScheduledTask -Full | Format-List *
Open →
PowerShell
Start-ScheduledTask Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Start-ScheduledTask.

Get-Help Start-ScheduledTask -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-ScheduledTask Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Start-ScheduledTask.

Measure-Command { Get-Help Start-ScheduledTask -Full }
Open →
PowerShell
Start-ScheduledTask Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Start-ScheduledTask.

try { Get-Help Start-ScheduledTask -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-ScheduledTask Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Start-ScheduledTask.

Start-Transcript -Path .\command-session.log; Get-Help Start-ScheduledTask -Full; Stop-Transcript
Open →
PowerShell
Start-ScheduledTask Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Start-ScheduledTask.

Get-Help Start-ScheduledTask -Full | Select-Object *
Open →
PowerShell
Start-ScheduledTask Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Start-ScheduledTask.

Get-Help Start-ScheduledTask -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-ScheduledTask Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Start-ScheduledTask.

Get-Help Start-ScheduledTask -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-LocalUser Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-LocalUser.

Get-Help Get-LocalUser -Full | Format-List *
Open →
PowerShell
Get-LocalUser Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-LocalUser.

Get-Help Get-LocalUser -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-LocalUser Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-LocalUser.

Measure-Command { Get-Help Get-LocalUser -Full }
Open →
PowerShell
Get-LocalUser Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-LocalUser.

try { Get-Help Get-LocalUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-LocalUser Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-LocalUser.

Start-Transcript -Path .\command-session.log; Get-Help Get-LocalUser -Full; Stop-Transcript
Open →
PowerShell
Get-LocalUser Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-LocalUser.

Get-Help Get-LocalUser -Full | Select-Object *
Open →
PowerShell
Get-LocalUser Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-LocalUser.

Get-Help Get-LocalUser -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-LocalUser Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-LocalUser.

Get-Help Get-LocalUser -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-LocalUser Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for New-LocalUser.

Get-Help New-LocalUser -Full | Format-List *
Open →
PowerShell
New-LocalUser Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for New-LocalUser.

Get-Help New-LocalUser -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-LocalUser Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for New-LocalUser.

Measure-Command { Get-Help New-LocalUser -Full }
Open →
PowerShell
New-LocalUser Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for New-LocalUser.

try { Get-Help New-LocalUser -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-LocalUser Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for New-LocalUser.

Start-Transcript -Path .\command-session.log; Get-Help New-LocalUser -Full; Stop-Transcript
Open →
PowerShell
New-LocalUser Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for New-LocalUser.

Get-Help New-LocalUser -Full | Select-Object *
Open →
PowerShell
New-LocalUser Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for New-LocalUser.

Get-Help New-LocalUser -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
New-LocalUser Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for New-LocalUser.

Get-Help New-LocalUser -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-LocalGroupMember Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

Get-Help Get-LocalGroupMember -Full | Format-List *
Open →
PowerShell
Get-LocalGroupMember Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

Get-Help Get-LocalGroupMember -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-LocalGroupMember Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

Measure-Command { Get-Help Get-LocalGroupMember -Full }
Open →
PowerShell
Get-LocalGroupMember Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

try { Get-Help Get-LocalGroupMember -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-LocalGroupMember Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

Start-Transcript -Path .\command-session.log; Get-Help Get-LocalGroupMember -Full; Stop-Transcript
Open →
PowerShell
Get-LocalGroupMember Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

Get-Help Get-LocalGroupMember -Full | Select-Object *
Open →
PowerShell
Get-LocalGroupMember Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

Get-Help Get-LocalGroupMember -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-LocalGroupMember Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-LocalGroupMember.

Get-Help Get-LocalGroupMember -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Add-LocalGroupMember Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

Get-Help Add-LocalGroupMember -Full | Format-List *
Open →
PowerShell
Add-LocalGroupMember Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

Get-Help Add-LocalGroupMember -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Add-LocalGroupMember Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

Measure-Command { Get-Help Add-LocalGroupMember -Full }
Open →
PowerShell
Add-LocalGroupMember Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

try { Get-Help Add-LocalGroupMember -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Add-LocalGroupMember Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

Start-Transcript -Path .\command-session.log; Get-Help Add-LocalGroupMember -Full; Stop-Transcript
Open →
PowerShell
Add-LocalGroupMember Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

Get-Help Add-LocalGroupMember -Full | Select-Object *
Open →
PowerShell
Add-LocalGroupMember Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

Get-Help Add-LocalGroupMember -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Add-LocalGroupMember Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Add-LocalGroupMember.

Get-Help Add-LocalGroupMember -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-HotFix Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-HotFix.

Get-Help Get-HotFix -Full | Format-List *
Open →
PowerShell
Get-HotFix Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-HotFix.

Get-Help Get-HotFix -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-HotFix Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-HotFix.

Measure-Command { Get-Help Get-HotFix -Full }
Open →
PowerShell
Get-HotFix Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-HotFix.

try { Get-Help Get-HotFix -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-HotFix Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-HotFix.

Start-Transcript -Path .\command-session.log; Get-Help Get-HotFix -Full; Stop-Transcript
Open →
PowerShell
Get-HotFix Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-HotFix.

Get-Help Get-HotFix -Full | Select-Object *
Open →
PowerShell
Get-HotFix Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-HotFix.

Get-Help Get-HotFix -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-HotFix Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-HotFix.

Get-Help Get-HotFix -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

Get-Help Get-WindowsOptionalFeature -Full | Format-List *
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

Get-Help Get-WindowsOptionalFeature -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

Measure-Command { Get-Help Get-WindowsOptionalFeature -Full }
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

try { Get-Help Get-WindowsOptionalFeature -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

Start-Transcript -Path .\command-session.log; Get-Help Get-WindowsOptionalFeature -Full; Stop-Transcript
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

Get-Help Get-WindowsOptionalFeature -Full | Select-Object *
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

Get-Help Get-WindowsOptionalFeature -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-WindowsOptionalFeature Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-WindowsOptionalFeature.

Get-Help Get-WindowsOptionalFeature -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

Get-Help Enable-WindowsOptionalFeature -Full | Format-List *
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

Get-Help Enable-WindowsOptionalFeature -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

Measure-Command { Get-Help Enable-WindowsOptionalFeature -Full }
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

try { Get-Help Enable-WindowsOptionalFeature -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

Start-Transcript -Path .\command-session.log; Get-Help Enable-WindowsOptionalFeature -Full; Stop-Transcript
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

Get-Help Enable-WindowsOptionalFeature -Full | Select-Object *
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

Get-Help Enable-WindowsOptionalFeature -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Enable-WindowsOptionalFeature Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Enable-WindowsOptionalFeature.

Get-Help Enable-WindowsOptionalFeature -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Volume Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-Volume.

Get-Help Get-Volume -Full | Format-List *
Open →
PowerShell
Get-Volume Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-Volume.

Get-Help Get-Volume -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Volume Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-Volume.

Measure-Command { Get-Help Get-Volume -Full }
Open →
PowerShell
Get-Volume Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-Volume.

try { Get-Help Get-Volume -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Volume Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-Volume.

Start-Transcript -Path .\command-session.log; Get-Help Get-Volume -Full; Stop-Transcript
Open →
PowerShell
Get-Volume Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-Volume.

Get-Help Get-Volume -Full | Select-Object *
Open →
PowerShell
Get-Volume Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-Volume.

Get-Help Get-Volume -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Volume Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-Volume.

Get-Help Get-Volume -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Disk Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-Disk.

Get-Help Get-Disk -Full | Format-List *
Open →
PowerShell
Get-Disk Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-Disk.

Get-Help Get-Disk -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Disk Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-Disk.

Measure-Command { Get-Help Get-Disk -Full }
Open →
PowerShell
Get-Disk Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-Disk.

try { Get-Help Get-Disk -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Disk Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-Disk.

Start-Transcript -Path .\command-session.log; Get-Help Get-Disk -Full; Stop-Transcript
Open →
PowerShell
Get-Disk Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-Disk.

Get-Help Get-Disk -Full | Select-Object *
Open →
PowerShell
Get-Disk Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-Disk.

Get-Help Get-Disk -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Disk Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-Disk.

Get-Help Get-Disk -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Partition Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-Partition.

Get-Help Get-Partition -Full | Format-List *
Open →
PowerShell
Get-Partition Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-Partition.

Get-Help Get-Partition -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Partition Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-Partition.

Measure-Command { Get-Help Get-Partition -Full }
Open →
PowerShell
Get-Partition Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-Partition.

try { Get-Help Get-Partition -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Partition Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-Partition.

Start-Transcript -Path .\command-session.log; Get-Help Get-Partition -Full; Stop-Transcript
Open →
PowerShell
Get-Partition Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-Partition.

Get-Help Get-Partition -Full | Select-Object *
Open →
PowerShell
Get-Partition Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-Partition.

Get-Help Get-Partition -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Partition Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-Partition.

Get-Help Get-Partition -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-SmbShare Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-SmbShare.

Get-Help Get-SmbShare -Full | Format-List *
Open →
PowerShell
Get-SmbShare Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-SmbShare.

Get-Help Get-SmbShare -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-SmbShare Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-SmbShare.

Measure-Command { Get-Help Get-SmbShare -Full }
Open →
PowerShell
Get-SmbShare Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-SmbShare.

try { Get-Help Get-SmbShare -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-SmbShare Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-SmbShare.

Start-Transcript -Path .\command-session.log; Get-Help Get-SmbShare -Full; Stop-Transcript
Open →
PowerShell
Get-SmbShare Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-SmbShare.

Get-Help Get-SmbShare -Full | Select-Object *
Open →
PowerShell
Get-SmbShare Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-SmbShare.

Get-Help Get-SmbShare -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-SmbShare Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-SmbShare.

Get-Help Get-SmbShare -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
New-SmbShare Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for New-SmbShare.

Get-Help New-SmbShare -Full | Format-List *
Open →
PowerShell
New-SmbShare Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for New-SmbShare.

Get-Help New-SmbShare -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
New-SmbShare Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for New-SmbShare.

Measure-Command { Get-Help New-SmbShare -Full }
Open →
PowerShell
New-SmbShare Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for New-SmbShare.

try { Get-Help New-SmbShare -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
New-SmbShare Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for New-SmbShare.

Start-Transcript -Path .\command-session.log; Get-Help New-SmbShare -Full; Stop-Transcript
Open →
PowerShell
New-SmbShare Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for New-SmbShare.

Get-Help New-SmbShare -Full | Select-Object *
Open →
PowerShell
New-SmbShare Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for New-SmbShare.

Get-Help New-SmbShare -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
New-SmbShare Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for New-SmbShare.

Get-Help New-SmbShare -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-FileHash Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-FileHash.

Get-Help Get-FileHash -Full | Format-List *
Open →
PowerShell
Get-FileHash Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-FileHash.

Get-Help Get-FileHash -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-FileHash Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-FileHash.

Measure-Command { Get-Help Get-FileHash -Full }
Open →
PowerShell
Get-FileHash Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-FileHash.

try { Get-Help Get-FileHash -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-FileHash Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-FileHash.

Start-Transcript -Path .\command-session.log; Get-Help Get-FileHash -Full; Stop-Transcript
Open →
PowerShell
Get-FileHash Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-FileHash.

Get-Help Get-FileHash -Full | Select-Object *
Open →
PowerShell
Get-FileHash Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-FileHash.

Get-Help Get-FileHash -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-FileHash Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-FileHash.

Get-Help Get-FileHash -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Start-Transcript Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Start-Transcript.

Get-Help Start-Transcript -Full | Format-List *
Open →
PowerShell
Start-Transcript Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Start-Transcript.

Get-Help Start-Transcript -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Start-Transcript Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Start-Transcript.

Measure-Command { Get-Help Start-Transcript -Full }
Open →
PowerShell
Start-Transcript Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Start-Transcript.

try { Get-Help Start-Transcript -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Start-Transcript Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Start-Transcript.

Start-Transcript -Path .\command-session.log; Get-Help Start-Transcript -Full; Stop-Transcript
Open →
PowerShell
Start-Transcript Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Start-Transcript.

Get-Help Start-Transcript -Full | Select-Object *
Open →
PowerShell
Start-Transcript Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Start-Transcript.

Get-Help Start-Transcript -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Start-Transcript Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Start-Transcript.

Get-Help Start-Transcript -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

Get-Help Get-ExecutionPolicy -Full | Format-List *
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

Get-Help Get-ExecutionPolicy -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

Measure-Command { Get-Help Get-ExecutionPolicy -Full }
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

try { Get-Help Get-ExecutionPolicy -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

Start-Transcript -Path .\command-session.log; Get-Help Get-ExecutionPolicy -Full; Stop-Transcript
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

Get-Help Get-ExecutionPolicy -Full | Select-Object *
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

Get-Help Get-ExecutionPolicy -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-ExecutionPolicy Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-ExecutionPolicy.

Get-Help Get-ExecutionPolicy -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

Get-Help Set-ExecutionPolicy -Full | Format-List *
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

Get-Help Set-ExecutionPolicy -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

Measure-Command { Get-Help Set-ExecutionPolicy -Full }
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

try { Get-Help Set-ExecutionPolicy -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

Start-Transcript -Path .\command-session.log; Get-Help Set-ExecutionPolicy -Full; Stop-Transcript
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

Get-Help Set-ExecutionPolicy -Full | Select-Object *
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

Get-Help Set-ExecutionPolicy -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Set-ExecutionPolicy Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Set-ExecutionPolicy.

Get-Help Set-ExecutionPolicy -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Module Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-Module.

Get-Help Get-Module -Full | Format-List *
Open →
PowerShell
Get-Module Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-Module.

Get-Help Get-Module -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Module Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-Module.

Measure-Command { Get-Help Get-Module -Full }
Open →
PowerShell
Get-Module Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-Module.

try { Get-Help Get-Module -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Module Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-Module.

Start-Transcript -Path .\command-session.log; Get-Help Get-Module -Full; Stop-Transcript
Open →
PowerShell
Get-Module Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-Module.

Get-Help Get-Module -Full | Select-Object *
Open →
PowerShell
Get-Module Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-Module.

Get-Help Get-Module -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Module Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-Module.

Get-Help Get-Module -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Install-Module Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Install-Module.

Get-Help Install-Module -Full | Format-List *
Open →
PowerShell
Install-Module Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Install-Module.

Get-Help Install-Module -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Install-Module Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Install-Module.

Measure-Command { Get-Help Install-Module -Full }
Open →
PowerShell
Install-Module Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Install-Module.

try { Get-Help Install-Module -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Install-Module Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Install-Module.

Start-Transcript -Path .\command-session.log; Get-Help Install-Module -Full; Stop-Transcript
Open →
PowerShell
Install-Module Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Install-Module.

Get-Help Install-Module -Full | Select-Object *
Open →
PowerShell
Install-Module Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Install-Module.

Get-Help Install-Module -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Install-Module Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Install-Module.

Get-Help Install-Module -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Update-Module Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Update-Module.

Get-Help Update-Module -Full | Format-List *
Open →
PowerShell
Update-Module Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Update-Module.

Get-Help Update-Module -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Update-Module Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Update-Module.

Measure-Command { Get-Help Update-Module -Full }
Open →
PowerShell
Update-Module Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Update-Module.

try { Get-Help Update-Module -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Update-Module Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Update-Module.

Start-Transcript -Path .\command-session.log; Get-Help Update-Module -Full; Stop-Transcript
Open →
PowerShell
Update-Module Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Update-Module.

Get-Help Update-Module -Full | Select-Object *
Open →
PowerShell
Update-Module Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Update-Module.

Get-Help Update-Module -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Update-Module Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Update-Module.

Get-Help Update-Module -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
PowerShell
Get-Help Help and Syntax — Formatted details

Display all returned properties in a readable list. Base task: Display complete syntax, parameter details, and examples for Get-Help.

Get-Help Get-Help -Full | Format-List *
Open →
PowerShell
Get-Help Help and Syntax — Export results to CSV

Export returned objects to a CSV file for reporting. Base task: Display complete syntax, parameter details, and examples for Get-Help.

Get-Help Get-Help -Full | Export-Csv -Path .\command-results.csv -NoTypeInformation
Open →
PowerShell
Get-Help Help and Syntax — Measure execution time

Measure how long the command takes to complete. Base task: Display complete syntax, parameter details, and examples for Get-Help.

Measure-Command { Get-Help Get-Help -Full }
Open →
PowerShell
Get-Help Help and Syntax — Stop on error

Run the command with terminating error handling. Base task: Display complete syntax, parameter details, and examples for Get-Help.

try { Get-Help Get-Help -Full -ErrorAction Stop } catch { Write-Error $_.Exception.Message }
Open →
PowerShell
Get-Help Help and Syntax — Save transcript output

Capture the command and console output in a transcript log. Base task: Display complete syntax, parameter details, and examples for Get-Help.

Start-Transcript -Path .\command-session.log; Get-Help Get-Help -Full; Stop-Transcript
Open →
PowerShell
Get-Help Help and Syntax — Select common properties

Return all available object properties for inspection. Base task: Display complete syntax, parameter details, and examples for Get-Help.

Get-Help Get-Help -Full | Select-Object *
Open →
PowerShell
Get-Help Help and Syntax — Convert results to JSON

Convert returned objects into JSON for APIs or automation. Base task: Display complete syntax, parameter details, and examples for Get-Help.

Get-Help Get-Help -Full | ConvertTo-Json -Depth 6
Open →
PowerShell
Get-Help Help and Syntax — Write results to text

Save formatted output to a UTF-8 text file. Base task: Display complete syntax, parameter details, and examples for Get-Help.

Get-Help Get-Help -Full | Out-File -FilePath .\command-results.txt -Encoding utf8
Open →
Windows Command Line

Windows Command Line

Back to top ↑
Windows CMD
ipconfig

Display Windows TCP/IP configuration.

ipconfig /all
Open →
Windows CMD
ipconfig flushdns

Clear the Windows DNS resolver cache.

ipconfig /flushdns
Open →
Windows CMD
ping

Test ICMP reachability.

ping example.com
Open →
Windows CMD
tracert

Trace the network path to a host.

tracert example.com
Open →
Windows CMD
pathping

Measure route latency and packet loss.

pathping example.com
Open →
Windows CMD
nslookup

Query DNS records.

nslookup -type=mx example.com
Open →
Windows CMD
netstat

Display network connections and owning process IDs.

netstat -ano
Open →
Windows CMD
arp

Display the ARP cache.

arp -a
Open →
Windows CMD
route print

Display the IPv4 and IPv6 routing tables.

route print
Open →
Windows CMD
hostname

Display the local computer name.

hostname
Open →
Windows CMD
whoami

Display the current security identity and token details.

whoami /all
Open →
Windows CMD
systeminfo

Display operating system and hardware information.

systeminfo
Open →
Windows CMD
tasklist

List running processes and hosted services.

tasklist /svc
Open →
Windows CMD
taskkill

Terminate a process by process ID.

taskkill /PID 1234 /F
Open →
Windows CMD
sc query

Query Windows services.

sc query type= service state= all
Open →
Windows CMD
sc start

Start a Windows service.

sc start Spooler
Open →
Windows CMD
sc stop

Stop a Windows service.

sc stop Spooler
Open →
Windows CMD
net user

List local user accounts.

net user
Open →
Windows CMD
net localgroup

List members of a local group.

net localgroup Administrators
Open →
Windows CMD
net use

Map a network drive.

net use Z: \server\share /persistent:yes
Open →
Windows CMD
net share

List local SMB shares.

net share
Open →
Windows CMD
gpupdate

Refresh Group Policy.

gpupdate /force
Open →
Windows CMD
gpresult

Generate a Group Policy results report.

gpresult /h gpresult.html
Open →
Windows CMD
sfc

Scan and repair protected Windows system files.

sfc /scannow
Open →
Windows CMD
dism

Repair the Windows component store.

DISM /Online /Cleanup-Image /RestoreHealth
Open →
Windows CMD
chkdsk

Scan a volume for file system errors.

chkdsk C: /scan
Open →
Windows CMD
robocopy

Copy and synchronize directory trees.

robocopy C:\Source D:\Backup /MIR /R:2 /W:5 /LOG:backup.log
Open →
Windows CMD
xcopy

Copy files and folders including hidden files.

xcopy C:\Source D:\Backup /E /I /H
Open →
Windows CMD
dir

List files recursively.

dir C:\Logs /s /b
Open →
Windows CMD
findstr

Search text across files.

findstr /s /i "error" C:\Logs\*.log
Open →
Windows CMD
wevtutil

Query Windows event logs.

wevtutil qe System /c:20 /f:text
Open →
Windows CMD
schtasks query

List scheduled tasks.

schtasks /query /fo LIST /v
Open →
Windows CMD
schtasks run

Start a scheduled task.

schtasks /run /tn "Daily Backup"
Open →
Windows CMD
certutil hashfile

Calculate a file hash.

certutil -hashfile installer.exe SHA256
Open →
Windows CMD
powercfg

Generate a Windows battery report.

powercfg /batteryreport
Open →
Windows CMD
driverquery

List installed drivers.

driverquery /v
Open →
Windows CMD
wmic legacy

Query basic Windows information on systems where WMIC remains available.

wmic os get Caption,Version,BuildNumber
Open →
Windows CMD
ipconfig — Basic Usage

Use ipconfig for a standard administrative task.

ipconfig /all
Open →
Windows CMD
ipconfig flushdns — Basic Usage

Use ipconfig flushdns for a standard administrative task.

ipconfig /flushdns
Open →
Windows CMD
ping — Basic Usage

Use ping for a standard administrative task.

ping example.com
Open →
Windows CMD
tracert — Basic Usage

Use tracert for a standard administrative task.

tracert example.com
Open →
Windows CMD
pathping — Basic Usage

Use pathping for a standard administrative task.

pathping example.com
Open →
Windows CMD
nslookup — Basic Usage

Use nslookup for a standard administrative task.

nslookup -type=mx example.com
Open →
Windows CMD
netstat — Basic Usage

Use netstat for a standard administrative task.

netstat -ano
Open →
Windows CMD
arp — Basic Usage

Use arp for a standard administrative task.

arp -a
Open →
Windows CMD
route print — Basic Usage

Use route print for a standard administrative task.

route print
Open →
Windows CMD
hostname — Basic Usage

Use hostname for a standard administrative task.

hostname
Open →
Windows CMD
whoami — Basic Usage

Use whoami for a standard administrative task.

whoami /all
Open →
Windows CMD
systeminfo — Basic Usage

Use systeminfo for a standard administrative task.

systeminfo
Open →
Windows CMD
tasklist — Basic Usage

Use tasklist for a standard administrative task.

tasklist /svc
Open →
Windows CMD
taskkill — Basic Usage

Use taskkill for a standard administrative task.

taskkill /PID 1234 /F
Open →
Windows CMD
sc query — Basic Usage

Use sc query for a standard administrative task.

sc query type= service state= all
Open →
Windows CMD
sc start — Basic Usage

Use sc start for a standard administrative task.

sc start Spooler
Open →
Windows CMD
sc stop — Basic Usage

Use sc stop for a standard administrative task.

sc stop Spooler
Open →
Windows CMD
net user — Basic Usage

Use net user for a standard administrative task.

net user
Open →
Windows CMD
net localgroup — Basic Usage

Use net localgroup for a standard administrative task.

net localgroup Administrators
Open →
Windows CMD
net use — Basic Usage

Use net use for a standard administrative task.

net use Z: \server\share /persistent:yes
Open →
Windows CMD
net share — Basic Usage

Use net share for a standard administrative task.

net share
Open →
Windows CMD
gpupdate — Basic Usage

Use gpupdate for a standard administrative task.

gpupdate /force
Open →
Windows CMD
gpresult — Basic Usage

Use gpresult for a standard administrative task.

gpresult /h gpresult.html
Open →
Windows CMD
sfc — Basic Usage

Use sfc for a standard administrative task.

sfc /scannow
Open →
Windows CMD
dism — Basic Usage

Use dism for a standard administrative task.

DISM /Online /Cleanup-Image /RestoreHealth
Open →
Windows CMD
chkdsk — Basic Usage

Use chkdsk for a standard administrative task.

chkdsk C: /scan
Open →
Windows CMD
robocopy — Basic Usage

Use robocopy for a standard administrative task.

robocopy C:\Source D:\Backup /MIR /R:2 /W:5 /LOG:backup.log
Open →
Windows CMD
xcopy — Basic Usage

Use xcopy for a standard administrative task.

xcopy C:\Source D:\Backup /E /I /H
Open →
Windows CMD
dir — Basic Usage

Use dir for a standard administrative task.

dir C:\Logs /s /b
Open →
Windows CMD
findstr — Basic Usage

Use findstr for a standard administrative task.

findstr /s /i "error" C:\Logs\*.log
Open →
Windows CMD
wevtutil — Basic Usage

Use wevtutil for a standard administrative task.

wevtutil qe System /c:20 /f:text
Open →
Windows CMD
schtasks query — Basic Usage

Use schtasks query for a standard administrative task.

schtasks /query /fo LIST /v
Open →
Windows CMD
schtasks run — Basic Usage

Use schtasks run for a standard administrative task.

schtasks /run /tn "Daily Backup"
Open →
Windows CMD
certutil hashfile — Basic Usage

Use certutil hashfile for a standard administrative task.

certutil -hashfile installer.exe SHA256
Open →
Windows CMD
powercfg — Basic Usage

Use powercfg for a standard administrative task.

powercfg /batteryreport
Open →
Windows CMD
driverquery — Basic Usage

Use driverquery for a standard administrative task.

driverquery /v
Open →
Windows CMD
wmic legacy — Basic Usage

Use wmic legacy for a standard administrative task.

wmic os get Caption,Version,BuildNumber
Open →
Windows CMD
ipconfig — Export Results

Export the output of ipconfig for documentation or review.

ipconfig /all
Open →
Windows CMD
ipconfig flushdns — Export Results

Export the output of ipconfig flushdns for documentation or review.

ipconfig /flushdns
Open →
Windows CMD
ping — Export Results

Export the output of ping for documentation or review.

ping example.com
Open →
Windows CMD
tracert — Export Results

Export the output of tracert for documentation or review.

tracert example.com
Open →
Windows CMD
pathping — Export Results

Export the output of pathping for documentation or review.

pathping example.com
Open →
Windows CMD
nslookup — Export Results

Export the output of nslookup for documentation or review.

nslookup -type=mx example.com
Open →
Windows CMD
netstat — Export Results

Export the output of netstat for documentation or review.

netstat -ano
Open →
Windows CMD
arp — Export Results

Export the output of arp for documentation or review.

arp -a
Open →
Windows CMD
route print — Export Results

Export the output of route print for documentation or review.

route print
Open →
Windows CMD
hostname — Export Results

Export the output of hostname for documentation or review.

hostname
Open →
Windows CMD
whoami — Export Results

Export the output of whoami for documentation or review.

whoami /all
Open →
Windows CMD
systeminfo — Export Results

Export the output of systeminfo for documentation or review.

systeminfo
Open →
Windows CMD
tasklist — Export Results

Export the output of tasklist for documentation or review.

tasklist /svc
Open →
Windows CMD
taskkill — Export Results

Export the output of taskkill for documentation or review.

taskkill /PID 1234 /F
Open →
Windows CMD
sc query — Export Results

Export the output of sc query for documentation or review.

sc query type= service state= all
Open →
Windows CMD
sc start — Export Results

Export the output of sc start for documentation or review.

sc start Spooler
Open →
Windows CMD
sc stop — Export Results

Export the output of sc stop for documentation or review.

sc stop Spooler
Open →
Windows CMD
net user — Export Results

Export the output of net user for documentation or review.

net user
Open →
Windows CMD
net localgroup — Export Results

Export the output of net localgroup for documentation or review.

net localgroup Administrators
Open →
Windows CMD
net use — Export Results

Export the output of net use for documentation or review.

net use Z: \server\share /persistent:yes
Open →
Windows CMD
net share — Export Results

Export the output of net share for documentation or review.

net share
Open →
Windows CMD
gpupdate — Export Results

Export the output of gpupdate for documentation or review.

gpupdate /force
Open →
Windows CMD
gpresult — Export Results

Export the output of gpresult for documentation or review.

gpresult /h gpresult.html
Open →
Windows CMD
sfc — Export Results

Export the output of sfc for documentation or review.

sfc /scannow
Open →
Windows CMD
dism — Export Results

Export the output of dism for documentation or review.

DISM /Online /Cleanup-Image /RestoreHealth
Open →
Windows CMD
chkdsk — Export Results

Export the output of chkdsk for documentation or review.

chkdsk C: /scan
Open →
Windows CMD
robocopy — Export Results

Export the output of robocopy for documentation or review.

robocopy C:\Source D:\Backup /MIR /R:2 /W:5 /LOG:backup.log
Open →
Windows CMD
xcopy — Export Results

Export the output of xcopy for documentation or review.

xcopy C:\Source D:\Backup /E /I /H
Open →
Windows CMD
dir — Export Results

Export the output of dir for documentation or review.

dir C:\Logs /s /b
Open →
Windows CMD
findstr — Export Results

Export the output of findstr for documentation or review.

findstr /s /i "error" C:\Logs\*.log
Open →
Windows CMD
wevtutil — Export Results

Export the output of wevtutil for documentation or review.

wevtutil qe System /c:20 /f:text
Open →
Windows CMD
schtasks query — Export Results

Export the output of schtasks query for documentation or review.

schtasks /query /fo LIST /v
Open →
Windows CMD
schtasks run — Export Results

Export the output of schtasks run for documentation or review.

schtasks /run /tn "Daily Backup"
Open →
Windows CMD
certutil hashfile — Export Results

Export the output of certutil hashfile for documentation or review.

certutil -hashfile installer.exe SHA256
Open →
Windows CMD
powercfg — Export Results

Export the output of powercfg for documentation or review.

powercfg /batteryreport
Open →
Windows CMD
driverquery — Export Results

Export the output of driverquery for documentation or review.

driverquery /v
Open →
Windows CMD
wmic legacy — Export Results

Export the output of wmic legacy for documentation or review.

wmic os get Caption,Version,BuildNumber
Open →
Windows CMD
ipconfig Help and Syntax

Display built-in Windows command-line help and syntax for ipconfig.

ipconfig /?
Open →
Windows CMD
ipconfig flushdns Help and Syntax

Display built-in Windows command-line help and syntax for ipconfig flushdns.

ipconfig /?
Open →
Windows CMD
ping Help and Syntax

Display built-in Windows command-line help and syntax for ping.

ping /?
Open →
Windows CMD
tracert Help and Syntax

Display built-in Windows command-line help and syntax for tracert.

tracert /?
Open →
Windows CMD
pathping Help and Syntax

Display built-in Windows command-line help and syntax for pathping.

pathping /?
Open →
Windows CMD
nslookup Help and Syntax

Display built-in Windows command-line help and syntax for nslookup.

nslookup /?
Open →
Windows CMD
netstat Help and Syntax

Display built-in Windows command-line help and syntax for netstat.

netstat /?
Open →
Windows CMD
arp Help and Syntax

Display built-in Windows command-line help and syntax for arp.

arp /?
Open →
Windows CMD
route print Help and Syntax

Display built-in Windows command-line help and syntax for route print.

route /?
Open →
Windows CMD
hostname Help and Syntax

Display built-in Windows command-line help and syntax for hostname.

hostname /?
Open →
Windows CMD
whoami Help and Syntax

Display built-in Windows command-line help and syntax for whoami.

whoami /?
Open →
Windows CMD
systeminfo Help and Syntax

Display built-in Windows command-line help and syntax for systeminfo.

systeminfo /?
Open →
Windows CMD
tasklist Help and Syntax

Display built-in Windows command-line help and syntax for tasklist.

tasklist /?
Open →
Windows CMD
taskkill Help and Syntax

Display built-in Windows command-line help and syntax for taskkill.

taskkill /?
Open →
Windows CMD
sc query Help and Syntax

Display built-in Windows command-line help and syntax for sc query.

sc /?
Open →
Windows CMD
sc start Help and Syntax

Display built-in Windows command-line help and syntax for sc start.

sc /?
Open →
Windows CMD
sc stop Help and Syntax

Display built-in Windows command-line help and syntax for sc stop.

sc /?
Open →
Windows CMD
net user Help and Syntax

Display built-in Windows command-line help and syntax for net user.

net /?
Open →
Windows CMD
net localgroup Help and Syntax

Display built-in Windows command-line help and syntax for net localgroup.

net /?
Open →
Windows CMD
net use Help and Syntax

Display built-in Windows command-line help and syntax for net use.

net /?
Open →
Windows CMD
net share Help and Syntax

Display built-in Windows command-line help and syntax for net share.

net /?
Open →
Windows CMD
gpupdate Help and Syntax

Display built-in Windows command-line help and syntax for gpupdate.

gpupdate /?
Open →
Windows CMD
gpresult Help and Syntax

Display built-in Windows command-line help and syntax for gpresult.

gpresult /?
Open →
Windows CMD
sfc Help and Syntax

Display built-in Windows command-line help and syntax for sfc.

sfc /?
Open →
Windows CMD
dism Help and Syntax

Display built-in Windows command-line help and syntax for dism.

DISM /?
Open →
Windows CMD
chkdsk Help and Syntax

Display built-in Windows command-line help and syntax for chkdsk.

chkdsk /?
Open →
Windows CMD
robocopy Help and Syntax

Display built-in Windows command-line help and syntax for robocopy.

robocopy /?
Open →
Windows CMD
xcopy Help and Syntax

Display built-in Windows command-line help and syntax for xcopy.

xcopy /?
Open →
Windows CMD
dir Help and Syntax

Display built-in Windows command-line help and syntax for dir.

dir /?
Open →
Windows CMD
findstr Help and Syntax

Display built-in Windows command-line help and syntax for findstr.

findstr /?
Open →
Windows CMD
wevtutil Help and Syntax

Display built-in Windows command-line help and syntax for wevtutil.

wevtutil /?
Open →
Windows CMD
schtasks query Help and Syntax

Display built-in Windows command-line help and syntax for schtasks query.

schtasks /?
Open →
Windows CMD
schtasks run Help and Syntax

Display built-in Windows command-line help and syntax for schtasks run.

schtasks /?
Open →
Windows CMD
certutil hashfile Help and Syntax

Display built-in Windows command-line help and syntax for certutil hashfile.

certutil /?
Open →
Windows CMD
powercfg Help and Syntax

Display built-in Windows command-line help and syntax for powercfg.

powercfg /?
Open →
Windows CMD
driverquery Help and Syntax

Display built-in Windows command-line help and syntax for driverquery.

driverquery /?
Open →
Windows CMD
wmic legacy Help and Syntax

Display built-in Windows command-line help and syntax for wmic legacy.

wmic /?
Open →
Windows CMD
ipconfig — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for ipconfig — Basic Usage.

ipconfig /?
Open →
Windows CMD
ipconfig flushdns — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for ipconfig flushdns — Basic Usage.

ipconfig /?
Open →
Windows CMD
ping — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for ping — Basic Usage.

ping /?
Open →
Windows CMD
tracert — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for tracert — Basic Usage.

tracert /?
Open →
Windows CMD
pathping — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for pathping — Basic Usage.

pathping /?
Open →
Windows CMD
nslookup — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for nslookup — Basic Usage.

nslookup /?
Open →
Windows CMD
netstat — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for netstat — Basic Usage.

netstat /?
Open →
Windows CMD
arp — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for arp — Basic Usage.

arp /?
Open →
Windows CMD
route print — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for route print — Basic Usage.

route /?
Open →
Windows CMD
hostname — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for hostname — Basic Usage.

hostname /?
Open →
Windows CMD
whoami — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for whoami — Basic Usage.

whoami /?
Open →
Windows CMD
systeminfo — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for systeminfo — Basic Usage.

systeminfo /?
Open →
Windows CMD
tasklist — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for tasklist — Basic Usage.

tasklist /?
Open →
Windows CMD
taskkill — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for taskkill — Basic Usage.

taskkill /?
Open →
Windows CMD
sc query — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for sc query — Basic Usage.

sc /?
Open →
Windows CMD
sc start — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for sc start — Basic Usage.

sc /?
Open →
Windows CMD
sc stop — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for sc stop — Basic Usage.

sc /?
Open →
Windows CMD
net user — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for net user — Basic Usage.

net /?
Open →
Windows CMD
net localgroup — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for net localgroup — Basic Usage.

net /?
Open →
Windows CMD
net use — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for net use — Basic Usage.

net /?
Open →
Windows CMD
net share — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for net share — Basic Usage.

net /?
Open →
Windows CMD
gpupdate — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for gpupdate — Basic Usage.

gpupdate /?
Open →
Windows CMD
gpresult — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for gpresult — Basic Usage.

gpresult /?
Open →
Windows CMD
sfc — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for sfc — Basic Usage.

sfc /?
Open →
Windows CMD
dism — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for dism — Basic Usage.

DISM /?
Open →
Windows CMD
chkdsk — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for chkdsk — Basic Usage.

chkdsk /?
Open →
Windows CMD
robocopy — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for robocopy — Basic Usage.

robocopy /?
Open →
Windows CMD
xcopy — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for xcopy — Basic Usage.

xcopy /?
Open →
Windows CMD
dir — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for dir — Basic Usage.

dir /?
Open →
Windows CMD
findstr — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for findstr — Basic Usage.

findstr /?
Open →
Windows CMD
wevtutil — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for wevtutil — Basic Usage.

wevtutil /?
Open →
Windows CMD
schtasks query — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for schtasks query — Basic Usage.

schtasks /?
Open →
Windows CMD
schtasks run — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for schtasks run — Basic Usage.

schtasks /?
Open →
Windows CMD
certutil hashfile — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for certutil hashfile — Basic Usage.

certutil /?
Open →
Windows CMD
powercfg — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for powercfg — Basic Usage.

powercfg /?
Open →
Windows CMD
driverquery — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for driverquery — Basic Usage.

driverquery /?
Open →
Windows CMD
wmic legacy — Basic Usage Help and Syntax

Display built-in Windows command-line help and syntax for wmic legacy — Basic Usage.

wmic /?
Open →
Windows CMD
ipconfig — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for ipconfig — Export Results.

ipconfig /?
Open →
Windows CMD
ipconfig flushdns — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for ipconfig flushdns — Export Results.

ipconfig /?
Open →
Windows CMD
ping — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for ping — Export Results.

ping /?
Open →
Windows CMD
tracert — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for tracert — Export Results.

tracert /?
Open →
Windows CMD
pathping — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for pathping — Export Results.

pathping /?
Open →
Windows CMD
nslookup — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for nslookup — Export Results.

nslookup /?
Open →
Windows CMD
netstat — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for netstat — Export Results.

netstat /?
Open →
Windows CMD
arp — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for arp — Export Results.

arp /?
Open →
Windows CMD
route print — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for route print — Export Results.

route /?
Open →
Windows CMD
hostname — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for hostname — Export Results.

hostname /?
Open →
Windows CMD
whoami — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for whoami — Export Results.

whoami /?
Open →
Windows CMD
systeminfo — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for systeminfo — Export Results.

systeminfo /?
Open →
Windows CMD
tasklist — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for tasklist — Export Results.

tasklist /?
Open →
Windows CMD
taskkill — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for taskkill — Export Results.

taskkill /?
Open →
Windows CMD
sc query — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for sc query — Export Results.

sc /?
Open →
Windows CMD
sc start — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for sc start — Export Results.

sc /?
Open →
Windows CMD
sc stop — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for sc stop — Export Results.

sc /?
Open →
Windows CMD
net user — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for net user — Export Results.

net /?
Open →
Windows CMD
net localgroup — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for net localgroup — Export Results.

net /?
Open →
Windows CMD
net use — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for net use — Export Results.

net /?
Open →
Windows CMD
net share — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for net share — Export Results.

net /?
Open →
Windows CMD
gpupdate — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for gpupdate — Export Results.

gpupdate /?
Open →
Windows CMD
gpresult — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for gpresult — Export Results.

gpresult /?
Open →
Windows CMD
sfc — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for sfc — Export Results.

sfc /?
Open →
Windows CMD
dism — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for dism — Export Results.

DISM /?
Open →
Windows CMD
chkdsk — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for chkdsk — Export Results.

chkdsk /?
Open →
Windows CMD
robocopy — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for robocopy — Export Results.

robocopy /?
Open →
Windows CMD
xcopy — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for xcopy — Export Results.

xcopy /?
Open →
Windows CMD
dir — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for dir — Export Results.

dir /?
Open →
Windows CMD
findstr — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for findstr — Export Results.

findstr /?
Open →
Windows CMD
wevtutil — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for wevtutil — Export Results.

wevtutil /?
Open →
Windows CMD
schtasks query — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for schtasks query — Export Results.

schtasks /?
Open →
Windows CMD
schtasks run — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for schtasks run — Export Results.

schtasks /?
Open →
Windows CMD
certutil hashfile — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for certutil hashfile — Export Results.

certutil /?
Open →
Windows CMD
powercfg — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for powercfg — Export Results.

powercfg /?
Open →
Windows CMD
driverquery — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for driverquery — Export Results.

driverquery /?
Open →
Windows CMD
wmic legacy — Export Results Help and Syntax

Display built-in Windows command-line help and syntax for wmic legacy — Export Results.

wmic /?
Open →
Windows CMD
ipconfig — Save output

Save command output and errors to a text file. Base task: Display Windows TCP/IP configuration.

ipconfig /all > command-results.txt 2>&1
Open →
Windows CMD
ipconfig — Append output

Append command output and errors to an existing log. Base task: Display Windows TCP/IP configuration.

ipconfig /all >> command-results.txt 2>&1
Open →
Windows CMD
ipconfig — Run with timestamp

Print the current date and time before running the command. Base task: Display Windows TCP/IP configuration.

echo %DATE% %TIME% & ipconfig /all
Open →
Windows CMD
ipconfig — Show success status

Run the command and display its exit code. Base task: Display Windows TCP/IP configuration.

ipconfig /all & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
ipconfig flushdns — Save output

Save command output and errors to a text file. Base task: Clear the Windows DNS resolver cache.

ipconfig /flushdns > command-results.txt 2>&1
Open →
Windows CMD
ipconfig flushdns — Append output

Append command output and errors to an existing log. Base task: Clear the Windows DNS resolver cache.

ipconfig /flushdns >> command-results.txt 2>&1
Open →
Windows CMD
ipconfig flushdns — Run with timestamp

Print the current date and time before running the command. Base task: Clear the Windows DNS resolver cache.

echo %DATE% %TIME% & ipconfig /flushdns
Open →
Windows CMD
ipconfig flushdns — Show success status

Run the command and display its exit code. Base task: Clear the Windows DNS resolver cache.

ipconfig /flushdns & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
ping — Save output

Save command output and errors to a text file. Base task: Test ICMP reachability.

ping example.com > command-results.txt 2>&1
Open →
Windows CMD
ping — Append output

Append command output and errors to an existing log. Base task: Test ICMP reachability.

ping example.com >> command-results.txt 2>&1
Open →
Windows CMD
ping — Run with timestamp

Print the current date and time before running the command. Base task: Test ICMP reachability.

echo %DATE% %TIME% & ping example.com
Open →
Windows CMD
ping — Show success status

Run the command and display its exit code. Base task: Test ICMP reachability.

ping example.com & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
tracert — Save output

Save command output and errors to a text file. Base task: Trace the network path to a host.

tracert example.com > command-results.txt 2>&1
Open →
Windows CMD
tracert — Append output

Append command output and errors to an existing log. Base task: Trace the network path to a host.

tracert example.com >> command-results.txt 2>&1
Open →
Windows CMD
tracert — Run with timestamp

Print the current date and time before running the command. Base task: Trace the network path to a host.

echo %DATE% %TIME% & tracert example.com
Open →
Windows CMD
tracert — Show success status

Run the command and display its exit code. Base task: Trace the network path to a host.

tracert example.com & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
pathping — Save output

Save command output and errors to a text file. Base task: Measure route latency and packet loss.

pathping example.com > command-results.txt 2>&1
Open →
Windows CMD
pathping — Append output

Append command output and errors to an existing log. Base task: Measure route latency and packet loss.

pathping example.com >> command-results.txt 2>&1
Open →
Windows CMD
pathping — Run with timestamp

Print the current date and time before running the command. Base task: Measure route latency and packet loss.

echo %DATE% %TIME% & pathping example.com
Open →
Windows CMD
pathping — Show success status

Run the command and display its exit code. Base task: Measure route latency and packet loss.

pathping example.com & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
nslookup — Save output

Save command output and errors to a text file. Base task: Query DNS records.

nslookup -type=mx example.com > command-results.txt 2>&1
Open →
Windows CMD
nslookup — Append output

Append command output and errors to an existing log. Base task: Query DNS records.

nslookup -type=mx example.com >> command-results.txt 2>&1
Open →
Windows CMD
nslookup — Run with timestamp

Print the current date and time before running the command. Base task: Query DNS records.

echo %DATE% %TIME% & nslookup -type=mx example.com
Open →
Windows CMD
nslookup — Show success status

Run the command and display its exit code. Base task: Query DNS records.

nslookup -type=mx example.com & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
netstat — Save output

Save command output and errors to a text file. Base task: Display network connections and owning process IDs.

netstat -ano > command-results.txt 2>&1
Open →
Windows CMD
netstat — Append output

Append command output and errors to an existing log. Base task: Display network connections and owning process IDs.

netstat -ano >> command-results.txt 2>&1
Open →
Windows CMD
netstat — Run with timestamp

Print the current date and time before running the command. Base task: Display network connections and owning process IDs.

echo %DATE% %TIME% & netstat -ano
Open →
Windows CMD
netstat — Show success status

Run the command and display its exit code. Base task: Display network connections and owning process IDs.

netstat -ano & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
arp — Save output

Save command output and errors to a text file. Base task: Display the ARP cache.

arp -a > command-results.txt 2>&1
Open →
Windows CMD
arp — Append output

Append command output and errors to an existing log. Base task: Display the ARP cache.

arp -a >> command-results.txt 2>&1
Open →
Windows CMD
arp — Run with timestamp

Print the current date and time before running the command. Base task: Display the ARP cache.

echo %DATE% %TIME% & arp -a
Open →
Windows CMD
arp — Show success status

Run the command and display its exit code. Base task: Display the ARP cache.

arp -a & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
route print — Save output

Save command output and errors to a text file. Base task: Display the IPv4 and IPv6 routing tables.

route print > command-results.txt 2>&1
Open →
Windows CMD
route print — Append output

Append command output and errors to an existing log. Base task: Display the IPv4 and IPv6 routing tables.

route print >> command-results.txt 2>&1
Open →
Windows CMD
route print — Run with timestamp

Print the current date and time before running the command. Base task: Display the IPv4 and IPv6 routing tables.

echo %DATE% %TIME% & route print
Open →
Windows CMD
route print — Show success status

Run the command and display its exit code. Base task: Display the IPv4 and IPv6 routing tables.

route print & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
hostname — Save output

Save command output and errors to a text file. Base task: Display the local computer name.

hostname > command-results.txt 2>&1
Open →
Windows CMD
hostname — Append output

Append command output and errors to an existing log. Base task: Display the local computer name.

hostname >> command-results.txt 2>&1
Open →
Windows CMD
hostname — Run with timestamp

Print the current date and time before running the command. Base task: Display the local computer name.

echo %DATE% %TIME% & hostname
Open →
Windows CMD
hostname — Show success status

Run the command and display its exit code. Base task: Display the local computer name.

hostname & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
whoami — Save output

Save command output and errors to a text file. Base task: Display the current security identity and token details.

whoami /all > command-results.txt 2>&1
Open →
Windows CMD
whoami — Append output

Append command output and errors to an existing log. Base task: Display the current security identity and token details.

whoami /all >> command-results.txt 2>&1
Open →
Windows CMD
whoami — Run with timestamp

Print the current date and time before running the command. Base task: Display the current security identity and token details.

echo %DATE% %TIME% & whoami /all
Open →
Windows CMD
whoami — Show success status

Run the command and display its exit code. Base task: Display the current security identity and token details.

whoami /all & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
systeminfo — Save output

Save command output and errors to a text file. Base task: Display operating system and hardware information.

systeminfo > command-results.txt 2>&1
Open →
Windows CMD
systeminfo — Append output

Append command output and errors to an existing log. Base task: Display operating system and hardware information.

systeminfo >> command-results.txt 2>&1
Open →
Windows CMD
systeminfo — Run with timestamp

Print the current date and time before running the command. Base task: Display operating system and hardware information.

echo %DATE% %TIME% & systeminfo
Open →
Windows CMD
systeminfo — Show success status

Run the command and display its exit code. Base task: Display operating system and hardware information.

systeminfo & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
tasklist — Save output

Save command output and errors to a text file. Base task: List running processes and hosted services.

tasklist /svc > command-results.txt 2>&1
Open →
Windows CMD
tasklist — Append output

Append command output and errors to an existing log. Base task: List running processes and hosted services.

tasklist /svc >> command-results.txt 2>&1
Open →
Windows CMD
tasklist — Run with timestamp

Print the current date and time before running the command. Base task: List running processes and hosted services.

echo %DATE% %TIME% & tasklist /svc
Open →
Windows CMD
tasklist — Show success status

Run the command and display its exit code. Base task: List running processes and hosted services.

tasklist /svc & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
taskkill — Save output

Save command output and errors to a text file. Base task: Terminate a process by process ID.

taskkill /PID 1234 /F > command-results.txt 2>&1
Open →
Windows CMD
taskkill — Append output

Append command output and errors to an existing log. Base task: Terminate a process by process ID.

taskkill /PID 1234 /F >> command-results.txt 2>&1
Open →
Windows CMD
taskkill — Run with timestamp

Print the current date and time before running the command. Base task: Terminate a process by process ID.

echo %DATE% %TIME% & taskkill /PID 1234 /F
Open →
Windows CMD
taskkill — Show success status

Run the command and display its exit code. Base task: Terminate a process by process ID.

taskkill /PID 1234 /F & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
sc query — Save output

Save command output and errors to a text file. Base task: Query Windows services.

sc query type= service state= all > command-results.txt 2>&1
Open →
Windows CMD
sc query — Append output

Append command output and errors to an existing log. Base task: Query Windows services.

sc query type= service state= all >> command-results.txt 2>&1
Open →
Windows CMD
sc query — Run with timestamp

Print the current date and time before running the command. Base task: Query Windows services.

echo %DATE% %TIME% & sc query type= service state= all
Open →
Windows CMD
sc query — Show success status

Run the command and display its exit code. Base task: Query Windows services.

sc query type= service state= all & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
sc start — Save output

Save command output and errors to a text file. Base task: Start a Windows service.

sc start Spooler > command-results.txt 2>&1
Open →
Windows CMD
sc start — Append output

Append command output and errors to an existing log. Base task: Start a Windows service.

sc start Spooler >> command-results.txt 2>&1
Open →
Windows CMD
sc start — Run with timestamp

Print the current date and time before running the command. Base task: Start a Windows service.

echo %DATE% %TIME% & sc start Spooler
Open →
Windows CMD
sc start — Show success status

Run the command and display its exit code. Base task: Start a Windows service.

sc start Spooler & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
sc stop — Save output

Save command output and errors to a text file. Base task: Stop a Windows service.

sc stop Spooler > command-results.txt 2>&1
Open →
Windows CMD
sc stop — Append output

Append command output and errors to an existing log. Base task: Stop a Windows service.

sc stop Spooler >> command-results.txt 2>&1
Open →
Windows CMD
sc stop — Run with timestamp

Print the current date and time before running the command. Base task: Stop a Windows service.

echo %DATE% %TIME% & sc stop Spooler
Open →
Windows CMD
sc stop — Show success status

Run the command and display its exit code. Base task: Stop a Windows service.

sc stop Spooler & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
net user — Save output

Save command output and errors to a text file. Base task: List local user accounts.

net user > command-results.txt 2>&1
Open →
Windows CMD
net user — Append output

Append command output and errors to an existing log. Base task: List local user accounts.

net user >> command-results.txt 2>&1
Open →
Windows CMD
net user — Run with timestamp

Print the current date and time before running the command. Base task: List local user accounts.

echo %DATE% %TIME% & net user
Open →
Windows CMD
net user — Show success status

Run the command and display its exit code. Base task: List local user accounts.

net user & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
net localgroup — Save output

Save command output and errors to a text file. Base task: List members of a local group.

net localgroup Administrators > command-results.txt 2>&1
Open →
Windows CMD
net localgroup — Append output

Append command output and errors to an existing log. Base task: List members of a local group.

net localgroup Administrators >> command-results.txt 2>&1
Open →
Windows CMD
net localgroup — Run with timestamp

Print the current date and time before running the command. Base task: List members of a local group.

echo %DATE% %TIME% & net localgroup Administrators
Open →
Windows CMD
net localgroup — Show success status

Run the command and display its exit code. Base task: List members of a local group.

net localgroup Administrators & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
net use — Save output

Save command output and errors to a text file. Base task: Map a network drive.

net use Z: \server\share /persistent:yes > command-results.txt 2>&1
Open →
Windows CMD
net use — Append output

Append command output and errors to an existing log. Base task: Map a network drive.

net use Z: \server\share /persistent:yes >> command-results.txt 2>&1
Open →
Windows CMD
net use — Run with timestamp

Print the current date and time before running the command. Base task: Map a network drive.

echo %DATE% %TIME% & net use Z: \server\share /persistent:yes
Open →
Windows CMD
net use — Show success status

Run the command and display its exit code. Base task: Map a network drive.

net use Z: \server\share /persistent:yes & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
net share — Save output

Save command output and errors to a text file. Base task: List local SMB shares.

net share > command-results.txt 2>&1
Open →
Windows CMD
net share — Append output

Append command output and errors to an existing log. Base task: List local SMB shares.

net share >> command-results.txt 2>&1
Open →
Windows CMD
net share — Run with timestamp

Print the current date and time before running the command. Base task: List local SMB shares.

echo %DATE% %TIME% & net share
Open →
Windows CMD
net share — Show success status

Run the command and display its exit code. Base task: List local SMB shares.

net share & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
gpupdate — Save output

Save command output and errors to a text file. Base task: Refresh Group Policy.

gpupdate /force > command-results.txt 2>&1
Open →
Windows CMD
gpupdate — Append output

Append command output and errors to an existing log. Base task: Refresh Group Policy.

gpupdate /force >> command-results.txt 2>&1
Open →
Windows CMD
gpupdate — Run with timestamp

Print the current date and time before running the command. Base task: Refresh Group Policy.

echo %DATE% %TIME% & gpupdate /force
Open →
Windows CMD
gpupdate — Show success status

Run the command and display its exit code. Base task: Refresh Group Policy.

gpupdate /force & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
gpresult — Save output

Save command output and errors to a text file. Base task: Generate a Group Policy results report.

gpresult /h gpresult.html > command-results.txt 2>&1
Open →
Windows CMD
gpresult — Append output

Append command output and errors to an existing log. Base task: Generate a Group Policy results report.

gpresult /h gpresult.html >> command-results.txt 2>&1
Open →
Windows CMD
gpresult — Run with timestamp

Print the current date and time before running the command. Base task: Generate a Group Policy results report.

echo %DATE% %TIME% & gpresult /h gpresult.html
Open →
Windows CMD
gpresult — Show success status

Run the command and display its exit code. Base task: Generate a Group Policy results report.

gpresult /h gpresult.html & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
sfc — Save output

Save command output and errors to a text file. Base task: Scan and repair protected Windows system files.

sfc /scannow > command-results.txt 2>&1
Open →
Windows CMD
sfc — Append output

Append command output and errors to an existing log. Base task: Scan and repair protected Windows system files.

sfc /scannow >> command-results.txt 2>&1
Open →
Windows CMD
sfc — Run with timestamp

Print the current date and time before running the command. Base task: Scan and repair protected Windows system files.

echo %DATE% %TIME% & sfc /scannow
Open →
Windows CMD
sfc — Show success status

Run the command and display its exit code. Base task: Scan and repair protected Windows system files.

sfc /scannow & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
dism — Save output

Save command output and errors to a text file. Base task: Repair the Windows component store.

DISM /Online /Cleanup-Image /RestoreHealth > command-results.txt 2>&1
Open →
Windows CMD
dism — Append output

Append command output and errors to an existing log. Base task: Repair the Windows component store.

DISM /Online /Cleanup-Image /RestoreHealth >> command-results.txt 2>&1
Open →
Windows CMD
dism — Run with timestamp

Print the current date and time before running the command. Base task: Repair the Windows component store.

echo %DATE% %TIME% & DISM /Online /Cleanup-Image /RestoreHealth
Open →
Windows CMD
dism — Show success status

Run the command and display its exit code. Base task: Repair the Windows component store.

DISM /Online /Cleanup-Image /RestoreHealth & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
chkdsk — Save output

Save command output and errors to a text file. Base task: Scan a volume for file system errors.

chkdsk C: /scan > command-results.txt 2>&1
Open →
Windows CMD
chkdsk — Append output

Append command output and errors to an existing log. Base task: Scan a volume for file system errors.

chkdsk C: /scan >> command-results.txt 2>&1
Open →
Windows CMD
chkdsk — Run with timestamp

Print the current date and time before running the command. Base task: Scan a volume for file system errors.

echo %DATE% %TIME% & chkdsk C: /scan
Open →
Windows CMD
chkdsk — Show success status

Run the command and display its exit code. Base task: Scan a volume for file system errors.

chkdsk C: /scan & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
robocopy — Save output

Save command output and errors to a text file. Base task: Copy and synchronize directory trees.

robocopy C:\Source D:\Backup /MIR /R:2 /W:5 /LOG:backup.log > command-results.txt 2>&1
Open →
Windows CMD
robocopy — Append output

Append command output and errors to an existing log. Base task: Copy and synchronize directory trees.

robocopy C:\Source D:\Backup /MIR /R:2 /W:5 /LOG:backup.log >> command-results.txt 2>&1
Open →
Windows CMD
robocopy — Run with timestamp

Print the current date and time before running the command. Base task: Copy and synchronize directory trees.

echo %DATE% %TIME% & robocopy C:\Source D:\Backup /MIR /R:2 /W:5 /LOG:backup.log
Open →
Windows CMD
robocopy — Show success status

Run the command and display its exit code. Base task: Copy and synchronize directory trees.

robocopy C:\Source D:\Backup /MIR /R:2 /W:5 /LOG:backup.log & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
xcopy — Save output

Save command output and errors to a text file. Base task: Copy files and folders including hidden files.

xcopy C:\Source D:\Backup /E /I /H > command-results.txt 2>&1
Open →
Windows CMD
xcopy — Append output

Append command output and errors to an existing log. Base task: Copy files and folders including hidden files.

xcopy C:\Source D:\Backup /E /I /H >> command-results.txt 2>&1
Open →
Windows CMD
xcopy — Run with timestamp

Print the current date and time before running the command. Base task: Copy files and folders including hidden files.

echo %DATE% %TIME% & xcopy C:\Source D:\Backup /E /I /H
Open →
Windows CMD
xcopy — Show success status

Run the command and display its exit code. Base task: Copy files and folders including hidden files.

xcopy C:\Source D:\Backup /E /I /H & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
dir — Save output

Save command output and errors to a text file. Base task: List files recursively.

dir C:\Logs /s /b > command-results.txt 2>&1
Open →
Windows CMD
dir — Append output

Append command output and errors to an existing log. Base task: List files recursively.

dir C:\Logs /s /b >> command-results.txt 2>&1
Open →
Windows CMD
dir — Run with timestamp

Print the current date and time before running the command. Base task: List files recursively.

echo %DATE% %TIME% & dir C:\Logs /s /b
Open →
Windows CMD
dir — Show success status

Run the command and display its exit code. Base task: List files recursively.

dir C:\Logs /s /b & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
findstr — Save output

Save command output and errors to a text file. Base task: Search text across files.

findstr /s /i "error" C:\Logs\*.log > command-results.txt 2>&1
Open →
Windows CMD
findstr — Append output

Append command output and errors to an existing log. Base task: Search text across files.

findstr /s /i "error" C:\Logs\*.log >> command-results.txt 2>&1
Open →
Windows CMD
findstr — Run with timestamp

Print the current date and time before running the command. Base task: Search text across files.

echo %DATE% %TIME% & findstr /s /i "error" C:\Logs\*.log
Open →
Windows CMD
findstr — Show success status

Run the command and display its exit code. Base task: Search text across files.

findstr /s /i "error" C:\Logs\*.log & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
wevtutil — Save output

Save command output and errors to a text file. Base task: Query Windows event logs.

wevtutil qe System /c:20 /f:text > command-results.txt 2>&1
Open →
Windows CMD
wevtutil — Append output

Append command output and errors to an existing log. Base task: Query Windows event logs.

wevtutil qe System /c:20 /f:text >> command-results.txt 2>&1
Open →
Windows CMD
wevtutil — Run with timestamp

Print the current date and time before running the command. Base task: Query Windows event logs.

echo %DATE% %TIME% & wevtutil qe System /c:20 /f:text
Open →
Windows CMD
wevtutil — Show success status

Run the command and display its exit code. Base task: Query Windows event logs.

wevtutil qe System /c:20 /f:text & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
schtasks query — Save output

Save command output and errors to a text file. Base task: List scheduled tasks.

schtasks /query /fo LIST /v > command-results.txt 2>&1
Open →
Windows CMD
schtasks query — Append output

Append command output and errors to an existing log. Base task: List scheduled tasks.

schtasks /query /fo LIST /v >> command-results.txt 2>&1
Open →
Windows CMD
schtasks query — Run with timestamp

Print the current date and time before running the command. Base task: List scheduled tasks.

echo %DATE% %TIME% & schtasks /query /fo LIST /v
Open →
Windows CMD
schtasks query — Show success status

Run the command and display its exit code. Base task: List scheduled tasks.

schtasks /query /fo LIST /v & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
schtasks run — Save output

Save command output and errors to a text file. Base task: Start a scheduled task.

schtasks /run /tn "Daily Backup" > command-results.txt 2>&1
Open →
Windows CMD
schtasks run — Append output

Append command output and errors to an existing log. Base task: Start a scheduled task.

schtasks /run /tn "Daily Backup" >> command-results.txt 2>&1
Open →
Windows CMD
schtasks run — Run with timestamp

Print the current date and time before running the command. Base task: Start a scheduled task.

echo %DATE% %TIME% & schtasks /run /tn "Daily Backup"
Open →
Windows CMD
schtasks run — Show success status

Run the command and display its exit code. Base task: Start a scheduled task.

schtasks /run /tn "Daily Backup" & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
certutil hashfile — Save output

Save command output and errors to a text file. Base task: Calculate a file hash.

certutil -hashfile installer.exe SHA256 > command-results.txt 2>&1
Open →
Windows CMD
certutil hashfile — Append output

Append command output and errors to an existing log. Base task: Calculate a file hash.

certutil -hashfile installer.exe SHA256 >> command-results.txt 2>&1
Open →
Windows CMD
certutil hashfile — Run with timestamp

Print the current date and time before running the command. Base task: Calculate a file hash.

echo %DATE% %TIME% & certutil -hashfile installer.exe SHA256
Open →
Windows CMD
certutil hashfile — Show success status

Run the command and display its exit code. Base task: Calculate a file hash.

certutil -hashfile installer.exe SHA256 & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
powercfg — Save output

Save command output and errors to a text file. Base task: Generate a Windows battery report.

powercfg /batteryreport > command-results.txt 2>&1
Open →
Windows CMD
powercfg — Append output

Append command output and errors to an existing log. Base task: Generate a Windows battery report.

powercfg /batteryreport >> command-results.txt 2>&1
Open →
Windows CMD
powercfg — Run with timestamp

Print the current date and time before running the command. Base task: Generate a Windows battery report.

echo %DATE% %TIME% & powercfg /batteryreport
Open →
Windows CMD
powercfg — Show success status

Run the command and display its exit code. Base task: Generate a Windows battery report.

powercfg /batteryreport & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
driverquery — Save output

Save command output and errors to a text file. Base task: List installed drivers.

driverquery /v > command-results.txt 2>&1
Open →
Windows CMD
driverquery — Append output

Append command output and errors to an existing log. Base task: List installed drivers.

driverquery /v >> command-results.txt 2>&1
Open →
Windows CMD
driverquery — Run with timestamp

Print the current date and time before running the command. Base task: List installed drivers.

echo %DATE% %TIME% & driverquery /v
Open →
Windows CMD
driverquery — Show success status

Run the command and display its exit code. Base task: List installed drivers.

driverquery /v & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
wmic legacy — Save output

Save command output and errors to a text file. Base task: Query basic Windows information on systems where WMIC remains available.

wmic os get Caption,Version,BuildNumber > command-results.txt 2>&1
Open →
Windows CMD
wmic legacy — Append output

Append command output and errors to an existing log. Base task: Query basic Windows information on systems where WMIC remains available.

wmic os get Caption,Version,BuildNumber >> command-results.txt 2>&1
Open →
Windows CMD
wmic legacy — Run with timestamp

Print the current date and time before running the command. Base task: Query basic Windows information on systems where WMIC remains available.

echo %DATE% %TIME% & wmic os get Caption,Version,BuildNumber
Open →
Windows CMD
wmic legacy — Show success status

Run the command and display its exit code. Base task: Query basic Windows information on systems where WMIC remains available.

wmic os get Caption,Version,BuildNumber & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
ipconfig Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for ipconfig.

ipconfig /? > command-results.txt 2>&1
Open →
Windows CMD
ipconfig Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for ipconfig.

ipconfig /? >> command-results.txt 2>&1
Open →
Windows CMD
ipconfig Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for ipconfig.

echo %DATE% %TIME% & ipconfig /?
Open →
Windows CMD
ipconfig Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for ipconfig.

ipconfig /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
ping Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for ping.

ping /? > command-results.txt 2>&1
Open →
Windows CMD
ping Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for ping.

ping /? >> command-results.txt 2>&1
Open →
Windows CMD
ping Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for ping.

echo %DATE% %TIME% & ping /?
Open →
Windows CMD
ping Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for ping.

ping /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
tracert Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for tracert.

tracert /? > command-results.txt 2>&1
Open →
Windows CMD
tracert Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for tracert.

tracert /? >> command-results.txt 2>&1
Open →
Windows CMD
tracert Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for tracert.

echo %DATE% %TIME% & tracert /?
Open →
Windows CMD
tracert Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for tracert.

tracert /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
pathping Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for pathping.

pathping /? > command-results.txt 2>&1
Open →
Windows CMD
pathping Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for pathping.

pathping /? >> command-results.txt 2>&1
Open →
Windows CMD
pathping Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for pathping.

echo %DATE% %TIME% & pathping /?
Open →
Windows CMD
pathping Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for pathping.

pathping /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
nslookup Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for nslookup.

nslookup /? > command-results.txt 2>&1
Open →
Windows CMD
nslookup Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for nslookup.

nslookup /? >> command-results.txt 2>&1
Open →
Windows CMD
nslookup Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for nslookup.

echo %DATE% %TIME% & nslookup /?
Open →
Windows CMD
nslookup Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for nslookup.

nslookup /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
netstat Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for netstat.

netstat /? > command-results.txt 2>&1
Open →
Windows CMD
netstat Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for netstat.

netstat /? >> command-results.txt 2>&1
Open →
Windows CMD
netstat Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for netstat.

echo %DATE% %TIME% & netstat /?
Open →
Windows CMD
netstat Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for netstat.

netstat /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
arp Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for arp.

arp /? > command-results.txt 2>&1
Open →
Windows CMD
arp Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for arp.

arp /? >> command-results.txt 2>&1
Open →
Windows CMD
arp Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for arp.

echo %DATE% %TIME% & arp /?
Open →
Windows CMD
arp Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for arp.

arp /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
route print Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for route print.

route /? > command-results.txt 2>&1
Open →
Windows CMD
route print Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for route print.

route /? >> command-results.txt 2>&1
Open →
Windows CMD
route print Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for route print.

echo %DATE% %TIME% & route /?
Open →
Windows CMD
route print Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for route print.

route /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
hostname Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for hostname.

hostname /? > command-results.txt 2>&1
Open →
Windows CMD
hostname Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for hostname.

hostname /? >> command-results.txt 2>&1
Open →
Windows CMD
hostname Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for hostname.

echo %DATE% %TIME% & hostname /?
Open →
Windows CMD
hostname Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for hostname.

hostname /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
whoami Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for whoami.

whoami /? > command-results.txt 2>&1
Open →
Windows CMD
whoami Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for whoami.

whoami /? >> command-results.txt 2>&1
Open →
Windows CMD
whoami Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for whoami.

echo %DATE% %TIME% & whoami /?
Open →
Windows CMD
whoami Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for whoami.

whoami /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
systeminfo Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for systeminfo.

systeminfo /? > command-results.txt 2>&1
Open →
Windows CMD
systeminfo Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for systeminfo.

systeminfo /? >> command-results.txt 2>&1
Open →
Windows CMD
systeminfo Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for systeminfo.

echo %DATE% %TIME% & systeminfo /?
Open →
Windows CMD
systeminfo Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for systeminfo.

systeminfo /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
tasklist Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for tasklist.

tasklist /? > command-results.txt 2>&1
Open →
Windows CMD
tasklist Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for tasklist.

tasklist /? >> command-results.txt 2>&1
Open →
Windows CMD
tasklist Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for tasklist.

echo %DATE% %TIME% & tasklist /?
Open →
Windows CMD
tasklist Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for tasklist.

tasklist /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
taskkill Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for taskkill.

taskkill /? > command-results.txt 2>&1
Open →
Windows CMD
taskkill Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for taskkill.

taskkill /? >> command-results.txt 2>&1
Open →
Windows CMD
taskkill Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for taskkill.

echo %DATE% %TIME% & taskkill /?
Open →
Windows CMD
taskkill Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for taskkill.

taskkill /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
sc query Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for sc query.

sc /? > command-results.txt 2>&1
Open →
Windows CMD
sc query Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for sc query.

sc /? >> command-results.txt 2>&1
Open →
Windows CMD
sc query Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for sc query.

echo %DATE% %TIME% & sc /?
Open →
Windows CMD
sc query Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for sc query.

sc /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
net user Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for net user.

net /? > command-results.txt 2>&1
Open →
Windows CMD
net user Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for net user.

net /? >> command-results.txt 2>&1
Open →
Windows CMD
net user Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for net user.

echo %DATE% %TIME% & net /?
Open →
Windows CMD
net user Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for net user.

net /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
gpupdate Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for gpupdate.

gpupdate /? > command-results.txt 2>&1
Open →
Windows CMD
gpupdate Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for gpupdate.

gpupdate /? >> command-results.txt 2>&1
Open →
Windows CMD
gpupdate Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for gpupdate.

echo %DATE% %TIME% & gpupdate /?
Open →
Windows CMD
gpupdate Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for gpupdate.

gpupdate /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
gpresult Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for gpresult.

gpresult /? > command-results.txt 2>&1
Open →
Windows CMD
gpresult Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for gpresult.

gpresult /? >> command-results.txt 2>&1
Open →
Windows CMD
gpresult Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for gpresult.

echo %DATE% %TIME% & gpresult /?
Open →
Windows CMD
gpresult Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for gpresult.

gpresult /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
sfc Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for sfc.

sfc /? > command-results.txt 2>&1
Open →
Windows CMD
sfc Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for sfc.

sfc /? >> command-results.txt 2>&1
Open →
Windows CMD
sfc Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for sfc.

echo %DATE% %TIME% & sfc /?
Open →
Windows CMD
sfc Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for sfc.

sfc /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
dism Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for dism.

DISM /? > command-results.txt 2>&1
Open →
Windows CMD
dism Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for dism.

DISM /? >> command-results.txt 2>&1
Open →
Windows CMD
dism Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for dism.

echo %DATE% %TIME% & DISM /?
Open →
Windows CMD
dism Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for dism.

DISM /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
chkdsk Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for chkdsk.

chkdsk /? > command-results.txt 2>&1
Open →
Windows CMD
chkdsk Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for chkdsk.

chkdsk /? >> command-results.txt 2>&1
Open →
Windows CMD
chkdsk Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for chkdsk.

echo %DATE% %TIME% & chkdsk /?
Open →
Windows CMD
chkdsk Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for chkdsk.

chkdsk /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
robocopy Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for robocopy.

robocopy /? > command-results.txt 2>&1
Open →
Windows CMD
robocopy Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for robocopy.

robocopy /? >> command-results.txt 2>&1
Open →
Windows CMD
robocopy Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for robocopy.

echo %DATE% %TIME% & robocopy /?
Open →
Windows CMD
robocopy Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for robocopy.

robocopy /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
xcopy Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for xcopy.

xcopy /? > command-results.txt 2>&1
Open →
Windows CMD
xcopy Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for xcopy.

xcopy /? >> command-results.txt 2>&1
Open →
Windows CMD
xcopy Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for xcopy.

echo %DATE% %TIME% & xcopy /?
Open →
Windows CMD
xcopy Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for xcopy.

xcopy /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
dir Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for dir.

dir /? > command-results.txt 2>&1
Open →
Windows CMD
dir Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for dir.

dir /? >> command-results.txt 2>&1
Open →
Windows CMD
dir Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for dir.

echo %DATE% %TIME% & dir /?
Open →
Windows CMD
dir Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for dir.

dir /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
findstr Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for findstr.

findstr /? > command-results.txt 2>&1
Open →
Windows CMD
findstr Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for findstr.

findstr /? >> command-results.txt 2>&1
Open →
Windows CMD
findstr Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for findstr.

echo %DATE% %TIME% & findstr /?
Open →
Windows CMD
findstr Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for findstr.

findstr /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
wevtutil Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for wevtutil.

wevtutil /? > command-results.txt 2>&1
Open →
Windows CMD
wevtutil Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for wevtutil.

wevtutil /? >> command-results.txt 2>&1
Open →
Windows CMD
wevtutil Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for wevtutil.

echo %DATE% %TIME% & wevtutil /?
Open →
Windows CMD
wevtutil Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for wevtutil.

wevtutil /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
schtasks query Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for schtasks query.

schtasks /? > command-results.txt 2>&1
Open →
Windows CMD
schtasks query Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for schtasks query.

schtasks /? >> command-results.txt 2>&1
Open →
Windows CMD
schtasks query Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for schtasks query.

echo %DATE% %TIME% & schtasks /?
Open →
Windows CMD
schtasks query Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for schtasks query.

schtasks /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
certutil hashfile Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for certutil hashfile.

certutil /? > command-results.txt 2>&1
Open →
Windows CMD
certutil hashfile Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for certutil hashfile.

certutil /? >> command-results.txt 2>&1
Open →
Windows CMD
certutil hashfile Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for certutil hashfile.

echo %DATE% %TIME% & certutil /?
Open →
Windows CMD
certutil hashfile Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for certutil hashfile.

certutil /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
powercfg Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for powercfg.

powercfg /? > command-results.txt 2>&1
Open →
Windows CMD
powercfg Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for powercfg.

powercfg /? >> command-results.txt 2>&1
Open →
Windows CMD
powercfg Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for powercfg.

echo %DATE% %TIME% & powercfg /?
Open →
Windows CMD
powercfg Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for powercfg.

powercfg /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
driverquery Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for driverquery.

driverquery /? > command-results.txt 2>&1
Open →
Windows CMD
driverquery Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for driverquery.

driverquery /? >> command-results.txt 2>&1
Open →
Windows CMD
driverquery Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for driverquery.

echo %DATE% %TIME% & driverquery /?
Open →
Windows CMD
driverquery Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for driverquery.

driverquery /? & echo Exit code: %ERRORLEVEL%
Open →
Windows CMD
wmic legacy Help and Syntax — Save output

Save command output and errors to a text file. Base task: Display built-in Windows command-line help and syntax for wmic legacy.

wmic /? > command-results.txt 2>&1
Open →
Windows CMD
wmic legacy Help and Syntax — Append output

Append command output and errors to an existing log. Base task: Display built-in Windows command-line help and syntax for wmic legacy.

wmic /? >> command-results.txt 2>&1
Open →
Windows CMD
wmic legacy Help and Syntax — Run with timestamp

Print the current date and time before running the command. Base task: Display built-in Windows command-line help and syntax for wmic legacy.

echo %DATE% %TIME% & wmic /?
Open →
Windows CMD
wmic legacy Help and Syntax — Show success status

Run the command and display its exit code. Base task: Display built-in Windows command-line help and syntax for wmic legacy.

wmic /? & echo Exit code: %ERRORLEVEL%
Open →