pfsense
verificar os ficheiros maiores que 10 MB:
find / -type f -size +10M
du -k -d 1 / | sort -nr
importante: http://doc.pfsense.org/index.php/Remount_embedded_filesystem_as_read-wr…
verificar os ficheiros maiores que 10 MB:
find / -type f -size +10M
du -k -d 1 / | sort -nr
importante: http://doc.pfsense.org/index.php/Remount_embedded_filesystem_as_read-wr…
CONST LocalDocumentsFolder = "C:\Documents and Settings\"
SET objFSO = CREATEOBJECT("Scripting.FileSystemObject")
SET objFolder = objFSO.GetFolder(localdocumentsfolder)ON ERROR RESUME NEXT
FOR EACH fldr in objFolder.SubFolders
IF NOT isexception(fldr.name) THEN
objFSO.DeleteFolder fldr.path, TRUE
END IF
NEXT
Good news...
I found that on my Windows 7 system the problem was due to EnableBalloonTips being set to zero in
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
I deleted it and now it works fine. You could alse set it to 2 instead of deleting it.
Thanks,
...Karl