SMalik Posted May 17, 2022 Share Posted May 17, 2022 Any idea where system saves usage history of Store Apps on Windows 10/11? I think there should be an entry to delete usage history. Link to comment Share on other sites More sharing options...
APMichael Posted May 17, 2022 Share Posted May 17, 2022 9 hours ago, SMalik said: Any idea where system saves usage history of Store Apps on Windows 10/11? I think there should be an entry to delete usage history. ... This data also seems to be stored in the "Network Data Usage" database. At least, everything is reset to 0 for me after deleting all files under "%WinDir%\System32\sru". Note that some of the files are locked and can only be deleted a few minutes after closing the Task Manager and all other opened apps. The Winapp2.ini entry [Windows Subsystems *] already deletes these files completely. (The CCleaner entry [Network Data Usage] deletes only incompletely.) Link to comment Share on other sites More sharing options...
siliconman01 Posted May 20, 2022 Share Posted May 20, 2022 Modified entry: [Intel Logs *] Added FileKey11 and FileKey12 [Intel Logs *] LangSecRef=3024 Detect1=HKCU\Software\Intel Detect2=HKLM\Software\Intel FileKey1=%CommonAppData%\Intel|*.log;*.log.bak;*Log.txt|RECURSE FileKey2=%CommonAppData%\Intel(R) Update Manager\AppData|ium.log FileKey3=%CommonAppData%\Intel\*\Log*|*.* FileKey4=%CommonAppData%\Intel\GCC|gcc_svc_log_*.txt FileKey5=%CommonAppData%\Intel\Logs|*.* FileKey6=%LocalAppData%\Intel\SUR\QueenCreek\Collected Data|*error_stack-*.txt FileKey7=%ProgramFiles%\Intel\*|*.log;*Log.txt|RECURSE FileKey8=%ProgramFiles%\Intel\InfInst|*.*|REMOVESELF FileKey9=%SystemDrive%|IFRToolLog.txt FileKey10=%SystemDrive%\Driver_allOS\MEI\Drivers\MEI\INTERNAL|*.log|RECURSE FileKey11=%SystemDrive%\Intel|*.log|REMOVESELF FileKey12=%SystemDrive%\Intel\GfxCPLBatchFiles|*.*|REMOVESELF FileKey13=%SystemDrive%\Intel\Logs|*.*|REMOVESELF FileKey14=%UserProfile%\Intel\Logs|*.*|REMOVESELF FileKey15=%WinDir%\debug\Intel\Logs|*.*|REMOVESELF FileKey16=%WinDir%\System32|Default_error_Stack-*.txt;Gms.log FileKey17=%WinDir%\System32\config\systemprofile\Intel\Logs|*.*|REMOVESELF FileKey18=%WinDir%\SysWOW64|Gms.log FileKey19=%WinDir%\SysWOW64\config\systemprofile\Intel\Logs|*.*|REMOVESELF Windows 10 x64 Pro on ASUS Maximus VIII Extreme motherboard, i7-6700k CPU,H220 X2 Liquid Cooler, 64 gbyte RipJaws DDR4 3200 RAM, Samsung 970 Pro NVMe M.2 500 gbyte SSD + Samsung 850 Pro 512 gbyte SSD, EVGA RTX 3060 Titan graphics card (Home Built System); Windows 11x64 Pro on 512 gigabyte Dell XPS 15 2-in-1 Laptop/tablet and Dell XPS 8940 PC. ASUS RT-AC88U router, 14 tbyte WD My Cloud PR2100 NAS Server, 200 Mbps cable Internet, MS Edge Chromium, MS Office 2021 (Local), Casper 11, DisplayFusion (3 Flat Panel Displays per system): Bitdefender Internet Security 2022, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD22, MSI AfterBurner, Rainmeter, Windows Sidebar, and many more. Link to comment Share on other sites More sharing options...
Special Posted May 22, 2022 Share Posted May 22, 2022 I was hoping to get a little help here with a rule I'm trying to make... I'm trying to delete these keys while keeping the other two in red. The rule I have is: FileKey7=%LocalLowAppData%\ABCDEF\folderXYZ|metagameSave.json.* but that deletes the "metagameSave.json.backup" too, I don't want that, the only way I've found to exclude the backup file is to do: FileKey7=%LocalLowAppData%\ABCDEF\folderXYZ|metagameSave.json.1;metagameSave.json.2;metagameSave.json.3;metagameSave.json.4;metagameSave.json.5;metagameSave.json.6 etc... which will delete the keys I want while leaving the "backup" one. Is there a simpler way? Thanks for any help & tips in advance. :) Link to comment Share on other sites More sharing options...
CSGalloway Posted May 23, 2022 Share Posted May 23, 2022 3 hours ago, Special said: I was hoping to get a little help here with a rule I'm trying to make... I'm trying to delete these keys while keeping the other two in red. The rule I have is: FileKey7=%LocalLowAppData%\ABCDEF\folderXYZ|metagameSave.json.* but that deletes the "metagameSave.json.backup" too, I don't want that, the only way I've found to exclude the backup file is to do: FileKey7=%LocalLowAppData%\ABCDEF\folderXYZ|metagameSave.json.1;metagameSave.json.2;metagameSave.json.3;metagameSave.json.4;metagameSave.json.5;metagameSave.json.6 etc... which will delete the keys I want while leaving the "backup" one. Is there a simpler way? Thanks for any help & tips in advance. :) FileKey7=%LocalLowAppData%\ABCDEF\folderXYZ|metagameSave.json.? will work....... Link to comment Share on other sites More sharing options...
APMichael Posted May 23, 2022 Share Posted May 23, 2022 11 hours ago, Special said: ... etc... which will delete the keys I want while leaving the "backup" one. Is there a simpler way? ... The use of the "?" placeholder suggested by CSGalloway is certainly the best solution here. In cases where it doesn't work even with the "?" placeholder, an "ExcludeKey" can also be used, like for example: ExcludeKey1=FILE|%LocalLowAppData%\ABCDEF\folderXYZ\|metagameSave.json.backup Link to comment Share on other sites More sharing options...
APMichael Posted May 23, 2022 Share Posted May 23, 2022 Thank you for the modified entries. Winapp2.ini update:https://github.com/MoscaDotTo/Winapp2/commit/1c4e472b48fc27ae6f5b1f86f3d68aecd64205f2 Winapp3.ini update:https://github.com/MoscaDotTo/Winapp2/commit/ea91a1a881b678247d97c7a7178cbdbfcefbb4b8 Link to comment Share on other sites More sharing options...
Special Posted May 23, 2022 Share Posted May 23, 2022 21 hours ago, CSGalloway said: FileKey7=%LocalLowAppData%\ABCDEF\folderXYZ|metagameSave.json.? will work....... Thanks so much you two, this worked perfectly... I didn't even know you could do it this way! I actually tried doing the "ExcludeKey1" way too, but it wasn't working which was odd. But oh well it's all good now. :) Link to comment Share on other sites More sharing options...
siliconman01 Posted May 26, 2022 Share Posted May 26, 2022 Modified entry: [DVDFab *] Added FileKey2 [DVDFab *] LangSecRef=3023 Detect1=HKCU\Software\DVDFab Detect2=HKCU\Software\DVDFab Passkey Detect3=HKCU\Software\FabPlayer FileKey1=%AppData%\DVDFab Player*\Advertis*|*.*|RECURSE FileKey2=%AppData%\DVDFab\DVDFab*\regRecord|*.rec FileKey3=%AppData%\DVDFab\DVDFab*\SceneData|*.*|RECURSE FileKey4=%AppData%\LiveUpdate|*.log FileKey5=%AppData%\Microsoft\Windows\Templates\Videos\Temp|*.*|RECURSE FileKey6=%Documents%\DVDFab*|*.log FileKey7=%Documents%\DVDFab*\Log|*.*|RECURSE FileKey8=%Documents%\DVDFab*\SceneData|*.*|RECURSE FileKey9=%Documents%\DVDFab*\Temp|*.*|RECURSE FileKey10=%Documents%\DVDFab\DVDFab*\Cinavia|*.*|RECURSE FileKey11=%Documents%\DVDFab\DVDFab*\Log|*.*|RECURSE FileKey12=%Documents%\DVDFab\DVDFab*\Temp|*.*|RECURSE FileKey13=%Documents%\DVDFab\updateLog|*.*|REMOVESELF FileKey14=%Documents%\LiveUpdate|*.*|REMOVESELF FileKey15=%Documents%\PcSetup|*.*|RECURSE FileKey16=%LocalAppData%\DVDFab*\cache\QtWebEngine\Default\Cache|*.* FileKey17=%LocalAppData%\DVDFab*\QtWebEngine\Default\GPUCache|*.*|REMOVESELF RegKey1=HKCU\Software\FabPlayer|DefaultDir RegKey2=HKCU\Software\FabPlayer|DefaultFile Windows 10 x64 Pro on ASUS Maximus VIII Extreme motherboard, i7-6700k CPU,H220 X2 Liquid Cooler, 64 gbyte RipJaws DDR4 3200 RAM, Samsung 970 Pro NVMe M.2 500 gbyte SSD + Samsung 850 Pro 512 gbyte SSD, EVGA RTX 3060 Titan graphics card (Home Built System); Windows 11x64 Pro on 512 gigabyte Dell XPS 15 2-in-1 Laptop/tablet and Dell XPS 8940 PC. ASUS RT-AC88U router, 14 tbyte WD My Cloud PR2100 NAS Server, 200 Mbps cable Internet, MS Edge Chromium, MS Office 2021 (Local), Casper 11, DisplayFusion (3 Flat Panel Displays per system): Bitdefender Internet Security 2022, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD22, MSI AfterBurner, Rainmeter, Windows Sidebar, and many more. Link to comment Share on other sites More sharing options...
siliconman01 Posted May 26, 2022 Share Posted May 26, 2022 Modfied entry: [Snagit *] Added FileKey1 [Snagit *] LangSecRef=3021 Detect=HKCU\Software\TechSmith\Snagit FileKey1=%AppData%\Techsmith\Snagit\Preferences\Output\*|*.*|REMOVESELF FileKey2=%CommonAppData%\TechSmith\Uploader|*.log FileKey3=%Documents%|SnagitDebug.log FileKey4=%Documents%\Snagit|*.snagx FileKey5=%Documents%\Snagit\.metadata|*.*|RECURSE FileKey6=%LocalAppData%\TechSmith\Logs|*.log FileKey7=%LocalAppData%\TechSmith\Snagit|Tray.bin FileKey8=%LocalAppData%\TechSmith\Snagit\*\NativeCrashReporting\Reports|*.dmp|RECURSE FileKey9=%LocalAppData%\TechSmith\Snagit\*\WebView2Cache\EBWebView\*\GPUCache|*.*|REMOVESELF FileKey10=%LocalAppData%\TechSmith\Snagit\CrashDumps|*.*|RECURSE FileKey11=%LocalAppData%\TechSmith\Snagit\DataStore\AppIcons|*.ico FileKey12=%LocalAppData%\TechSmith\Snagit\DataStore\WebSiteIcons|*.ico FileKey13=%LocalAppData%\TechSmith\Snagit\Thumbnails|*.*|RECURSE FileKey14=%LocalAppData%\TechSmith\Snagit\TrackerbirdFiles|*.log;*.logtmp FileKey15=%Public%\TechSmith\Snagit\License|*.cache;*.log RegKey1=HKCU\Software\TechSmith\Snagit\9|StampCustomFolder RegKey2=HKCU\Software\TechSmith\Snagit\10|StampCustomFolder RegKey3=HKCU\Software\TechSmith\Snagit\11|CaptureCount RegKey4=HKCU\Software\TechSmith\Snagit\11|CaptureOpenCount RegKey5=HKCU\Software\TechSmith\Snagit\11|OutputDirLastUsed RegKey6=HKCU\Software\TechSmith\Snagit\11|VidOutputDirLastUsed RegKey7=HKCU\Software\TechSmith\Snagit\11\SnagItEditor\Tray|Thumbnailsize RegKey8=HKCU\Software\TechSmith\Snagit\12|CaptureCount RegKey9=HKCU\Software\TechSmith\Snagit\12|CaptureOpenCount RegKey10=HKCU\Software\TechSmith\Snagit\12|OutputDirLastUsed RegKey11=HKCU\Software\TechSmith\Snagit\12|VidOutputDirLastUsed RegKey12=HKCU\Software\TechSmith\Snagit\12\SnagItEditor\Tray|Thumbnailsize RegKey13=HKCU\Software\TechSmith\Snagit\13|CaptureCount RegKey14=HKCU\Software\TechSmith\Snagit\13|CaptureOpenCount RegKey15=HKCU\Software\TechSmith\Snagit\13|OutputDirLastUsed RegKey16=HKCU\Software\TechSmith\Snagit\13|VidOutputDirLastUsed RegKey17=HKCU\Software\TechSmith\Snagit\13\Recent Captures RegKey18=HKCU\Software\TechSmith\Snagit\13\SnagitEditor\Recent File List RegKey19=HKCU\Software\TechSmith\Snagit\13\SnagItEditor\Tray|Thumbnailsize RegKey20=HKCU\Software\TechSmith\Snagit\18|CaptureCount RegKey21=HKCU\Software\TechSmith\Snagit\18|CaptureOpenCount RegKey22=HKCU\Software\TechSmith\Snagit\18|OutputDirLastUsed RegKey23=HKCU\Software\TechSmith\Snagit\18|VidOutputDirLastUsed RegKey24=HKCU\Software\TechSmith\Snagit\18\Recent Captures RegKey25=HKCU\Software\TechSmith\Snagit\18\SnagitEditor\Recent File List RegKey26=HKCU\Software\TechSmith\Snagit\18\SnagItEditor\Tray|Thumbnailsize RegKey27=HKCU\Software\TechSmith\Snagit\19|CaptureCount RegKey28=HKCU\Software\TechSmith\Snagit\19|CaptureOpenCount RegKey29=HKCU\Software\TechSmith\Snagit\19|OutputDirLastUsed RegKey30=HKCU\Software\TechSmith\Snagit\19|VidOutputDirLastUsed RegKey31=HKCU\Software\TechSmith\Snagit\19\Recent Captures RegKey32=HKCU\Software\TechSmith\Snagit\19\SnagitEditor\Recent File List RegKey33=HKCU\Software\TechSmith\Snagit\19\SnagItEditor\Tray|Thumbnailsize RegKey34=HKCU\Software\TechSmith\Snagit\20|CaptureCount RegKey35=HKCU\Software\TechSmith\Snagit\20|CaptureOpenCount RegKey36=HKCU\Software\TechSmith\Snagit\20|OutputDirLastUsed RegKey37=HKCU\Software\TechSmith\Snagit\20|VidOutputDirLastUsed RegKey38=HKCU\Software\TechSmith\Snagit\20\Recent Captures RegKey39=HKCU\Software\TechSmith\Snagit\20\SnagitEditor\Recent File List RegKey40=HKCU\Software\TechSmith\Snagit\20\SnagItEditor\Tray|Thumbnailsize RegKey41=HKCU\Software\TechSmith\Snagit\21|CaptureCount RegKey42=HKCU\Software\TechSmith\Snagit\21|CaptureOpenCount RegKey43=HKCU\Software\TechSmith\Snagit\21|OutputDirLastUsed RegKey44=HKCU\Software\TechSmith\Snagit\21|VidOutputDirLastUsed RegKey45=HKCU\Software\TechSmith\Snagit\21\Recent Captures RegKey46=HKCU\Software\TechSmith\Snagit\21\SnagitEditor\Recent File List RegKey47=HKCU\Software\TechSmith\Snagit\21\SnagItEditor\Tray|Thumbnailsize RegKey48=HKCU\Software\TechSmith\Snagit\22|CaptureCount RegKey49=HKCU\Software\TechSmith\Snagit\22|CaptureOpenCount RegKey50=HKCU\Software\TechSmith\Snagit\22|OutputDirLastUsed RegKey51=HKCU\Software\TechSmith\Snagit\22|VidOutputDirLastUsed RegKey52=HKCU\Software\TechSmith\Snagit\22\Recent Captures RegKey53=HKCU\Software\TechSmith\Snagit\22\SnagitEditor\Recent File List RegKey54=HKCU\Software\TechSmith\Snagit\22\SnagItEditor\Tray|Thumbnailsize Windows 10 x64 Pro on ASUS Maximus VIII Extreme motherboard, i7-6700k CPU,H220 X2 Liquid Cooler, 64 gbyte RipJaws DDR4 3200 RAM, Samsung 970 Pro NVMe M.2 500 gbyte SSD + Samsung 850 Pro 512 gbyte SSD, EVGA RTX 3060 Titan graphics card (Home Built System); Windows 11x64 Pro on 512 gigabyte Dell XPS 15 2-in-1 Laptop/tablet and Dell XPS 8940 PC. ASUS RT-AC88U router, 14 tbyte WD My Cloud PR2100 NAS Server, 200 Mbps cable Internet, MS Edge Chromium, MS Office 2021 (Local), Casper 11, DisplayFusion (3 Flat Panel Displays per system): Bitdefender Internet Security 2022, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD22, MSI AfterBurner, Rainmeter, Windows Sidebar, and many more. Link to comment Share on other sites More sharing options...
siliconman01 Posted May 26, 2022 Share Posted May 26, 2022 Modified entry: [Weather Watcher Live *] Added FileKey2 [Weather Watcher Live *] LangSecRef=3021 Detect=HKCU\Software\VB and VBA Program Settings\Weather Watcher Live FileKey1=%AppData%\WeatherWatcherLive|WeatherWatcherLive.log FileKey2=%AppData%\WeatherWatcherLive\LatestChanges|*.* FileKey3=%AppData%\WeatherWatcherLive\Temp|*.* Windows 10 x64 Pro on ASUS Maximus VIII Extreme motherboard, i7-6700k CPU,H220 X2 Liquid Cooler, 64 gbyte RipJaws DDR4 3200 RAM, Samsung 970 Pro NVMe M.2 500 gbyte SSD + Samsung 850 Pro 512 gbyte SSD, EVGA RTX 3060 Titan graphics card (Home Built System); Windows 11x64 Pro on 512 gigabyte Dell XPS 15 2-in-1 Laptop/tablet and Dell XPS 8940 PC. ASUS RT-AC88U router, 14 tbyte WD My Cloud PR2100 NAS Server, 200 Mbps cable Internet, MS Edge Chromium, MS Office 2021 (Local), Casper 11, DisplayFusion (3 Flat Panel Displays per system): Bitdefender Internet Security 2022, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD22, MSI AfterBurner, Rainmeter, Windows Sidebar, and many more. Link to comment Share on other sites More sharing options...
siliconman01 Posted May 30, 2022 Share Posted May 30, 2022 Modified entry: [RivetNetworks *] Added FileKey1 [RivetNetworks *] LangSecRef=3024 Detect=HKLM\Software\RivetNetworks FileKey1=%CommonAppData%\RivetNetworks\ImageCache|*.* FileKey2=%CommonAppData%\RivetNetworks\Killer|*.log FileKey3=%WinDir%\System32\drivers\RivetNetworks\Killer|*.log Windows 10 x64 Pro on ASUS Maximus VIII Extreme motherboard, i7-6700k CPU,H220 X2 Liquid Cooler, 64 gbyte RipJaws DDR4 3200 RAM, Samsung 970 Pro NVMe M.2 500 gbyte SSD + Samsung 850 Pro 512 gbyte SSD, EVGA RTX 3060 Titan graphics card (Home Built System); Windows 11x64 Pro on 512 gigabyte Dell XPS 15 2-in-1 Laptop/tablet and Dell XPS 8940 PC. ASUS RT-AC88U router, 14 tbyte WD My Cloud PR2100 NAS Server, 200 Mbps cable Internet, MS Edge Chromium, MS Office 2021 (Local), Casper 11, DisplayFusion (3 Flat Panel Displays per system): Bitdefender Internet Security 2022, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD22, MSI AfterBurner, Rainmeter, Windows Sidebar, and many more. Link to comment Share on other sites More sharing options...
SMalik Posted June 7, 2022 Share Posted June 7, 2022 Revised entry changed DetectFile added FileKeys 1, 3, 4, 9, 10 [Wondershare Dr.Fone *] LangSecRef=3021 DetectFile=%ProgramFiles%\Wondershare\Wondershare Dr.Fone FileKey1=%AppData%\DataEraser_Temp|*.*|RECURSE FileKey2=%CommonAppData%\Wondershare\dr.fone\log|*.*|RECURSE FileKey3=%CommonAppData%\Wondershare\dr.fone\Wondershare_DataEraser_Clean|*.*|RECURSE FileKey4=%CommonAppData%\Wondershare\DriverInstall|*.log FileKey5=%CommonAppData%\Wondershare\WAF\Log|*.*|RECURSE FileKey6=%CommonAppData%\Wondershare\WAF\ProductFeatures\*Logs|*.*|RECURSE FileKey7=%CommonAppData%\Wondershare\WSRoot|*.tmp FileKey8=%CommonAppData%\Wondershare\WSRoot\Logs|*.*|RECURSE FileKey9=%CommonAppData%\WsAppHelper\Dr.Fone|*.log FileKey10=%ProgramFiles%\Wondershare\MirrorGo\Log|*.*|RECURSE Link to comment Share on other sites More sharing options...
Willy2 Posted June 8, 2022 Share Posted June 8, 2022 - The latest version of REAL Player (v20.1.0.312, released in early May (???) 2022) has adopted a kind of Chrome like storage of (temporary) files. That requires some additional lines for "winapp.ini": FileKey20=%LocalAppData%\Real\RealPlayer\EBWebview\Default\Code Cache\js\*.* FileKey21=%LocalAppData%\Real\RealPlayer\EBWebview\Default\Cache\Cache_Data\*.* FileKey20=%LocalAppData%\Real\RealPlayer\EBWebview\*.* See also the picture attached: System setup: http://speccy.piriform.com/results/gcNzIPEjEb0B2khOOBVCHPc A discussion always stimulates the braincells !!! Link to comment Share on other sites More sharing options...
Willy2 Posted June 9, 2022 Share Posted June 9, 2022 Had to improve the previous post in 2 ways. Am I correct that the "|" character indicates that CC should only look for files and not directories ? FileKey20=%LocalAppData%\Real\RealPlayer\EBWebview\Default\Code Cache\js\|*.*FileKey21=%LocalAppData%\Real\RealPlayer\EBWebview\Default\Cache\Cache_Data\|*.*FileKey22=%LocalAppData%\Real\RealPlayer\EBWebview\|*.* System setup: http://speccy.piriform.com/results/gcNzIPEjEb0B2khOOBVCHPc A discussion always stimulates the braincells !!! Link to comment Share on other sites More sharing options...
APMichael Posted June 9, 2022 Share Posted June 9, 2022 3 hours ago, Willy2 said: ... Am I correct that the "|" character indicates that CC should only look for files and not directories ? ... The pipe symbol is just the separator for the file pattern. Directories are only deleted if |RECURSE or |REMOVESELF is also used. Link to comment Share on other sites More sharing options...
Winapp2.ini Posted June 11, 2022 Author Share Posted June 11, 2022 https://github.com/MoscaDotTo/Winapp2/pull/895 winapp2.ini additions thread winapp2.ini github Link to comment Share on other sites More sharing options...
siliconman01 Posted June 11, 2022 Share Posted June 11, 2022 1 hour ago, Winapp2.ini said: https://github.com/MoscaDotTo/Winapp2/pull/895 Pardon my ignorance, but how am I to handle this via winapp2ool ? Windows 10 x64 Pro on ASUS Maximus VIII Extreme motherboard, i7-6700k CPU,H220 X2 Liquid Cooler, 64 gbyte RipJaws DDR4 3200 RAM, Samsung 970 Pro NVMe M.2 500 gbyte SSD + Samsung 850 Pro 512 gbyte SSD, EVGA RTX 3060 Titan graphics card (Home Built System); Windows 11x64 Pro on 512 gigabyte Dell XPS 15 2-in-1 Laptop/tablet and Dell XPS 8940 PC. ASUS RT-AC88U router, 14 tbyte WD My Cloud PR2100 NAS Server, 200 Mbps cable Internet, MS Edge Chromium, MS Office 2021 (Local), Casper 11, DisplayFusion (3 Flat Panel Displays per system): Bitdefender Internet Security 2022, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD22, MSI AfterBurner, Rainmeter, Windows Sidebar, and many more. Link to comment Share on other sites More sharing options...
Winapp2.ini Posted June 11, 2022 Author Share Posted June 11, 2022 Just now, siliconman01 said: Pardon my ignorance, but how am I to handle this via winapp2ool ? This is a change I'm proposing and isnt available yet via winapp2ool winapp2.ini additions thread winapp2.ini github Link to comment Share on other sites More sharing options...
APMichael Posted June 15, 2022 Share Posted June 15, 2022 Thank you for the modified/revised entries. Winapp2.ini update:https://github.com/MoscaDotTo/Winapp2/commit/fbd8ffe7227a9d13934bcd3dfbc6aeef033f0d56 Winapp3.ini update:https://github.com/MoscaDotTo/Winapp2/commit/aadee1d6f4e8eaf8aa73a334c84b1f7dabff9cab Link to comment Share on other sites More sharing options...
SMalik Posted June 17, 2022 Share Posted June 17, 2022 Revised entry This should be removed: %AppData%\Techsmith\Snagit\Preferences\Output\*|*.*|REMOVESELF [Snagit *] LangSecRef=3021 Detect=HKCU\Software\TechSmith\Snagit FileKey1=%CommonAppData%\TechSmith\Uploader|*.log FileKey2=%Documents%|SnagitDebug.log FileKey3=%Documents%\Snagit|*.snagx FileKey4=%Documents%\Snagit\.metadata|*.*|RECURSE FileKey5=%LocalAppData%\TechSmith\Logs|*.log FileKey6=%LocalAppData%\TechSmith\Snagit|Tray.bin FileKey7=%LocalAppData%\TechSmith\Snagit\*\NativeCrashReporting\Reports|*.dmp|RECURSE FileKey8=%LocalAppData%\TechSmith\Snagit\*\WebView2Cache\EBWebView\*\GPUCache|*.*|REMOVESELF FileKey9=%LocalAppData%\TechSmith\Snagit\CrashDumps|*.*|RECURSE FileKey10=%LocalAppData%\TechSmith\Snagit\DataStore\AppIcons|*.ico FileKey11=%LocalAppData%\TechSmith\Snagit\DataStore\WebSiteIcons|*.ico FileKey12=%LocalAppData%\TechSmith\Snagit\Thumbnails|*.*|RECURSE FileKey13=%LocalAppData%\TechSmith\Snagit\TrackerbirdFiles|*.log;*.logtmp FileKey14=%Public%\TechSmith\Snagit\License|*.cache;*.log RegKey1=HKCU\Software\TechSmith\Snagit\9|StampCustomFolder RegKey2=HKCU\Software\TechSmith\Snagit\10|StampCustomFolder RegKey3=HKCU\Software\TechSmith\Snagit\11|CaptureCount RegKey4=HKCU\Software\TechSmith\Snagit\11|CaptureOpenCount RegKey5=HKCU\Software\TechSmith\Snagit\11|OutputDirLastUsed RegKey6=HKCU\Software\TechSmith\Snagit\11|VidOutputDirLastUsed RegKey7=HKCU\Software\TechSmith\Snagit\11\SnagItEditor\Tray|Thumbnailsize RegKey8=HKCU\Software\TechSmith\Snagit\12|CaptureCount RegKey9=HKCU\Software\TechSmith\Snagit\12|CaptureOpenCount RegKey10=HKCU\Software\TechSmith\Snagit\12|OutputDirLastUsed RegKey11=HKCU\Software\TechSmith\Snagit\12|VidOutputDirLastUsed RegKey12=HKCU\Software\TechSmith\Snagit\12\SnagItEditor\Tray|Thumbnailsize RegKey13=HKCU\Software\TechSmith\Snagit\13|CaptureCount RegKey14=HKCU\Software\TechSmith\Snagit\13|CaptureOpenCount RegKey15=HKCU\Software\TechSmith\Snagit\13|OutputDirLastUsed RegKey16=HKCU\Software\TechSmith\Snagit\13|VidOutputDirLastUsed RegKey17=HKCU\Software\TechSmith\Snagit\13\Recent Captures RegKey18=HKCU\Software\TechSmith\Snagit\13\SnagitEditor\Recent File List RegKey19=HKCU\Software\TechSmith\Snagit\13\SnagItEditor\Tray|Thumbnailsize RegKey20=HKCU\Software\TechSmith\Snagit\18|CaptureCount RegKey21=HKCU\Software\TechSmith\Snagit\18|CaptureOpenCount RegKey22=HKCU\Software\TechSmith\Snagit\18|OutputDirLastUsed RegKey23=HKCU\Software\TechSmith\Snagit\18|VidOutputDirLastUsed RegKey24=HKCU\Software\TechSmith\Snagit\18\Recent Captures RegKey25=HKCU\Software\TechSmith\Snagit\18\SnagitEditor\Recent File List RegKey26=HKCU\Software\TechSmith\Snagit\18\SnagItEditor\Tray|Thumbnailsize RegKey27=HKCU\Software\TechSmith\Snagit\19|CaptureCount RegKey28=HKCU\Software\TechSmith\Snagit\19|CaptureOpenCount RegKey29=HKCU\Software\TechSmith\Snagit\19|OutputDirLastUsed RegKey30=HKCU\Software\TechSmith\Snagit\19|VidOutputDirLastUsed RegKey31=HKCU\Software\TechSmith\Snagit\19\Recent Captures RegKey32=HKCU\Software\TechSmith\Snagit\19\SnagitEditor\Recent File List RegKey33=HKCU\Software\TechSmith\Snagit\19\SnagItEditor\Tray|Thumbnailsize RegKey34=HKCU\Software\TechSmith\Snagit\20|CaptureCount RegKey35=HKCU\Software\TechSmith\Snagit\20|CaptureOpenCount RegKey36=HKCU\Software\TechSmith\Snagit\20|OutputDirLastUsed RegKey37=HKCU\Software\TechSmith\Snagit\20|VidOutputDirLastUsed RegKey38=HKCU\Software\TechSmith\Snagit\20\Recent Captures RegKey39=HKCU\Software\TechSmith\Snagit\20\SnagitEditor\Recent File List RegKey40=HKCU\Software\TechSmith\Snagit\20\SnagItEditor\Tray|Thumbnailsize RegKey41=HKCU\Software\TechSmith\Snagit\21|CaptureCount RegKey42=HKCU\Software\TechSmith\Snagit\21|CaptureOpenCount RegKey43=HKCU\Software\TechSmith\Snagit\21|OutputDirLastUsed RegKey44=HKCU\Software\TechSmith\Snagit\21|VidOutputDirLastUsed RegKey45=HKCU\Software\TechSmith\Snagit\21\Recent Captures RegKey46=HKCU\Software\TechSmith\Snagit\21\SnagitEditor\Recent File List RegKey47=HKCU\Software\TechSmith\Snagit\21\SnagItEditor\Tray|Thumbnailsize RegKey48=HKCU\Software\TechSmith\Snagit\22|CaptureCount RegKey49=HKCU\Software\TechSmith\Snagit\22|CaptureOpenCount RegKey50=HKCU\Software\TechSmith\Snagit\22|OutputDirLastUsed RegKey51=HKCU\Software\TechSmith\Snagit\22|VidOutputDirLastUsed RegKey52=HKCU\Software\TechSmith\Snagit\22\Recent Captures RegKey53=HKCU\Software\TechSmith\Snagit\22\SnagitEditor\Recent File List RegKey54=HKCU\Software\TechSmith\Snagit\22\SnagItEditor\Tray|Thumbnailsize Link to comment Share on other sites More sharing options...
SMalik Posted June 22, 2022 Share Posted June 22, 2022 Revised entry Changed FileKey4 to |*.*|RECURSE [Wondershare UniConverter *] LangSecRef=3023 Detect1=HKLM\Software\Wondershare\Wondershare UniConverter Detect2=HKLM\Software\Wondershare\Wondershare UniConverter 13 FileKey1=%CommonAppData%\Wondershare\ProductFeatures\*Logs|*.*|RECURSE FileKey2=%CommonAppData%\Wondershare\UniConverter*\DataTrack|tmp;*.bak;*.log FileKey3=%CommonAppData%\Wondershare\UniConverter*\TempThumbDir|*.*|RECURSE FileKey4=%CommonAppData%\Wondershare\UniConverter*\UpdatePackge|*.*|RECURSE FileKey5=%CommonAppData%\Wondershare\WAF\ProductFeatures\*Logs|*.*|RECURSE FileKey6=%ProgramFiles%\Wondershare\*UniConverter*\Log|*.*|RECURSE FileKey7=%Public%\Documents\Wondershare|*.*|REMOVESELF FileKey8=%SystemDrive%|logWSVCUUpdateHelper.log FileKey9=%SystemDrive%\Wondershare UniConverter\Downloaded\temp|*.*|REMOVESELF FileKey10=%UserProfile%\.cache|*.*|REMOVESELF Link to comment Share on other sites More sharing options...
Winapp2.ini Posted June 30, 2022 Author Share Posted June 30, 2022 On 11/06/2022 at 10:48, Winapp2.ini said: https://github.com/MoscaDotTo/Winapp2/pull/895 This work is nearing completion, take a look at the current diff between the latest available version and the next major update a link to the plain text version of this is available in this comment; it is best viewed with a monowidth font (read: it's probably borderline unreadable without a monowidth font) winapp2.ini additions thread winapp2.ini github Link to comment Share on other sites More sharing options...
siliconman01 Posted July 7, 2022 Share Posted July 7, 2022 The latest release of Winapp2ool crashes when a Trim is attempted. This is on both Windows 10x64 and Windows 11x64. Windows 10 x64 Pro on ASUS Maximus VIII Extreme motherboard, i7-6700k CPU,H220 X2 Liquid Cooler, 64 gbyte RipJaws DDR4 3200 RAM, Samsung 970 Pro NVMe M.2 500 gbyte SSD + Samsung 850 Pro 512 gbyte SSD, EVGA RTX 3060 Titan graphics card (Home Built System); Windows 11x64 Pro on 512 gigabyte Dell XPS 15 2-in-1 Laptop/tablet and Dell XPS 8940 PC. ASUS RT-AC88U router, 14 tbyte WD My Cloud PR2100 NAS Server, 200 Mbps cable Internet, MS Edge Chromium, MS Office 2021 (Local), Casper 11, DisplayFusion (3 Flat Panel Displays per system): Bitdefender Internet Security 2022, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD22, MSI AfterBurner, Rainmeter, Windows Sidebar, and many more. Link to comment Share on other sites More sharing options...
siliconman01 Posted July 9, 2022 Share Posted July 9, 2022 Here is the Event Viewer info when winapp2ool aborts. Faulting application name: winapp2ool.exe, version: 1.5.8165.37514, time stamp: 0x627b0855 Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000 Exception code: 0xc0000005 Fault offset: 0x00007ffbc7ba55de Faulting process id: 0x4868 Faulting application start time: 0x01d8935db164fde8 Faulting application path: C:\Program Files\CCleaner\winapp2ool.exe Faulting module path: unknown Report Id: ae882961-c925-4d49-9257-2b2c82f76208 Faulting package full name: Faulting package-relative application ID: Windows 10 x64 Pro on ASUS Maximus VIII Extreme motherboard, i7-6700k CPU,H220 X2 Liquid Cooler, 64 gbyte RipJaws DDR4 3200 RAM, Samsung 970 Pro NVMe M.2 500 gbyte SSD + Samsung 850 Pro 512 gbyte SSD, EVGA RTX 3060 Titan graphics card (Home Built System); Windows 11x64 Pro on 512 gigabyte Dell XPS 15 2-in-1 Laptop/tablet and Dell XPS 8940 PC. ASUS RT-AC88U router, 14 tbyte WD My Cloud PR2100 NAS Server, 200 Mbps cable Internet, MS Edge Chromium, MS Office 2021 (Local), Casper 11, DisplayFusion (3 Flat Panel Displays per system): Bitdefender Internet Security 2022, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD22, MSI AfterBurner, Rainmeter, Windows Sidebar, and many more. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now