Saturday, November 28, 2009

Batch file for auto delete temp files

REM Deletes Temporary Internet Filescd /d c:\Documents and Settings
for /d %%X in (*) do rd /s /q "C:\Documents and Settings\%%X\Local
Settings\Temporary Internet Files"REM Deletes All User's temp filesfor /d %%X in (*) do rd /s /q "C:\Documents and Settings\%%X\Local
Settings\Temp"REM Deletes Windows and WINNT Temp
rd /s /q %SystemRoot%\temp\*.*REM Deletes Microsoft Update filesset unf=%SystemRoot%\$NtUninstall*
for /f "Tokens=*" %%i in ('dir /B /AD %unf%') do rd /s /q
"%SystemRoot%\%%i"set unf=%SystemRoot%\$MSI31Uninstall*
for /f "Tokens=*" %%i in ('dir /B /AD %unf%') do rd /s /q
"%SystemRoot%\%%i"set unf=%SystemRoot%\$NtServicePack*
for /f "Tokens=*" %%i in ('dir /B /AD %unf%') do rd /s /q
"%SystemRoot%\%%i"
<*((((><{
Fishy@xxxxxxxxx
.
Prev by Date: Re: Unable to connect to windows update site
Next by Date: Re: Fatal Execution Engine Error - Error Code 0x7925dc14
Previous by thread: Updates were unable to be successfully installed.
Next by thread: Automatic Update
Index(es):
Date
Thread

powered by
Custom Search Control
Web



google.load('search', '1', {language : 'en'});
google.setOnLoadCallback(function(){
var customSearchControl = new google.search.CustomSearchControl('partner-pub-3777565888511862:94wms0v2qun');
customSearchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);
customSearchControl.draw('cse');
}, true);
.gsc-control-cse {
font-family: Arial, sans-serif;
border-color: #808080;
background-color: #FFFFFF;
}
input.gsc-input {
border-color: #BCCDF0;
}
input.gsc-search-button {
border-color: #336699;
background-color: #E9E9E9;
}
.gsc-tabHeader.gsc-tabhInactive {
border-color: #E9E9E9;
background-color: #E9E9E9;
}
.gsc-tabHeader.gsc-tabhActive {
border-top-color: #FF9900;
border-left-color: #E9E9E9;
border-right-color: #E9E9E9;
background-color: #FFFFFF;
}
.gsc-tabsArea {
border-color: #E9E9E9;
}
.gsc-webResult.gsc-result {
border-color: #FFFFFF;
background-color: #FFFFFF;
}
.gsc-webResult.gsc-result:hover {
border-color: #FFFFFF;
background-color: #FFFFFF;
}
.gs-webResult.gs-result a.gs-title:link,
.gs-webResult.gs-result a.gs-title:link b {
color: #003366;
}
.gs-webResult.gs-result a.gs-title:visited,
.gs-webResult.gs-result a.gs-title:visited b {
color: #616366;
}
.gs-webResult.gs-result a.gs-title:hover,
.gs-webResult.gs-result a.gs-title:hover b {
color: #0000FF;
}
.gs-webResult.gs-result a.gs-title:active,
.gs-webResult.gs-result a.gs-title:active b {
color: #0000FF;
}
.gsc-cursor-page {
color: #003366;
}
a.gsc-trailing-more-results:link {
color: #003366;
}
.gs-webResult.gs-result .gs-snippet {
color: #000000;
}
.gs-webResult.gs-result .gs-visibleUrl {
color: #000000;
}
.gs-webResult.gs-result .gs-visibleUrl-short {
color: #000000;
}
.gsc-cursor-box {
border-color: #FFFFFF;
}
.gsc-results .gsc-cursor-page {
border-color: #E9E9E9;
background-color: #FFFFFF;
}
.gsc-results .gsc-cursor-page.gsc-cursor-current-page {
border-color: #FF9900;
background-color: #FFFFFF;
}
.gs-promotion.gs-result {
border-color: #336699;
background-color: #FFFFFF;
}
.gs-promotion.gs-result a.gs-title:link {
color: #0000CC;
}
.gs-promotion.gs-result a.gs-title:visited {
color: #0000CC;
}
.gs-promotion.gs-result a.gs-title:hover {
color: #0000CC;
}
.gs-promotion.gs-result a.gs-title:active {
color: #0000CC;
}
.gs-promotion.gs-result .gs-snippet {
color: #000000;
}
.gs-promotion.gs-result .gs-visibleUrl,
.gs-promotion.gs-result .gs-visibleUrl-short {
color: #008000;
}
(17)

No comments:

Explaining DNS Concepts - DNS Servers-DNS Queries-DNS Records

3 types of DNS queries— recursive, iterative, and non-recursive 3 types of DNS servers— DNS Resolver, DNS Root Server and Authoritative Name...