This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Define a custom object for a server or whatever object you want | |
$server = [pscustomobject]@{ | |
Name = "Server1" | |
IPAddress = "192.168.0.1" | |
} | |
# Add a ScriptMethod to check if the server is online | |
## This can run any code you may like to associated with an object | |
$server | Add-Member -MemberType ScriptMethod -Name "IsOnline" -Value { | |
param ($Timeout = 1000) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## e.g. Ensure Get-Content always returns verbose information | |
$PSDefaultParameterValues['Get-Content:Verbose'] = $true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Without strict mode | |
$variable = "Hello" | |
Write-Output $varible # No error, typo goes unnoticed | |
# With strict mode | |
Set-StrictMode -Version Latest | |
$variable = "Hello" | |
Write-Output $varible # Error: The variable '$varible' cannot be retrieved because it has not been set. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Long command with many parameters all on one line | |
Send-MailMessage -From "[email protected]" -To "[email protected]" -Subject "Test Email" -Body "This is a test email." -SmtpServer "smtp.example.com" -Port 587 -UseSsl -Credential (Get-Credential) -Attachments "C:\path\to\file.txt" -Priority High -DeliveryNotificationOption OnSuccess, OnFailure | |
# Equivalent command using splatting for readability | |
$mailParams = @{ | |
From = "[email protected]" | |
To = "[email protected]" | |
Subject = "Test Email" | |
Body = "This is a test email." | |
SmtpServer = "smtp.example.com" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Using Join-Path | |
$path = Join-Path -Path "C:\Users" -ChildPath "Documents\Report.txt" | |
Write-Output $path # Outputs: C:\Users\Documents\Report.txt | |
# Downfall without Join-Path on different platforms | |
$path = "C:\Users" + "/" + "Documents/Report.txt" | |
Write-Output $path # Incorrect path on Windows: C:\Users/Documents/Report.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## no | |
gps | ? {$_.cpu -gt 100} | % { $_.name } | sort | ft -AutoSize | |
## yes | |
Get-Process | Where-Object { $_.CPU -gt 100 } | ForEach-Object { $_.Name } | Sort-Object | Format-Table -AutoSize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Define the path for the new log file | |
$filePath = "./largefile.log" | |
# Number of lines to write (e.g., 10 million lines) | |
$numberOfLines = 10000000 | |
# Create and open the file | |
$file = [System.IO.StreamWriter]::new($filePath) | |
try { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## No | |
Do-Thing | Out-Null | |
## yes | |
$null = Do-Thing | |
[void](Do-Thing) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Color { | |
Red | |
Green | |
Blue | |
} | |
function Set-Color { | |
param ( | |
[Color]$Color | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Color { | |
Red | |
Green | |
Blue | |
} | |
function Set-Color { | |
param ( | |
[Color]$Color | |
) |