開機(jī)更新桌面主題的批處理代碼
更新時(shí)間: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計(jì)劃任務(wù)腳本
這篇文章主要介紹了windows系統(tǒng)配制wget計(jì)劃任務(wù)腳本,需要的朋友可以參考下2014-04-04
禁止指定QQ號登錄的bat代碼(前提這個(gè)用戶在這臺機(jī)器登陸過)
禁止指定QQ號登錄的bat代碼(前提這個(gè)用戶在這臺機(jī)器登陸過),其實(shí)是通過設(shè)置Registry.db的只讀,導(dǎo)致qq無法修過2012-05-05
XCOPY只拷貝當(dāng)天文件的實(shí)現(xiàn)代碼
最近由于需要備份一些文件,一般只需要備份當(dāng)前的文件就可以了,聽過xcopy支持這個(gè)方法,代碼也比較簡單特分享下,方便需要的朋友2014-04-04
批處理bat下載FTP服務(wù)器上指定天數(shù)之前的文件
這篇文章主要介紹了批處理bat下載FTP服務(wù)器上指定天數(shù)之前的文件的實(shí)現(xiàn)代碼,需要的朋友可以參考下2014-07-07

