Just something i use to modify the default user hive for our windows 7 deployments....
@ECHO OFF
REM *****************************************************
REM Script configures the Default User Profile
REM *****************************************************
echo.
echo. Load default profile HIVE and apply registry settings.
echo.
REM Load the default profile hive
REG LOAD HKU\Default C:\Users\Default\NTUSER.DAT
REM Configure the default user profile
REM Customise Wallpaper Theme Screensaver etc.
REG IMPORT HKDUser\HKU_ControlPanel_Desktop.reg
REG IMPORT HKDUser\HKU_Themes.reg
REG IMPORT HKDUser\HKU_Software_MSWin_DWM.reg
REG IMPORT HKDUser\HKU_ControlPanel_Colors.reg
REG IMPORT HKDUser\HKU_ControlPanel_Cursors.reg
REM Unload the default profile hive
REG UNLOAD HKU\Default
exit
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Just something i use to modify the default user hive for our windows 7 deployments....
Share this post
Link to post
Share on other sites