每日自动更新 bing 壁纸

本贴最后更新于 1990 天前,其中的信息可能已经时移世异

该脚本仅在 win10 下测试通过

<#

.Synopsis
   自动设置bing图片为桌面壁纸
.DESCRIPTION
   添加计划任务,可每日自动更新并设置bing图片为壁纸,并且在图片下添加图片标题及版权文字
.EXAMPLE
    必应每日壁纸.ps1 
    必应每日壁纸.ps1 [-Task]
.INPUTS
   到此 cmdlet 的输入(如果有)
.OUTPUTS
   来自此 cmdlet 的输出(如果有)
.NOTES
   一般注释
.COMPONENT
   此 cmdlet 所属的组件
.ROLE
   此 cmdlet 所属的角色
.FUNCTIONALITY
   最准确描述此 cmdlet 的功能
#>
[CmdletBinding(DefaultParameterSetName)] # 设置默认参数组为空
Param(
    [Parameter(ParameterSetName="Task")]
    [switch]$Task,
    [Parameter(DontShow,ParameterSetName="None")]
    [switch]$None
)

if ($task)
{
    $tem=Get-ScheduledTaskInfo -TaskName "每日自动更换bing壁纸" -ErrorAction SilentlyContinue -WarningAction SilentlyContinue
    if ($tem)
    {
        Write-Error -Message "该计划任务已经存在"

    }
    else
    {
        # 任务操作   程序 ,工作目录,参数
        $A = New-ScheduledTaskAction -Execute "PowerShell"  -WorkingDirectory "$($PSScriptRoot)" -Argument "$($Script:MyInvocation.InvocationName)"
        # 触发器    每天零点一秒 在六小时内随机
        $T = New-ScheduledTaskTrigger -Daily -At 0:0:1  -RandomDelay 6:0:0          
        # 创建者  当前用户名
        $P = New-ScheduledTaskPrincipal "$env:userdomain\$env:username" 
        # 设置集   各种相关设置
        $S = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -WakeToRun -Priority 4 -DontStopIfGoingOnBatteries -DontStopOnIdleEnd -RunOnlyIfNetworkAvailable -MultipleInstances IgnoreNew -StartWhenAvailable -Compatibility win8  -ExecutionTimeLimit 0   -DisallowHardTerminate       
        # 新任务   最后是任务描述
        $D = New-ScheduledTask -Action $A -Principal $P -Trigger $T -Settings $S  -Description "每日自动更新必应桌面壁纸"
        # 注册任务     
        Register-ScheduledTask -TaskName "每日自动更换bing壁纸" -InputObject $D
    }
    return
}

[uri]$binguri="https://cn.bing.com/HPImageArchive.aspx?format=js&n=1&pid=hp"
$T="{0:yyyy.MM.dd`tHH:mm′ss″}" -f (Get-Date)
function out ([string]$p)
{
    Out-File -FilePath $PSScriptRoot\BingWallpaper.log -InputObject "$T`t$p" -Append
}

class bing:Hashtable{
    
    [uri]$Uri
    hidden[uri]$DownUri
    [string]$Copyright
    hidden[string]$DownFile

    bing ([string]$uri){
        [uri]$this.uri=$uri
    }
    
    bingImDo (){
        $d=try{
            Invoke-RestMethod @this
        }catch{
            $_.Exception.Response
        }

        if ($d.images)
        {
            $this.DownUri="https://cn.bing.com"+$d.images.url
            $this.Copyright=$d.images.copyright.Replace(" (","`n(")
            $this.DownFile=$PSScriptRoot+"/"+$d.images.enddate+".jpg"
            $client = new-object System.Net.WebClient
            $client.DownloadFile( $this.DownUri ,$this.DownFile)
        }else{
            out "错误码: $($d.StatusCode)($($d.StatusCode.value__))"
        }
    }
}

Add-Type -AssemblyName System.Drawing
function Draw-WatemarkString()
{
    param(
        [Parameter(Mandatory=$true)]
        [ValidateNotNullOrEmpty()]
        [ValidatePattern("(.jpg)|(.png)|(.gif)$")]
        [io.fileinfo]$ImageFile,
 
        [Parameter(Mandatory=$true)]
        [ValidateNotNullOrEmpty()]
        [string]$Text,
 
        [ValidateSet("NorthWest", "NorthEast", "SouthWest","SouthEast")]
        [string]$Location='SouthEast',
 
        [System.Drawing.Color]$Color= [System.Drawing.Color]::AntiqueWhite,
 
        [ValidateRange(1,[system.single]::MaxValue)]
        [float]$FontSize = 15,
 
        [string]$FontFamily='Microsoft YaHei',
 
        [ValidateRange(0,[system.single]::MaxValue)]
        [int]$margin = 45,
 
        [switch]$Bold,
        [Switch]$Italic,
        [switch]$Underline,
        [switch]$Strikeout
    )
 
    # test image file exists
    if( -not (Test-Path $ImageFile) )
    {
        throw "图片文件${ImageFile}不存在. "
    }
 
    # font style
    [drawing.fontstyle]$fontStyle= [drawing.fontstyle]::Regular
    (
        ($Bold,[drawing.fontstyle]::Bold),
        ($Italic,[drawing.fontstyle]::Italic),
        ($Underline,[drawing.fontstyle]::Underline),
        ($Strikeout,[drawing.fontstyle]::Strikeout)
    ) | foreach {
        if($_[0])
        {
            $fontStyle = $fontStyle -bxor $_[1]
        }
    }
 
    # graphics and brush
    $font = New-Object System.Drawing.Font($FontFamily, $FontSize,$fontStyle)
    $img = [drawing.image]::FromFile($ImageFile)
    $drawBrush =  [drawing.solidbrush]$Color
    $g = [drawing.graphics]::FromImage($img)
    $textSize = $g.MeasureString($Text,$font).ToPointF()
    $pointF = New-Object System.Drawing.PointF
 <#
    # location
    switch ($Location)
    {
        'NorthWest'
        {
            $pointF.X = $margin
            $pointF.Y = $margin
        }
 
        'NorthEast'
        {
            $pointF.X = $img.Width - $margin - $textSize.X
            $pointF.Y = $margin
        }
 
        'SouthWest'
        {
            $pointF.X = $margin
            $pointF.Y = $img.Height - $margin - $textSize.Y
        }
 
        'SouthEast'
        {#>
            $pointF.X = $img.Width - $margin - $textSize.X
            $pointF.Y = $img.Height - $margin - $textSize.Y
      <#  }
    }#>
 
    # draw string and save image to temporary file
    $g.DrawString($Text,$font,$drawBrush,$pointF)
    $tempImage = '{0}.jpg' -f $ImageFile
    $img.Save($tempImage)
 
    # dispose graphics, brush, image
    $g.Dispose()
    $drawBrush.Dispose()
    $img.Dispose()
 
    # copy temporary file to original source
    Copy-Item $tempImage $ImageFile -Force
    Remove-Item $tempImage
 
}

#完全看不懂,天书
# 注册定义的类
Add-Type @" 
using System;
using System.Runtime.InteropServices;
using Microsoft.Win32;
namespace Wallpaper
{
	public enum Style : int
	{
		Center, Stretch
	}
	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) {
			SystemParametersInfo( SetDesktopWallpaper, 0, path, UpdateIniFile | SendWinIniChange );
			RegistryKey key = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", true);

				key.SetValue(@"WallpaperStyle", "10") ;
				key.SetValue(@"TileWallpaper", "0") ;

			key.Close();
		}
	}
}
"@



$bin=[bing]::new($binguri)
echo 获取图片
$bin.bingImDo()
if ($bin.Count -lt 4)
{
    Write-Warning "获取失败"
    return
}
$g=$T,$bin.Copyright -join "`n"
Draw-WatemarkString -ImageFile $bin.DownFile -Text $g

echo 应用新壁纸
[Wallpaper.Setter]::SetWallpaper( $bin.DownFile )
Remove-Item $bin.DownFile #删除壁纸文件
echo 完成!
Start-Sleep -Seconds 3
#exit
  • 必应
    5 引用 • 19 回帖
  • 壁纸
    13 引用 • 78 回帖
  • 工具

    子曰:“工欲善其事,必先利其器。”

    285 引用 • 728 回帖

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...

推荐标签 标签

  • GitBook

    GitBook 使您的团队可以轻松编写和维护高质量的文档。 分享知识,提高团队的工作效率,让用户满意。

    3 引用 • 8 回帖 • 4 关注
  • MyBatis

    MyBatis 本是 Apache 软件基金会 的一个开源项目 iBatis,2010 年这个项目由 Apache 软件基金会迁移到了 google code,并且改名为 MyBatis ,2013 年 11 月再次迁移到了 GitHub。

    170 引用 • 414 回帖 • 383 关注
  • Git

    Git 是 Linux Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。

    209 引用 • 358 回帖
  • 国际化

    i18n(其来源是英文单词 internationalization 的首末字符 i 和 n,18 为中间的字符数)是“国际化”的简称。对程序来说,国际化是指在不修改代码的情况下,能根据不同语言及地区显示相应的界面。

    8 引用 • 26 回帖
  • Jenkins

    Jenkins 是一套开源的持续集成工具。它提供了非常丰富的插件,让构建、部署、自动化集成项目变得简单易用。

    53 引用 • 37 回帖
  • 数据库

    据说 99% 的性能瓶颈都在数据库。

    338 引用 • 705 回帖
  • RYMCU

    RYMCU 致力于打造一个即严谨又活泼、专业又不失有趣,为数百万人服务的开源嵌入式知识学习交流平台。

    4 引用 • 6 回帖 • 53 关注
  • Latke

    Latke 是一款以 JSON 为主的 Java Web 框架。

    70 引用 • 533 回帖 • 778 关注
  • Ant-Design

    Ant Design 是服务于企业级产品的设计体系,基于确定和自然的设计价值观上的模块化解决方案,让设计者和开发者专注于更好的用户体验。

    17 引用 • 23 回帖
  • 程序员

    程序员是从事程序开发、程序维护的专业人员。

    565 引用 • 3532 回帖
  • 开源中国

    开源中国是目前中国最大的开源技术社区。传播开源的理念,推广开源项目,为 IT 开发者提供了一个发现、使用、并交流开源技术的平台。目前开源中国社区已收录超过两万款开源软件。

    7 引用 • 86 回帖
  • 小薇

    小薇是一个用 Java 写的 QQ 聊天机器人 Web 服务,可以用于社群互动。

    由于 Smart QQ 从 2019 年 1 月 1 日起停止服务,所以该项目也已经停止维护了!

    34 引用 • 467 回帖 • 741 关注
  • 禅道

    禅道是一款国产的开源项目管理软件,她的核心管理思想基于敏捷方法 scrum,内置了产品管理和项目管理,同时又根据国内研发现状补充了测试管理、计划管理、发布管理、文档管理、事务管理等功能,在一个软件中就可以将软件研发中的需求、任务、bug、用例、计划、发布等要素有序的跟踪管理起来,完整地覆盖了项目管理的核心流程。

    6 引用 • 15 回帖 • 127 关注
  • Mobi.css

    Mobi.css is a lightweight, flexible CSS framework that focus on mobile.

    1 引用 • 6 回帖 • 733 关注
  • WebComponents

    Web Components 是 W3C 定义的标准,它给了前端开发者扩展浏览器标签的能力,可以方便地定制可复用组件,更好的进行模块化开发,解放了前端开发者的生产力。

    1 引用 • 2 关注
  • Bootstrap

    Bootstrap 是 Twitter 推出的一个用于前端开发的开源工具包。它由 Twitter 的设计师 Mark Otto 和 Jacob Thornton 合作开发,是一个 CSS / HTML 框架。

    18 引用 • 33 回帖 • 659 关注
  • Firefox

    Mozilla Firefox 中文俗称“火狐”(正式缩写为 Fx 或 fx,非正式缩写为 FF),是一个开源的网页浏览器,使用 Gecko 排版引擎,支持多种操作系统,如 Windows、OSX 及 Linux 等。

    8 引用 • 30 回帖 • 407 关注
  • 996
    13 引用 • 200 回帖 • 2 关注
  • Gitea

    Gitea 是一个开源社区驱动的轻量级代码托管解决方案,后端采用 Go 编写,采用 MIT 许可证。

    4 引用 • 16 回帖
  • Scala

    Scala 是一门多范式的编程语言,集成面向对象编程和函数式编程的各种特性。

    13 引用 • 11 回帖 • 123 关注
  • ZooKeeper

    ZooKeeper 是一个分布式的,开放源码的分布式应用程序协调服务,是 Google 的 Chubby 一个开源的实现,是 Hadoop 和 HBase 的重要组件。它是一个为分布式应用提供一致性服务的软件,提供的功能包括:配置维护、域名服务、分布式同步、组服务等。

    59 引用 • 29 回帖 • 3 关注
  • 正则表达式

    正则表达式(Regular Expression)使用单个字符串来描述、匹配一系列遵循某个句法规则的字符串。

    31 引用 • 94 回帖 • 1 关注
  • OpenShift

    红帽提供的 PaaS 云,支持多种编程语言,为开发人员提供了更为灵活的框架、存储选择。

    14 引用 • 20 回帖 • 623 关注
  • 阿里巴巴

    阿里巴巴网络技术有限公司(简称:阿里巴巴集团)是以曾担任英语教师的马云为首的 18 人,于 1999 年在中国杭州创立,他们相信互联网能够创造公平的竞争环境,让小企业通过创新与科技扩展业务,并在参与国内或全球市场竞争时处于更有利的位置。

    43 引用 • 221 回帖 • 127 关注
  • 一些有用的避坑指南。

    69 引用 • 93 回帖
  • Ubuntu

    Ubuntu(友帮拓、优般图、乌班图)是一个以桌面应用为主的 Linux 操作系统,其名称来自非洲南部祖鲁语或豪萨语的“ubuntu”一词,意思是“人性”、“我的存在是因为大家的存在”,是非洲传统的一种价值观,类似华人社会的“仁爱”思想。Ubuntu 的目标在于为一般用户提供一个最新的、同时又相当稳定的主要由自由软件构建而成的操作系统。

    124 引用 • 169 回帖
  • MongoDB

    MongoDB(来自于英文单词“Humongous”,中文含义为“庞大”)是一个基于分布式文件存储的数据库,由 C++ 语言编写。旨在为应用提供可扩展的高性能数据存储解决方案。MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。它支持的数据结构非常松散,是类似 JSON 的 BSON 格式,因此可以存储比较复杂的数据类型。

    90 引用 • 59 回帖 • 4 关注