posted
26/07/09
Clean-Temp function
By Fredrik WallI’m working on some functions that can help when
working with installation and MSI files.
This one is the first one.
function Clean-Temp { $myTemp = "$Env:temp" get-Childitem $myTemp | remove-Item -recurse -force }
This function deletes everything in the current users temp folder.
No high tech, but nice to have!
Related posts:

Recent Posts