使用正确分辨率的背景桌面图像

使用正确分辨率的背景桌面图像

我有六种不同分辨率的桌面背景图像(一张图片),我想将其部署到具有不同显示器和视频卡等的不同计算机集合。笔记本电脑、上网本、台式机、宽屏,甚至几台“高”屏幕。我有图像可以满足大多数情况。

我希望 Windows 7 能够通过组策略正确选择正确的桌面背景图像。

现在,登录屏幕已经完成。OEMBackground 方法非常聪明,可以让您将不同分辨率的文件复制到机器上,登录应用程序将计算显示器的纵横比并尽可能地将其与文件匹配。

有没有办法让桌面背景也具有该功能?

答案1

嗯。如果您很幸运,Win32_DesktopMonitor WMI 类的 ScreenHeight 和 ScreenWidth 属性将在客户端上填写,这意味着您可以轻松使用 VB 脚本或 Powershell 脚本来确定计算机的桌面分辨率。

Get-WMIObject Win32_DesktopMonitor

现在您知道了计算机的分辨率,您可以像这样设置适当的壁纸。以下脚本的作者在评论中注明:

#requires -version 2.0
## Set-Wallpaper - set your windows desktop wallpaper
###################################################################################################
## Usage:
##    Set-Wallpaper "C:\Users\Joel\Pictures\Wallpaper\Dual Monitor\mandolux-tiger.jpg" "Tile"
##    ls *.jpg | get-random | Set-Wallpaper
##    ls *.jpg | get-random | Set-Wallpaper -Style "Stretch"
###################################################################################################
## History:
##    v0.5  First release (on #[email protected])
##    v1.0  Public release (http://www.poshcode.org/488)
##          - Added Style: Tile|Center|Stretch
##    v1.1  This Release
##          - Added "NoChange" style to just use the style setting already set
##          - Made the Style parameter to the cmdlet optional
###################################################################################################

add-type @"
using System;
using System.Runtime.InteropServices;
using Microsoft.Win32;
namespace Wallpaper
{
   public enum Style : int
   {
       Tile, Center, Stretch, NoChange
   }


   public class Setter {
      public const int SetDesktopWallpaper = 20;
      public const int UpdateIniFile = 0x01;
      public const int SendWinIniChange = 0x02;

      [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
      private static extern int SystemParametersInfo (int uAction, int uParam, string lpvParam, int fuWinIni);

      public static void SetWallpaper ( string path, Wallpaper.Style style ) {
         SystemParametersInfo( SetDesktopWallpaper, 0, path, UpdateIniFile | SendWinIniChange );

         RegistryKey key = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", true);
         switch( style )
         {
            case Style.Stretch :
               key.SetValue(@"WallpaperStyle", "2") ; 
               key.SetValue(@"TileWallpaper", "0") ;
               break;
            case Style.Center :
               key.SetValue(@"WallpaperStyle", "1") ; 
               key.SetValue(@"TileWallpaper", "0") ; 
               break;
            case Style.Tile :
               key.SetValue(@"WallpaperStyle", "1") ; 
               key.SetValue(@"TileWallpaper", "1") ;
               break;
            case Style.NoChange :
               break;
         }
         key.Close();
      }
   }
}
"@

cmdlet Set-Wallpaper {
Param(
   [Parameter(Position=0, Mandatory=$true, ValueFromPipelineByPropertyName=$true)]
   [Alias("FullName")]
   [string]
   $Path
,
   [Parameter(Position=1, Mandatory=$false)]
   [Wallpaper.Style]
   $Style = "NoChange"
)
   [Wallpaper.Setter]::SetWallpaper( (Convert-Path $Path), $Style )
}

请注意,您必须 P/Invoke user32.dll 来设置壁纸,这可能意味着 VB 脚本无法完成此操作。

这是一个更短、更简单的方法,尽管它可能需要注销/登录才能生效:

Function Set-WallPaper($Value)
{    
  Set-ItemProperty -path 'HKCU:\Control Panel\Desktop\' -name wallpaper -value $value

  rundll32.exe user32.dll, UpdatePerUserSystemParameters

}

方法 2:此外,您还可以在同一个 WMI 类上使用 GPO WMI 过滤器,并根据该 WMI 过滤器的结果设置不同的壁纸。例如,您可以在网络共享上托管所有大小不一的壁纸,也可以使用组策略在每个客户端上预置所有壁纸。然后,为每种不同大小的壁纸创建一个 GPO,并在其上设置 WMI 过滤器,使其仅在 Win32_DesktopMonitor.ScreenWidth = 1920 时应用,依此类推。

相关内容