Additional Script Updates
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# Check if the corporate wallpaper is set
|
||||
$wallpaperPath = "C:\Path\To\CorporateWallpaper.jpg"
|
||||
$currentWallpaper = Get-ItemProperty -Path "HKCU:\Control Panel\Desktop\" -Name Wallpaper
|
||||
if ($currentWallpaper.Wallpaper -ne $wallpaperPath) {
|
||||
Write-Output "Wallpaper needs to be set"
|
||||
exit 1
|
||||
} else {
|
||||
Write-Output "Wallpaper is already set"
|
||||
exit 0
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
# Set the corporate wallpaper
|
||||
$wallpaperPath = "C:\Path\To\CorporateWallpaper.jpg"
|
||||
Set-ItemProperty -Path "HKCU:\Control Panel\Desktop\" -Name Wallpaper -Value $wallpaperPath
|
||||
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
|
||||
Write-Output "Wallpaper set"
|
||||
Reference in New Issue
Block a user