-5

Это часть розыгрыша в офисе, где мы меняем фоны друг друга, когда забываем заблокировать компьютер, и мы уходим (по соображениям безопасности, конечно), и один из наших коллег был безжалостен и никогда не уходил и не оставлял свой компьютер разблокирован. Так кто-нибудь знает, есть ли способ сделать это с фотографией, которая будет сохранена на сетевом диске, к которому он имеет доступ?

1 ответ1

0

Вам просто понадобится пакетный скрипт, который изменяет соответствующие значения в реестре, и заставляет пользователя щелкнуть файл. Я не проверял это, но я нашел то, что вы можете попробовать:

@ECHO OFF
:: Written by Eric Husband
:: 7/10/2009
:: copies the wallpaper from a location into the proper directory and as the proper file name. DO NOT CHANGE THE DESTINATION FILE NAME.
copy "\\ehusband-x1\ERIC\wallpaper1.bmp" "C:\Documents and Settings\%USERNAME%\Local Settings\Application Data\Microsoft\wallpaper1.bmp"
:: Adds the necessary Registry values, in case this person is using a System Wallpaper. If they've already customized their wallpaper, the following lines are not necessary. They won't hurt though.
REG ADD "HKCU\Control Panel\Desktop" /V Wallpaper /T REG_SZ /F /D "C:\Documents and Settings\%USERNAME%\Local Settings\Application Data\Microsoft\wallpaper1.bmp"
:: Change the last number in the following line to a 0 if you want to center the bitmap on the desktop. Change the last number in the following line to a 2 if you want to stretch the bitmap vertically and horizontally to fit the desktop.
REG ADD "HKCU\Control Panel\Desktop" /V WallpaperStyle /T REG_SZ /F /D 2
:: Change the last number in the following line to a 0 to not tile the image; setting it to a 1 Tiles it.
REG ADD "HKCU\Control Panel\Desktop" /V TileWallpaper /T REG_SZ /F /D 0
:: The following line refreshes the desktop.
%SystemRoot%\System32\RUNDLL32.EXE user32.dll, UpdatePerUserSystemParameters
:: The following line Locks the workstation.
%SystemRoot%\System32\RUNDLL32.EXE user32.dll, LockWorkStation

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .