Thanks for your help!

Hi,

Need some help real quick from you more seasoned Big Fixers. I need a quick Task or Fixlet that will simply delete all files that end with .TMP located in the folder C:\Windows\Temp.

Very appreciative!

Sno

here you go -

delete __createfile
delete del.cmd

createfile until EOF

CD C:\Windows\Temp
del /s /q /f *.tmp

EOF

move __createfile del.cmd

wait cmd.exe /C del.cmd
1 Like

Thanks for your help!

I am no CMD/PS scripter, try searching over internet you will find many solutions for that after that you can convert them into BigFix action script.

1 Like