Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
# Specify the path to your image file
$imagePath = "C:\Users\Eetu\Downloads\test123.jpg"
# Load the image
$image = [System.Drawing.Image]::FromFile($imagePath)
# Set image to clipboard
[System.Windows.Forms.Clipboard]::SetImage($image)
Write-Host "Image copied to clipboard."
eetuRobo
172
Super User 2025 Season 1
Riyaz_riz11
58
Super User 2025 Season 1
CU12050101-0
34