Windowsデスクトップの背景を強制的に更新または更新する方法


17

レジストリの背景画像を手動で変更した場合、ログオフせずに強制的に更新するにはどうすればよいですか?

bginfoがそれを行うことを知っていますが、私は物事をシンプルに保ち、ソフトウェアを使用しないことを望みます。

回答:


16
RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters 1, True

7
これはwin7 x64では動作しないようです...誰かがそのために動作するものを持っていますか?
Jon Kloske、2014

3
それを使用してRUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters 1, True私のマシン上で動作するようです(UpdatePerUserSystemParametersの背後に不足しているカンマを注意してください)
星雲

確認できますが、Win7 x64のデスクトップは実際には更新されません。念のため、RunDllの両方のバージョンの呼び出しを試みました。
Okuma.Scott

3
  • タスクマネージャーを開く
  • explorer.exeを終了する
  • シェルがすぐに再起動しない場合
  • メニューから[ファイル]> [新しいタスク]を選択します
  • 「explorer.exe」と入力してEnterキーを押します。

良い考えですが、それだけでは解決できません。
Nathan Strutz、2015

2

私は同様のことをやろうとしていました-スタートメニューのレジストリ設定を更新し、すぐにスタートメニューに変更を反映させます。

このMSDNの質問からの解決策は私にとって完璧に機能しました。

WM_SETTINGCHANGEメッセージをブロードキャストしてみてください。例えば:

class Program
{
    [DllImport("user32.dll", SetLastError = true)]
    private static extern IntPtr SendMessageTimeout(IntPtr hWnd, int Msg, IntPtr wParam, string lParam, uint fuFlags, uint uTimeout, IntPtr lpdwResult);

    private static readonly IntPtr HWND_BROADCAST = new IntPtr(0xffff);
    private const int WM_SETTINGCHANGE = 0x1a;
    private const int SMTO_ABORTIFHUNG = 0x0002;

    static void Main(string[] args)
    {
        SendMessageTimeout(HWND_BROADCAST, WM_SETTINGCHANGE, IntPtr.Zero, null, SMTO_ABORTIFHUNG, 100, IntPtr.Zero);
    }
}

1

画面の解像度を変更してから、元に戻すオプションを選択します。解像度は同じままで、背景が変更されます。

または、ディスプレイケーブルを取り外して再接続します。


1
# first in powershell, second both. cmd.exe + powershell.exe

# Refresh Desktop Ability
$definition = @'
    [System.Runtime.InteropServices.DllImport("Shell32.dll")] 
    private static extern int SHChangeNotify(int eventId, int flags, IntPtr item1, IntPtr item2);
    public static void Refresh() {
        SHChangeNotify(0x8000000, 0x1000, IntPtr.Zero, IntPtr.Zero);    
    }
'@
Add-Type -MemberDefinition $definition -Namespace WinAPI -Name Explorer

# Set Safe within deleted days and get physical drive letters
$ignoreDeletedWithinDays = 2
$drives = (gwmi -Class Win32_LogicalDisk | ? {$_.drivetype -eq 3}).deviceid

# Process discovered drives
$drives | % {$drive = $_
    gci -Path ($drive+'\$Recycle.Bin\*\$I*') -Recurse -Force | ? {($_.LastWriteTime -lt [datetime]::Now.AddDays(-$ignoreDeletedWithinDays)) -and ($_.name -like "`$*.*")} | % {

        # Just a few calcs
        $infoFile         = $_
        $originalFile     = gi ($drive+"\`$Recycle.Bin\*\`$R$($infoFile.Name.Substring(2))") -Force
        $originalLocation = [regex]::match([string](gc $infoFile.FullName -Force -Encoding Unicode),($drive+'[^<>:"/|?*]+\.[\w\-_\+]+')).Value
        $deletedDate      = $infoFile.LastWriteTime
        $sid              = $infoFile.FullName.split('\') | ? {$_ -like "S-1-5*"}
        $user             = try{(gpv "HKLM:\Software\Microsoft\Windows NT\CurrentVersion\ProfileList\$($sid)" -Name ProfileImagePath).replace("$(gpv 'HKLM:\Software\Microsoft\Windows NT\CurrentVersion\ProfileList' -Name ProfilesDirectory)\",'')}catch{$Sid}

        #' Various info
        $originalLocation
        $deletedDate
        $user
        $sid
        $infoFile.Fullname
        ((gi $infoFile -force).length / 1mb).ToString('0.00MB')
        $originalFile.fullname
        ((gi $originalFile -force).length / 1mb).ToString('0.00MB')
        ""

        # Blow it all Away
        #ri $InfoFile -Recurse -Force -Confirm:$false -WhatIf
        #ri $OriginalFile -Recurse -Force -Confirm:$false- WhatIf
        # remove comment before two lines above and the '-WhatIf' statement to delete files
    }
}

# Refresh desktop icons
[WinAPI.Explorer]::Refresh()

or 

ie4uinit.exe -ClearIconCache

end scripting enjoy.
#end

1
これは見栄えが良いのですが、なぜそこにすべてのドライブのものがあるのですか
not2qubit

0

受け入れられた答えからのラインは私のために非常に散発的に働きました。最後に、バックグラウンドで25回サイレントでコードを呼び出すためのwhileループを作成しました。お役に立てれば。

受け入れられた回答のコード:

RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters 1, True

私のbashスクリプトの先頭からのコード:

desktop () {

i=0

# Tell the desktop to refresh 25 times.
while [ $i -le 25 ]
do
  echo "RUNDLL32.EXE USER32.DLL,UpdatePerUserSystemParameters, 1 True"| "C:/Windows/System32/WindowsPowerShell/v1.0/powershell"
  ((i++))
done

}


# This runs the function silently as a background process
desktop &>/dev/null &
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.