Alex's Weblog

Weblog di Ermanno Goletto (Codename Alex - A Learning EXperience)
posts - 438, comments - 4214, trackbacks - 294

My Links

News

Il blog è stato
trasferito al
 seguente link:


DevAdmin Blog

Add my blog to Live

Foto

Curriculum Vitae


Il contenuto di questo blog e di ciascun post viene fornito “così come é”, senza garanzie, e non conferisce alcun diritto. Questo blog riporta il mio personale pensiero che non riflette necessariamente il pensiero del mio datore di lavoro.

Logo Creative Commons Deed


Logo MCTS

Logo MCSA

Logo MCP

Logo Microsoft Certified Business Management Solutions Professional

Microsoft Certified Business Management Solutions Specialist


Logo UGIdotNET UGIdotNET Contributor


Logo UGISS UGISS Contributor


Logo SysAdmin.it SysAdmin.it Staff


Article Categories

Archives

Post Categories

Blogs

Database

Development

Friends

IT

Knowledge Base

Links

MBS

MCP

MVP Sites

User Groups

Virtualization

Clear dei file temporanei dell'utente in Windows XP

Se è necessario fare pulizia in modo schedulato dei file temporanei dell'utente è possibile utilizzare due approcci:

Il primo basato sul comando CleanMGR il cui utilizzo è spiegato nel seguente:
Automazione dello strumento Pulitura disco in Windows XP

Il secondo approccio è quello di utilizzare un vbscript per eliminare i file e scedularlo. Il seguente script elimina i file temporanei la cui data di modifica differisce da quella attuale di un numero di giorni impostabile tramite la costante days:

Option Explicit
On Error Resume Next

Const days = 3
Dim fso, folder, file, shell, count

Set fso = CreateObject("Scripting.FileSystemObject")
Set shell=CreateObject("WScript.Shell")

Set folder = fso.GetFolder(Shell.ExpandEnvironmentStrings("%TEMP%"))

count=0
For Each file in folder.Files
  If DateDiff("d", file.DateLastModified, Now) >= days Then
    file.Delete
    If Not fso.FileExists(file.Path) Then
      count=count+1
    End If
  End If
Next

msgbox count & " temporary files deleted."

Set shell = Nothing
Set fso = Nothing
Set folder = Nothing
Set file = Nothing

Print | posted on mercoledì 23 aprile 2008 00:02 | Filed Under [ Links Tips IT ]

Feedback

Gravatar

# re: Clear dei file temporanei dell'utente in Windows XP

Suggerimento accolto, ho anche aggiunto il test della effettiva cancellazione per gestire correttamente il contatore dei file eliminati
14/05/2008 12:43 | Alex
Gravatar

# re: Clear dei file temporanei dell'utente in Windows XP

OMTOP.COM, a reliable Chinese wholesale & retail online shop since 2004. We offer diverse & high-quality Chinese products that you can buy at the best prices with free shipping worldwide and free coupons. China wholesale
24/06/2011 12:54 | wikecamera
Gravatar

# re: Clear dei file temporanei dell'utente in Windows XP

This is a really good, detailed article.Green Laser Pointers
05/07/2011 05:37 | Green Laser Pointers
Gravatar

# re: Clear dei file temporanei dell'utente in Windows XP

I agree it's difficult to find the time, but it's certainly more useful/efficient to spend what little time you have available forming meaningful relationships. Spinning Top
20/07/2011 06:28 | Spinning Top
Gravatar

# re: Clear dei file temporanei dell'utente in Windows XP

It is a cool effect. Looks like it’s very tedious to do though. Thanks for sharing this.Puzzle Toys
27/07/2011 08:00 | wikecamera
Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET