更改锁定屏幕Windows 10 powershell

时间:2018-05-29 07:33:40

标签: windows powershell scripting

我正在创建一个脚本,当用户运行更新时,工作站会锁定屏幕。锁定屏幕是自定义JPEG。更新时,用户无法登录。更新完成后,用户可以登录回帐户。

我目前正在使用此方法更改锁屏: https://github.com/Sauler/PowershellUtils/blob/master/Set-LockscreenWallpaper/Set-LockscreenWallpaper.ps1

我现在正在寻找一种如何获取当前锁定屏幕图像的方法,因为在更新之后我想用他的锁定屏幕替换用户。

任何人都有这方法吗?

1 个答案:

答案 0 :(得分:0)

我在Christian.K

的推荐下创建了一个函数
function Get-LockscreenWallpaperPath () {
$null = [Windows.System.UserProfile.LockScreen,Windows.System.UserProfile,ContentType=WindowsRuntime]
$Path = [Windows.System.UserProfile.LockScreen]::OriginalImageFile.AbsolutePath
$Path = $Path -replace '/','\'
return $Path

}