I’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!
No related posts.