Recording wallpaper history

 

Administrators can configure WPSecure wallpaper package to record wallpaper usage history.

Set the following registry value to ‘1‘ for wallpaper history to be recorded.

For 64 bit machines:

ComputerHKEY_LOCAL_MACHINESOFTWAREWOW6432Nodewpsecurehistory

For 32 bit machines:

ComputerHKEY_LOCAL_MACHINESOFTWAREwpsecurehistory

Name: enablehistory (dword).

Value: 0 (disable history), 1 (enable history).

wpsecure-record-history-1

SCCM Hardware Inventory:

To gather this information using SCCM hardware inventory add the following lines into your SCCM configuration.mof file.

For 64 bit machines:

#pragma namespace ("\\.\root\cimv2")
#pragma deleteclass("wpsecurehistory", NOFAIL)
[dynamic, provider("RegProv"), ClassContext("Local|HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\wpsecure\history")]
Class wpsecurehistory
{
[key] string KeyName;
[PropertyContext("wpidentifier")] String wpidentifier;
[PropertyContext("wpsecureversion")] String wpsecureversion;
[PropertyContext("campaigngroupid")] String campaigngroupid; 
[PropertyContext("campaignid")] String campaignid;
[PropertyContext("wpwidth")] Uint32 wpwidth;
[PropertyContext("wpheight")] Uint32 wpheight;
[PropertyContext("screenwidth")] Uint32 screenwidth;
[PropertyContext("screenheight")] Uint32 screenheight;
[PropertyContext("dailyuseincrement")] Uint32 dailyuseincrement;
[PropertyContext("entrydate")] String entrydate;
[PropertyContext("userid")] String userid;
};

For 32 bit machines:

#pragma namespace ("\\.\root\cimv2")
#pragma deleteclass("wpsecurehistory", NOFAIL)
[dynamic, provider("RegProv"), ClassContext("Local|HKEY_LOCAL_MACHINE\SOFTWARE\wpsecure\history")]
Class wpsecurehistory
{
[key] string KeyName;
[PropertyContext("wpidentifier")] String wpidentifier;
[PropertyContext("wpsecureversion")] String wpsecureversion;
[PropertyContext("campaigngroupid")] String campaigngroupid;
[PropertyContext("campaignid")] String campaignid;
[PropertyContext("wpwidth")] Uint32 wpwidth;
[PropertyContext("wpheight")] Uint32 wpheight;
[PropertyContext("screenwidth")] Uint32 screenwidth;
[PropertyContext("screenheight")] Uint32 screenheight;
[PropertyContext("dailyuseincrement")] Uint32 dailyuseincrement;
[PropertyContext("entrydate")] String entrydate;
[PropertyContext("userid")] String userid;
};

Leave a Reply