失落的紀錄

2011-05-26

CorelDRAW 恢復出廠預設值方法

分類: 一般紀事 — 番茄 @ 16:56

CorelDRAW有一些奇怪的狀況時,可以用此法恢復預設值。

A.按住鍵盤的 [F8] 鍵

B.執行 CorelDRAW (還不可以放掉 [F8] 鍵 )

C.出現 [您確定要以製造商所提供的預設值將目前的工作區覆寫嗎?] ,

    此時可以放開   [F8] 鍵,選[是]。

D.完成恢復預設值。 

2011-05-25

html 紀錄

分類: 一般紀事 — 番茄 @ 18:30

html 相關技術

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<title></title>
</head>

<body>
vincent
efbtfc
</body>
</html>

(more…)

Linux語法使用說明

分類: Linux Scrip,Llinux — 番茄 @ 16:54

# 顯示日期

date

# 顯示今天的年月日

date +%Y%m%d

(more…)

關閉Windows Server 2003/2008 IE增強式安全性

分類: 系統相關 — 番茄 @ 14:57

Windows Server 2003

[開始] –> [控制台] –> [新增或移除程式] –> [新增移除Windows元件]

把 [Internet Explorer Enhanced Security Configuration] 取消打勾,按[下一步]即可

(more…)

2011-05-24

批次檔-清除系統垃圾文件

分類: 批次相關 — 番茄 @ 23:15

@echo off
echo 終止程序 explorer.exe
TASKKILL /F /Im explorer.exe

echo 正在清除 %systemdrive% 碟根目錄的垃圾文件,請稍等……
del /f /s /q %systemdrive%*.tmp
del /f /s /q %systemdrive%*._mp
del /f /s /q %systemdrive%*.log
del /f /s /q %systemdrive%*.gid
del /f /s /q %systemdrive%*.chk
del /f /s /q %systemdrive%*.old

echo 正在清除 %windir% 目錄的系統垃圾文件,請稍等……
del /f /s /q %windir%*.bak

echo 正在清除 %systemdrive%RECYCLER 目錄的垃圾文件,請稍等……
rd /s /q %systemdrive%RECYCLER & md %systemdrive%RECYCLER
attrib +s +h %systemdrive%RECYCLER

echo 正在清除 %windir%prefetch 目錄的垃圾文件,請稍等……
rd /s /q %windir%prefetch & md %windir%prefetch

echo 正在清除 %windir%temp 目錄的垃圾文件,請稍等……
rd /s /q %windir%temp & md %windir%temp

echo 正在清除 "%userprofile%Local SettingsTemp" 目錄的垃圾文件,請稍等……
rd /s /q "%userprofile%Local SettingsTemp" & md "%userprofile%Local SettingsTemp"

echo 正在清除 Cookies ,請稍等……
rd /s /q "%userprofile%Cookies" & md "%userprofile%Cookies"
attrib +s "%userprofile%Cookies"

echo 正在清除 %userprofile%Recent 目錄的垃圾文件,請稍等……
del /f /q /a "%userprofile%Recent*.*"

echo 正在清除 Temporary Internet Files 的垃圾文件,請稍等……
rd /s /q "%userprofile%Local SettingsTemporary Internet Files"
md "%userprofile%Local SettingsTemporary Internet Files"
pause

echo 確認目錄有被建立
@echo on
attrib %systemdrive%RECYCLER
attrib %windir%prefetch
attrib %windir%temp
attrib "%userprofile%Local SettingsTemp"
attrib "%userprofile%Cookies"
attrib "%userprofile%Local SettingsTemporary Internet Files"
@echo off
pause

echo 清除系統垃圾檔案完成!
echo 接下來將將進行關機,如果不想關機請按 Ctrl + C 終止程式
echo. & pause
shutdown.exe -s -f -t 0
==============================================
@echo off
echo 終止程序 explorer.exe
TASKKILL /F /Im explorer.exe

echo 正在清除 %systemdrive% 碟根目錄的垃圾文件,請稍等……
del /f /s /q %systemdrive%*.tmp
del /f /s /q %systemdrive%*._mp
del /f /s /q %systemdrive%*.log
del /f /s /q %systemdrive%*.gid
del /f /s /q %systemdrive%*.chk
del /f /s /q %systemdrive%*.old

echo 正在清除 %windir% 目錄的系統垃圾文件,請稍等……
del /f /s /q %windir%*.bak

echo 正在清除 %systemdrive%RECYCLER 目錄的垃圾文件,請稍等……
rd /s /q %systemdrive%RECYCLER & md %systemdrive%RECYCLER
attrib +s +h %systemdrive%RECYCLER

echo 正在清除 %windir%prefetch 目錄的垃圾文件,請稍等……
rd /s /q %windir%prefetch & md %windir%prefetch

echo 正在清除 %windir%temp 目錄的垃圾文件,請稍等……
rd /s /q %windir%temp & md %windir%temp

echo 正在清除 "%userprofile%Local SettingsTemp" 目錄的垃圾文件,請稍等……
rd /s /q "%userprofile%Local SettingsTemp" & md "%userprofile%Local SettingsTemp"

echo 正在清除 Cookies ,請稍等……
rd /s /q "%userprofile%Cookies" & md "%userprofile%Cookies"
attrib +s "%userprofile%Cookies"

echo 正在清除 %userprofile%Recent 目錄的垃圾文件,請稍等……
del /f /q /a "%userprofile%Recent*.*"

echo 正在清除 Temporary Internet Files 的垃圾文件,請稍等……
rd /s /q "%userprofile%Local SettingsTemporary Internet Files"
md "%userprofile%Local SettingsTemporary Internet Files"
pause

echo 確認目錄有被建立
@echo on
attrib %systemdrive%RECYCLER
attrib %windir%prefetch
attrib %windir%temp
attrib "%userprofile%Local SettingsTemp"
attrib "%userprofile%Cookies"
attrib "%userprofile%Local SettingsTemporary Internet Files"
echo 啟動 explorer.exe 檔
@echo off
pause
cd
cd windows
explorer.exe
==============================================
@echo off
echo 終止程序 explorer.exe
TASKKILL /F /Im explorer.exe

echo 正在清除 %systemdrive% 碟根目錄的垃圾文件,請稍等……
del /f /s /q %systemdrive%*.tmp
del /f /s /q %systemdrive%*._mp
del /f /s /q %systemdrive%*.log
del /f /s /q %systemdrive%*.gid
del /f /s /q %systemdrive%*.chk
del /f /s /q %systemdrive%*.old

echo 正在清除 %windir% 目錄的系統垃圾文件,請稍等……
del /f /s /q %windir%*.bak

echo 正在清除 %systemdrive%RECYCLER 目錄的垃圾文件,請稍等……
rd /s /q %systemdrive%RECYCLER & md %systemdrive%RECYCLER
attrib +s +h %systemdrive%RECYCLER

echo 正在清除 %windir%prefetch 目錄的垃圾文件,請稍等……
rd /s /q %windir%prefetch & md %windir%prefetch

echo 正在清除 %windir%temp 目錄的垃圾文件,請稍等……
rd /s /q %windir%temp & md %windir%temp

echo 正在清除 "%userprofile%Local SettingsTemp" 目錄的垃圾文件,請稍等……
rd /s /q "%userprofile%Local SettingsTemp" & md "%userprofile%Local SettingsTemp"

echo 正在清除 Cookies ,請稍等……
rd /s /q "%userprofile%Cookies" & md "%userprofile%Cookies"
attrib +s "%userprofile%Cookies"

echo 正在清除 %userprofile%Recent 目錄的垃圾文件,請稍等……
del /f /q /a "%userprofile%Recent*.*"

echo 正在清除 Temporary Internet Files 的垃圾文件,請稍等……
rd /s /q "%userprofile%Local SettingsTemporary Internet Files"
md "%userprofile%Local SettingsTemporary Internet Files"
pause

echo 確認目錄有被建立
@echo on
attrib %systemdrive%RECYCLER
attrib %windir%prefetch
attrib %windir%temp
attrib "%userprofile%Local SettingsTemp"
attrib "%userprofile%Cookies"
attrib "%userprofile%Local SettingsTemporary Internet Files"
@echo off
pause

echo 清除系統垃圾檔案完成!
echo 接下來將將進行關機,如果不想關機請按 Ctrl + C 終止程式
echo. & pause
shutdown.exe -r -f -t 0

較舊的文章 »

Powered by WordPress