PowerShell

Changing Desktop Wallpaper Positions using Powershell.

Hi, Yesterday i blogged about changing Desktop background colour using Powershell. Today we are going to change the Desktop Wallpaper Position using Powershell. Like the previous post this is again a registry tweak. Windows Desktop wallpaper has 5 types of  Picture Position. Center Fill Fit Stretch Tile The registry key which retains these settings is… Continue reading Changing Desktop Wallpaper Positions using Powershell.

PowerShell

set Internet Explorer Home Page using Powershell.

Hi, Sometime in scripts or or in login scripts we want to set a users Internet Explorer home page to our Intranet site or to some other specific URL. This became very handy and useful some times. the code is below.   $myURL = “http://microsoft.com” set-ItemProperty -Path ‘HKCU:\Software\Microsoft\Internet Explorer\main’ -Name “Start Page” -Value $myURL In… Continue reading set Internet Explorer Home Page using Powershell.