hmm... interesting

Isn't the same value for this stored under HKCU in Win9x? I believe so...? anyways, a complete Win32 solution could look something like this then:

code:

;===============================================================================
;=== Exremely annoying IE stuff fixed by the guys and gals @
;=== http://kixtart.org/cgi-bin/ultimatebb.cgi?

IF @INWIN = 1
$IEregKey = "HKEY_USERS\@SID\Software\Microsoft\Internet Connection Wizard"
$ShortCut = "%USERPROFILE%"
ELSE
$IEregKey = "HKEY_CURRENT_USER\Software\Microsoft\Internet Connection Wizard"
$ShortCut = "%WINDIR%"
ENDIF

IF "01000000" <> READVALUE("$IEregKey", "Completed")
IF 0 <> EXISTKEY("$IEregKey")
$ = ADDKEY("$IEregKey")
ENDIF
$ = WRITEVALUE("$IEregKey", "Completed", "01", "REG_BINARY")

IF EXIST("$ShortCut\Desktop\Connect to the Internet.LNK")
DEL "$ShortCut\Desktop\Connect to the Internet.LNK"
ENDIF
IF EXIST("$ShortCut\Skrivbord\Anslut till Internet.LNK") ; only necessary if u know the true
DEL "$ShortCut\Skrivbord\Anslut till Internet.LNK" ; meaning of the word "smörgåsbord"
ENDIF
ENDIF


?

_________________________
The tart is out there