Skip to content

Instantly share code, notes, and snippets.

View hoosnick's full-sized avatar
Working from home

Хусниддин hoosnick

Working from home
View GitHub Profile
@hoosnick
hoosnick / change-wallpaper.ps1
Last active March 27, 2024 19:20
change windows wallpaper using powershell
# Define the URL of the image to download
$url = "https://raw.githubusercontent.com/MortezaShoeibi/Arduino-Scripts/master/assets/sunglasses-in-the-dark.jpg"
# Specify the path where you want to save the downloaded image
$imagePath = "$env:TEMP\wallpaper.jpg"
# Download the image from the web
Invoke-WebRequest -Uri $url -OutFile $imagePath
# Check if the download was successful