Nope.
CODE
; AppWiz does not work as a cpanel applet without IE
; but it's needed to create shortcuts (.lnk).
; So put it in 'system' instead
;appwiz.cpl = 2,,,,,,,2,0,0
appwiz.cpl = 2,,,,,,,5,0,0
The above is in your txtsetup.sif. I made an alternate solution to this problem, by renaming appwiz.cpl to appwiz.dll, removed the reginst information inside the dll, and renamed some references to appwiz.cpl in INF files.
After a few testing it turned out that some other dlls register lnk\shellnew to appwiz.cpl, so it might be ok if ie.in_ has some entries to remove these from registry ([FDVPATCH]) then recreate one with appwiz.dll. That's all.
This way you will have no appwiz.cpl, ergo no "dead" control panel applet problem, but you can have appwiz.dll in system32, thus able to create those shortcuts if you want to.
EDIT: Another idea, I can inject some registry info into my appwiz.dll to overwrite appwiz.cpl entry of .lnk\shellnew created by browseui.dll, but then it has to be registered AFTER browseui (if I remeber correctly it is the one)...Maybe from FDVPATCH

Also I'm working on a slimmed down shell32.dll, with some registry junk removed too. When it's stable enough and there is interest i might upload it somewhere. Can be used through FIX folder.
EDIT 2: I added these lines to ie.inf finaly, instead of hacking dll reginst:
CODE
; Task Scheduler Control Panel "applet"
;
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}"
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}"
HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}"
... in progress
@FDV
I'm curious why haven't you added a remover for htmlfile and clsid 25336920-03F9-11CF-8FD0-00AA00686F13 (mshtml)? Till you answer I will try it of course

maybe bluesrceen?

EDIT 3: Is it possible to run the delreg section before addreg in IE.INF? (I would like to remove HKCR\htmlfile, and readd it with according how i want to - same applies to appwiz.dll)