Jump to content

Winapp2.ini additions


Winapp2.ini

Recommended Posts

Modified Entry:  [belarc Advisor*]

 

Added FileKey13

[Belarc Advisor*]
LangSecRef=3024
Detect=HKCU\Software\Belarc
Default=False
FileKey1=%LocalAppData%\VirtualStore\Program Files*\Belarc\Advisor\System|Progress.Log
FileKey2=%LocalAppData%\VirtualStore\Program Files*\Belarc\Advisor\System\Security\BelNotify|BelNotify.log;History.log;HistoryHF.log
FileKey3=%LocalAppData%\VirtualStore\Program Files*\Belarc\Advisor\System\Tmp|*.*
FileKey4=%LocalAppData%\VirtualStore\Program Files*\Belarc\BelArcAdvisor\System|Progress.Log
FileKey5=%LocalAppData%\VirtualStore\Program Files*\Belarc\BelArcAdvisor\System\Security\BelNotify|BelNotify.log;History.log;HistoryHF.log
FileKey6=%LocalAppData%\VirtualStore\Program Files*\Belarc\BelArcAdvisor\System\Tmp|*.*
FileKey7=%ProgramFiles%\Belarc\Advisor\System|Progress.Log
FileKey8=%ProgramFiles%\Belarc\Advisor\System\Security\BelNotify|BelNotify.log;History.log;HistoryHF.log
FileKey9=%ProgramFiles%\Belarc\Advisor\System\Tmp|*.*
FileKey10=%ProgramFiles%\Belarc\BelArcAdvisor\System|Progress.Log
FileKey11=%ProgramFiles%\Belarc\BelArcAdvisor\System\Security\BelNotify|BelNotify.log;History.log;HistoryHF.log
FileKey12=%ProgramFiles%\Belarc\BelArcAdvisor\System\Tmp|*.*
FileKey13=%ProgramFiles%\Belarc\BelarcAdvisor\|install.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):   Latest Bitdefender Internet Security, Quicken, Weather Watcher Live, ThumbsPlus 10, Sticky Password 8, WD Smartware, CyberLink PowerDVD23, MSI AfterBurner, Rainmeter, 8GadgetPack, and many more.

Link to comment
Share on other sites

A bit offtopic but i need help.

 

I want creat a bat file for downloading the last winapp2.ini from github but voldemord cant do this at the moment.

So i creat a bat script with wget

@echo off
echo Download winapp2.ini from Github
ping /n 1 raw.githubusercontent.com
if errorlevel 1 goto NOC
echo online

del winapp2.ini
::Bug: One Text without spaces
::curl.exe -o Winapp2.ini -A "Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3" -G "https://raw.githubusercontent.com/MoscaDotTo/Winapp2/master/Winapp2.ini"

wget.exe -c --output-document=Winapp2.ini "https://raw.githubusercontent.com/MoscaDotTo/Winapp2/master/Winapp2.ini"
goto end
:NOC
echo no connection

:end
ccleaner.exe



So the problem is that downloading unformated all in 1 line ccleaner haven't problems with it, but I (for manuel reading).

 

OK i can use notepad++ but the normal dont work right....

 

 

THX

Link to comment
Share on other sites

I use JPSoft's TCMD and convert the line endings. The line that does the line ending conversation is the TPIPE ( http://www.datamystic.com/textpipe.html )

echo.
if not isdir "C:\TCMD\WinApp2_Ini\" md /s "C:\TCMD\WinApp2_Ini\"
copy "https://raw.githubusercontent.com/MoscaDotTo/Winapp2/master/Winapp2.ini" C:\TCMD\WinApp2_Ini\Winapp2_Unix.ini
echo.
rem convet UNIX to ASCII
TPIPE /input=C:\TCMD\WinApp2_Ini\Winapp2_Unix.ini /eol=0,2,0 /output=C:\TCMD\WinApp2_Ini\Winapp2_Ansii.ini
echo.
copy "C:\TCMD\WinApp2_Ini\Winapp2_Ansii.ini" + "%UserProfile%\Desktop\Galloway Desktop\INI_001\custom.ini" "%ProgramFiles%\CCleaner\Winapp2.ini"
echo.
 
Link to comment
Share on other sites

 

I use JPSoft's TCMD and convert the line endings. The line that does the line ending conversation is the TPIPE ( http://www.datamystic.com/textpipe.html )

echo.
if not isdir "C:\TCMD\WinApp2_Ini\" md /s "C:\TCMD\WinApp2_Ini\"
copy "https://raw.githubusercontent.com/MoscaDotTo/Winapp2/master/Winapp2.ini" C:\TCMD\WinApp2_Ini\Winapp2_Unix.ini
echo.
rem convet UNIX to ASCII
TPIPE /input=C:\TCMD\WinApp2_Ini\Winapp2_Unix.ini /eol=0,2,0 /output=C:\TCMD\WinApp2_Ini\Winapp2_Ansii.ini
echo.
copy "C:\TCMD\WinApp2_Ini\Winapp2_Ansii.ini" + "%UserProfile%\Desktop\Galloway Desktop\INI_001\custom.ini" "%ProgramFiles%\CCleaner\Winapp2.ini"
echo.
 

 

 

THX for the informartion.

I found a free programm for it ;-)

@echo off
:: Programms:
:: http://gnuwin32.sourceforge.net/packages/wget.htm
:: https://curl.haxx.se/download.html
:: http://waterlan.home.xs4all.nl/dos2unix.html
echo Download winapp2.ini from Github
ping /n 1 raw.githubusercontent.com
if errorlevel 1 goto NOC
echo online

del winapp2.ini
::curl.exe -o Winapp2.ini -A "Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3" -G "https://raw.githubusercontent.com/MoscaDotTo/Winapp2/master/Winapp2.ini"

wget.exe -c --output-document=Winapp2.ini "https://raw.githubusercontent.com/MoscaDotTo/Winapp2/master/Winapp2.ini"

unix2dos.exe Winapp2.ini
goto end
:NOC
echo no connection

:end
ccleaner.exe

Link to comment
Share on other sites

Duplicate entry:

[Yahoo! Messenger Desktop App Cache*]
LangSecRef=3022
Detect=HKCU\Software\Yahoo\Messenger
DetectFile=%LocalAppData%\yahoomessenger
Default=False
FileKey1=%AppData%\Yahoo Messenger\Cache|*.*

LangSecRef=3022
Detect=HKCU\Software\Yahoo\Messenger
DetectFile=%LocalAppData%\yahoomessenger
Default=False
FileKey1=%AppData%\Yahoo Messenger\Cache|*.*

Edit: A similar diction of the name "Yahoo" would be nice. (All "Yahoo" or all "Yahoo!" ?)

Link to comment
Share on other sites

Duplicate entry:

[Yahoo! Messenger Desktop App Cache*]
LangSecRef=3022
Detect=HKCU\Software\Yahoo\Messenger
DetectFile=%LocalAppData%\yahoomessenger
Default=False
FileKey1=%AppData%\Yahoo Messenger\Cache|*.*

LangSecRef=3022
Detect=HKCU\Software\Yahoo\Messenger
DetectFile=%LocalAppData%\yahoomessenger
Default=False
FileKey1=%AppData%\Yahoo Messenger\Cache|*.*

Edit: A similar diction of the name "Yahoo" would be nice. (All "Yahoo" or all "Yahoo!" ?)

 

That's funny, Thought i fixed that already. Hmm.. looks like I fixed it in one but not the other. It's fixed now: https://github.com/MoscaDotTo/Winapp2/commit/4b28df2153733887815492cafb2602510e8687a1

 

According to CSGalloway, they are not called Yahoo! anymore, it is just Yahoo. Those other entries from Yahoo may need to be fixed as all the FileKeys point at the old name still.

I am a maintainer for Winapp2. I also have a open-source group on Steam.

http://steamcommunity.com/groups/opencommunity

Link to comment
Share on other sites

1 Fix and some new lines for NV

 

https://github.com/MoscaDotTo/Winapp2/pull/55/files

 

https://github.com/MoscaDotTo/Winapp2/compare/master...TZocker:patch-8

 

reorganisation and

Filekey=%LocalAppData%\NVIDIA Corporation\NvNode|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NvTelemetry|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NvVAD|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NVIDIA Share\CefCache|*.log;*.bak

But I have one extra line but more testing is needed

Filekey14=%LocalAppData%\NVIDIA Corporation\NVIDIA GeForce Experience\CefCache|*.*
Link to comment
Share on other sites

 

How do you see what entry is being altered on GitHub? It cuts off the first part in change links like above, is there anyway to make it show the the lines above so you can see what entry the change actually applies to?

Link to comment
Share on other sites

That's funny, Thought i fixed that already. Hmm.. looks like I fixed it in one but not the other. It's fixed now: https://github.com/MoscaDotTo/Winapp2/commit/4b28df2153733887815492cafb2602510e8687a1

 

According to CSGalloway, they are not called Yahoo! anymore, it is just Yahoo. Those other entries from Yahoo may need to be fixed as all the FileKeys point at the old name still.

 

 I checked the Help | About and the EXE file properties and both just show Yahoo.  Not Yahoo!.  I am not sure if the old Yahoo Messenger is still available.  So my vote would be to keep the old entries as is...

Link to comment
Share on other sites

How do you see what entry is being altered on GitHub? It cuts off the first part in change links like above, is there anyway to make it show the the lines above so you can see what entry the change actually applies to?

 

there https://github.com/MoscaDotTo/Winapp2/compare/master...TZocker:patch-8

and this entries

Filekey=%LocalAppData%\NVIDIA Corporation\NvNode|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NvTelemetry|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NvVAD|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NVIDIA Share\CefCache|*.log;*.bak

use strg F after = ;-)

Link to comment
Share on other sites

Revised Entries

 

[AutoPlay Devices*]
LangSecRef=3025
Detect=HKCU\Software\Microsoft\Windows
Warning=This will clear out devices and drives from AutoPlay that you've connected to your computer.
Default=False
RegKey1=HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\KnownDevices

Changed Warning from "This will clear out all default autoplay options for devices and drives you've connected to your computer!" to "This will clear out devices and drives from AutoPlay that you've connected to your computer."


[CD/DVD Burn Cache*]
LangSecRef=3025
Detect=HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CD Burning
Default=False
Warning=This will wipe all files that are waiting to be burned to a CD/DVD/BD drive.
FileKey1=%LocalAppData%\Microsoft\CD Burning|*.*
FileKey2=%LocalAppData%\Microsoft\Windows\Burn|*.*|RECURSE

Changed Warning from "This option will wipe all files that are waiting to be burned to a CD/DVD/BRD" to "This will wipe all files that are waiting to be burned to a CD/DVD/BD drive."

Link to comment
Share on other sites

 

there https://github.com/MoscaDotTo/Winapp2/compare/master...TZocker:patch-8

and this entries

Filekey=%LocalAppData%\NVIDIA Corporation\NvNode|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NvTelemetry|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NvVAD|*.log;*.bak
Filekey=%LocalAppData%\NVIDIA Corporation\NVIDIA Share\CefCache|*.log;*.bak

use strg F after = ;-)

Nope, you lost me.

When I click the change links like that, this is what I see. How do I tell what program entry it is that has been edited so I can copy to the right place in my winapp2 file?: q9Hb0fy.jpg

Link to comment
Share on other sites

Nope, you lost me.

 

When I click the change links like that, this is what I see. How do I tell what program entry it is that has been edited so I can copy to the right place in my winapp2 file?: q9Hb0fy.jpg

 

Take my post above this one for example. If you click on the link and look to the left, you should see the line numbers, like 3780, 3781, 3782, etc. Along there, you should see a weird looking thing with arrows pointing up and down in it. Click that and it will expand the text.

I am a maintainer for Winapp2. I also have a open-source group on Steam.

http://steamcommunity.com/groups/opencommunity

Link to comment
Share on other sites

 

Take my post above this one for example. If you click on the link and look to the left, you should see the line numbers, like 3780, 3781, 3782, etc. Along there, you should see a weird looking thing with arrows pointing up and down in it. Click that and it will expand the text.

I'd already done that in the screenshot I posted (hence no arrow showing), was the first thing I tried. Clicking it in the patch posts doesn't work. It does work for the below post, but not for the patch posts :huh: (tried in FF, IE and chrome in case a browser specific issue)

 

Link to comment
Share on other sites

Take my post above this one for example. If you click on the link and look to the left, you should see the line numbers, like 3780, 3781, 3782, etc. Along there, you should see a weird looking thing with arrows pointing up and down in it. Click that and it will expand the text.

Sry, i lost you. xd

 

Its

 

[NVIDIA Logs*]

 

^^

Link to comment
Share on other sites

  • Moderators

I don't understand issue 60. Issue 61 I think depends on the program but (other than lots of work, see below) I see no issue with it.

This should however be done as a community effort, if someone sees 3 versions of a program taking up lines x-y, then they can submit it as a pull changing lines x-y

 

ADVICE FOR USING CCleaner'S REGISTRY INTEGRITY SECTION

DON'T JUST CLEAN EVERYTHING THAT'S CHECKED OFF.

Do your Registry Cleaning in small bits (at the very least Check-mark by Check-mark)

ALWAYS BACKUP THE ENTRY, YOU NEVER KNOW WHAT YOU'LL BREAK IF YOU DON'T.

Support at https://support.ccleaner.com/s/?language=en_US

Pro users file a PRIORITY SUPPORT via email support@ccleaner.com

Link to comment
Share on other sites

Issue 60 is pretty much saying to go over the removed entries and update them, if needed, as most of them have been in their for years and haven't been looked at in a long time.

 

The idea of issue 61 is to combine entries where the only real difference is the year or number of programs, like AVG 2013-2015 and Snagit 9-11. I mean is there ever a time where someone would want to clean one year but not the other year?

I am a maintainer for Winapp2. I also have a open-source group on Steam.

http://steamcommunity.com/groups/opencommunity

Link to comment
Share on other sites

  • Moderators

I guess I'm confused on "removed entries" is someone keeping a log of removed entries? My initial understanding of the move to git is that removed entries are easily seen (red minuses)

 

Edit

Ohhhhh

There's a separate ini for removed entries....but why? :lol: usually, removed are done because either integration with ccleaner default or dangerous to use

 

 

ADVICE FOR USING CCleaner'S REGISTRY INTEGRITY SECTION

DON'T JUST CLEAN EVERYTHING THAT'S CHECKED OFF.

Do your Registry Cleaning in small bits (at the very least Check-mark by Check-mark)

ALWAYS BACKUP THE ENTRY, YOU NEVER KNOW WHAT YOU'LL BREAK IF YOU DON'T.

Support at https://support.ccleaner.com/s/?language=en_US

Pro users file a PRIORITY SUPPORT via email support@ccleaner.com

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.