開機更新桌面主題的批處理代碼
更新時間:2008年05月20日 23:07:43 作者:
更新桌面主題的批處理代碼
echo off
set 主題路徑=" "
echo Windows Registry Editor Version 5.00 >%temp%\theme.dll
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager] >>%temp%\theme.dll
echo "WCreatedUser"="1" >>%temp%\theme.dll
echo "ThemeActive"="1" >>%temp%\theme.dll
echo "LoadedBefore"="1" >>%temp%\theme.dll
echo "LastUserLangID"="2052" >>%temp%\theme.dll
echo "DllName"=%主題路徑% >>%temp%\theme.dll
echo "ColorName"="NormalColor" >>%temp%\theme.dll
echo "SizeName"="NormalSize" >>%temp%\theme.dll
regedit /s %temp%\theme.dll
net stop Themes
net start themes
set 主題路徑=" "
echo Windows Registry Editor Version 5.00 >%temp%\theme.dll
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager] >>%temp%\theme.dll
echo "WCreatedUser"="1" >>%temp%\theme.dll
echo "ThemeActive"="1" >>%temp%\theme.dll
echo "LoadedBefore"="1" >>%temp%\theme.dll
echo "LastUserLangID"="2052" >>%temp%\theme.dll
echo "DllName"=%主題路徑% >>%temp%\theme.dll
echo "ColorName"="NormalColor" >>%temp%\theme.dll
echo "SizeName"="NormalSize" >>%temp%\theme.dll
regedit /s %temp%\theme.dll
net stop Themes
net start themes
相關(guān)文章
windows系統(tǒng)配制wget計劃任務(wù)腳本
這篇文章主要介紹了windows系統(tǒng)配制wget計劃任務(wù)腳本,需要的朋友可以參考下2014-04-04
禁止指定QQ號登錄的bat代碼(前提這個用戶在這臺機器登陸過)
禁止指定QQ號登錄的bat代碼(前提這個用戶在這臺機器登陸過),其實是通過設(shè)置Registry.db的只讀,導(dǎo)致qq無法修過2012-05-05
批處理bat下載FTP服務(wù)器上指定天數(shù)之前的文件
這篇文章主要介紹了批處理bat下載FTP服務(wù)器上指定天數(shù)之前的文件的實現(xiàn)代碼,需要的朋友可以參考下2014-07-07

