Acrchivos de inicio

11/08/2004 - 04:11 por FITO | Informe spam
Hola para todos.

Tengo un equipo con xp professional, cuando entro al
msconfig y me voy a la pestaña inicio, me salen unos
archivos sxe, que en realidad son temporales, no`sé si
producto de algún virus. Lo adecuado es desactivar dichos
archivos. Pero, como hago papa quitarlos definitivamente
del msconfig para que no aparezcan cada vez que entro al
msconfig a inicio???

Desde ya muchas gracias.

Cordialmente,

FITO
 

Leer las respuestas

#1 Mr.Tucker [MS MVP Windows]
11/08/2004 - 05:25 | Informe spam
Copia esto en un documento en blanco del bloc de notas y guardalo como
msconfigdisabled.vbs, luego hazle doble click para eliminar las entradas no
validas que aparecen en el programa msconfig.-

Set oReg = GetObject("winmgmts:!root/default:StdRegProv")
Const HKLM = &H80000002
RegKeySUF = "SOFTWARE\Microsoft\Shared Tools\MSConfig\startupfolder"
RegKeySUR = "SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg"

ResultsSUF = EnumKey(HKLM, RegKeySUF, False)
If ResultsSUF = "" Then
ResultsSUF = space(5) & "(none)"
iBtns = 0
Else
iBtns = 4
sDelPrompt = "Would you like to selectively delete any of these items?"
End If
sResults = "Disabled items in startupfolder key:" & vbcrlf & _
ResultsSUF & vbcrlf & vbcrlf

ResultsSUR = EnumKey(HKLM, RegKeySUR, False)
If ResultsSUR = "" Then
ResultsSUR = space(5) & "(none)"
If iBtns <> 4 Then iBtns = 0
Else
iBtns = 4
sDelPrompt = "Would you like to selectively delete any of these items?"
End If
sResults = sResults & "Disabled items in startupreg key:" & vbcrlf & _
ResultsSUR & vbcrlf & vbcrlf

If MsgBox(sResults & sDelPrompt, iBtns + 256) <> 6 Then WScript.quit

EnumKey HKLM, RegKeySUF, True
EnumKey HKLM, RegKeySUR, True

Function EnumKey(Key, SubKey, bDelete)
Dim Ret()
oReg.EnumKey Key, SubKey, sKeys

On Error Resume Next

ReDim Ret(UBound(sKeys))
If Err = 13 Then Exit Function
On Error GoTo 0

For Count = 0 to UBound(sKeys)
If Not bDelete Then
'this branch used on first call
Ret(Count) = space(5) & sKeys(Count)
Else
'this branch used on deletion iteration
If MsgBox("Do you want to delete " & sKeys(Count) & "?" & vbcrlf & _
vbcrlf & "This operation cannot be undone!", 4 + 256) = 6 Then
DeleteKey HKLM, SubKey & "\" & sKeys(Count)
End If
End If
Next
EnumKey = Join(Ret, vbcrlf)
End Function

Function DeleteKey(Key, SubKey)
DeleteKey = oReg.DeleteKey(Key, SubKey)
End Function

Set ws = WScript.CreateObject("WScript.Shell")

VisitKelly's Korner

Sub VisitKelly's Korner
If MsgBox("This script came from the Tweaks Section of Kelly's Korner" &
vbCRLF & vbCRLF & "Would you like to visit Kelly's Web Site now?",
vbQuestion + vbYesNo + vbDefaultButton, "Visit Kelly's Korner") =6 Then
ws.Run "http://www.kellys-korner-xp.com/xp_....htm"
End If
End Sub

Mr.Tucker Dot Com.-
Mr.Tucker [MS-MVP Windows - IE/OE] Anteriormente posteando como "Stripper"

"FITO" wrote in message
news:3e6701c47f48$76a5b280$
Hola para todos.

Tengo un equipo con xp professional, cuando entro al
msconfig y me voy a la pestaña inicio, me salen unos
archivos sxe, que en realidad son temporales, no`sé si
producto de algún virus. Lo adecuado es desactivar dichos
archivos. Pero, como hago papa quitarlos definitivamente
del msconfig para que no aparezcan cada vez que entro al
msconfig a inicio???

Desde ya muchas gracias.

Cordialmente,

FITO

Preguntas similares