Difference between revisions of "Lessons Learned"
Jump to navigation
Jump to search
| Line 17: | Line 17: | ||
rmdir /S /Q D:\Temp | rmdir /S /Q D:\Temp | ||
mkdir D:\Temp | mkdir D:\Temp | ||
| + | </source> | ||
| + | |||
| + | =Killing Processes= | ||
| + | If you have mistakenly started loading a [[Load List|load list]], you can stop the Truxton service but the <code>Load.exe</code> processes will still be running. | ||
| + | <source lang="bat"> | ||
| + | taskkill /fi "IMAGENAME eq Load.exe" /F | ||
</source> | </source> | ||
Revision as of 04:35, 10 December 2020
This page contains some solutions to situations we've encountered during the life of Truxton
Delete Folder Structure
When expanding PST files, sometimes folders can be left behind. Usually, they will contain filenames that Windows thinks doesn't exist. To delete the folder, use the "escaped" name which tells Windows to not think too hard when interpreting the filename.
rmdir /s /q \\?\H:\Trux\Truxton\55E3AF7109F30CA7
Deleting Folder Structure 2
Sometimes, when expanding archives, folder ownership will be reset. To delete them, you must first take ownership and reset the security.
takeown /a /r /d Y /f D:\Temp
icacls D:\Temp /t /grant administrators:F
rmdir /S /Q D:\Temp
mkdir D:\Temp
Killing Processes
If you have mistakenly started loading a load list, you can stop the Truxton service but the Load.exe processes will still be running.
taskkill /fi "IMAGENAME eq Load.exe" /F