i've tried all solutions mentioned above, they work on XP but i want to work on VISTA
This post has been edited by exhaler: 23 December 2007 - 05:58 PM
Posted 23 December 2007 - 05:58 PM
This post has been edited by exhaler: 23 December 2007 - 05:58 PM
Posted 25 December 2007 - 01:54 AM
Posted 02 April 2008 - 08:36 AM
yadzil, on Oct 9 2007, 02:04 AM, said:
reg delete "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager" /v PendingFileRenameOperations /f
Posted 05 May 2008 - 05:02 AM
; Options
AutoItSetOption("WinTitleMatchMode", 2)
AutoItSetOption("WinWaitDelay", 1)
WinWait("Extracting", "")
WinSetState("Extracting", "", @SW_HIDE)
$UND = 1; UnRegister Nero DirectShow Filters
; UnRegister Nero DirectShow Filters
If $UND = 1 Then
$search = FileFindFirstFile(@CommonFilesDir & "\Nero\DSFilter\*.ax")
While 1
$file = FileFindNextFile($search)
If @error Then ExitLoop
RunWait("regsvr32 /u /s " & $file, @CommonFilesDir & "\Nero\DSFilter", @SW_HIDE)
WEnd
EndIf
FileClose ( $search )
Posted 05 May 2008 - 08:32 AM
nero_reboot.jpg (26.9K)
Posted 06 May 2008 - 04:16 AM
Posted 06 May 2008 - 04:36 AM
CEoCEo, on May 6 2008, 10:16 AM, said:
; Handle reboot prompt
Func Prompt()
If WinExists("Nero") Then
$CL = WinGetClassList("Nero")
$SL = StringLen($CL)
If $SL = 21 Then
(...)
EndFunc
This post has been edited by artbio: 06 May 2008 - 04:42 AM
Posted 06 May 2008 - 05:08 AM
Posted 06 May 2008 - 05:20 AM
; Delete Media Indexing Services
If $MIS = 0 Then
RegDelete("HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "BgMonitor_{79662E04-7C6C-4d9f-84C7-88D8A56B10AA}")
RunWait(@COMSPEC & " /c taskkill /f /im NMBgMonitor.exe", "", @SW_HIDE)
RunWait(@COMSPEC & " /c taskkill /f /im NMIndexingService.exe", "", @SW_HIDE)
RunWait(@COMSPEC & " /c taskkill /f /im NMIndexStoreSvr.exe", "", @SW_HIDE)
Sleep(1000)
FileDelete(@CommonFilesDir & "\Nero\Lib\NMBgMonitor.exe")
FileDelete(@CommonFilesDir & "\Nero\Lib\NMIndexingService.exe")
FileDelete(@CommonFilesDir & "\Nero\Lib\NMIndexStoreSvr.exe")
EndIf
This post has been edited by radix: 06 May 2008 - 05:21 AM
Posted 06 May 2008 - 05:40 AM
; Delete Media Indexing Services
If $MIS = 0 Then
RegDelete ( "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "IndxStoreSvr_{79662E04-7C6C-4d9f-84C7-88D8A56B10AA}" )
RegDelete ( "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce", "NeroHomeFirstStart" )
RunWait ( @ComSpec & " /c regsvr32 /u /s MediaLibraryNSE.dll", @CommonFilesDir & "\Nero\Lib", @SW_HIDE )
FileDelete ( @CommonFilesDir & "\Nero\Lib\MediaLibraryNSE.dll" )
RunWait ( @ComSpec & " /c net stop NMIndexingService", "", @SW_HIDE )
RunWait ( @ComSpec & " /c sc delete NMIndexingService", "", @SW_HIDE )
RegDelete ( "HKCR\CLSID\{E8933C4B-2C90-4a04-A677-E958D9509F1A}" )
RegDelete ( "HKCR\AppID\{D55E16BA-BBC9-4F7E-A147-E5DFBCC71480}" )
RegDelete ( "HKCR\AppID\NMIndexingService.EXE" )
RegDelete ( "HKLM\SYSTEM\CurrentControlSet\Services\NMIndexingService" )
FileDelete ( @CommonFilesDir & "\Nero\Lib\NMIndexingService.exe" )
RunWait ( @ComSpec & " /c regsvr32 /u /s NMIndexingServicePS.dll", @CommonFilesDir & "\Nero\Lib", @SW_HIDE )
FileDelete ( @CommonFilesDir & "\Nero\Lib\NMIndexingServicePS.dll" )
ProcessClose ( "NMIndexStoreSvr.exe" )
FileDelete ( @CommonFilesDir & "\Nero\Lib\NMIndexStoreSvr.exe" )
RunWait ( @ComSpec & " /c regsvr32 /u /s NMIndexStoreSvrPS.dll", @CommonFilesDir & "\Nero\Lib", @SW_HIDE )
FileDelete ( @CommonFilesDir & "\Nero\Lib\NMIndexStoreSvrPS.dll" )
EndIf
Posted 06 May 2008 - 05:57 AM
radix, on May 6 2008, 12:20 PM, said:
; Delete Media Indexing Services
If $MIS = 0 Then
RegDelete("HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "BgMonitor_{79662E04-7C6C-4d9f-84C7-88D8A56B10AA}")
RunWait(@COMSPEC & " /c taskkill /f /im NMBgMonitor.exe", "", @SW_HIDE)
RunWait(@COMSPEC & " /c taskkill /f /im NMIndexingService.exe", "", @SW_HIDE)
RunWait(@COMSPEC & " /c taskkill /f /im NMIndexStoreSvr.exe", "", @SW_HIDE)
Sleep(1000)
FileDelete(@CommonFilesDir & "\Nero\Lib\NMBgMonitor.exe")
FileDelete(@CommonFilesDir & "\Nero\Lib\NMIndexingService.exe")
FileDelete(@CommonFilesDir & "\Nero\Lib\NMIndexStoreSvr.exe")
EndIf
ProcessClose("NMBgMonitor.exe")
ProcessClose("NMIndexingService.exe")
ProcessClose("NMIndexStoreSvr.exe")
Posted 06 May 2008 - 06:03 AM
artbio, on May 6 2008, 02:57 PM, said:
ProcessClose("NMBgMonitor.exe")
ProcessClose("NMIndexingService.exe")
ProcessClose("NMIndexStoreSvr.exe")
Posted 06 May 2008 - 06:20 AM
radix, on May 6 2008, 01:03 PM, said:
artbio, on May 6 2008, 02:57 PM, said:
ProcessClose("NMBgMonitor.exe")
ProcessClose("NMIndexingService.exe")
ProcessClose("NMIndexStoreSvr.exe")
$list = ProcessList("NMIndexingService.exe")
For $i = 1 To $list[0][0]
ProcessClose($list[$i][1])
Next
This post has been edited by artbio: 06 May 2008 - 06:21 AM
Posted 06 May 2008 - 09:55 AM
radix, on May 6 2008, 01:03 PM, said:
artbio, on May 6 2008, 02:57 PM, said:
ProcessClose("NMBgMonitor.exe")
ProcessClose("NMIndexingService.exe")
ProcessClose("NMIndexStoreSvr.exe")
;===============================================================================
; Description: Delete a Windows Service
; Syntax: _ServDelete($iName[, $Computer])
; Parameter(s): $iName - The name of the service to delete
; $Computer - The network name of the computer (optional) The local computer is default
; Requirement(s): None
; Return Value(s): Success - Deletes the service
; Failure Sets @Error = -1 if service is not found
; Author(s) GEOSoft
; Modification(s):
; Note(s):
; Example(s):
;===============================================================================
Func _ServDelete($iName, $Computer = ".")
$Service = ObjGet("winmgmts:\\" & $Computer & "\root\cimv2")
$sItems = $Service.ExecQuery("Select * from Win32_Service")
For $objService in $sItems
If $objService.Name == $iName Then
$objService.StopService($objService.Name)
$objService.Delete($objService.Name)
Return
EndIf
Next
Return SetError(-1)
EndFunc ;<==> _ServDelete()
This post has been edited by artbio: 06 May 2008 - 10:06 AM
Posted 06 May 2008 - 10:05 AM
CEoCEo, on May 6 2008, 12:40 PM, said:
; Delete Media Indexing Services
If $MIS = 0 Then
RegDelete ( "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "IndxStoreSvr_{79662E04-7C6C-4d9f-84C7-88D8A56B10AA}" )
RegDelete ( "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce", "NeroHomeFirstStart" )
RunWait ( @ComSpec & " /c regsvr32 /u /s MediaLibraryNSE.dll", @CommonFilesDir & "\Nero\Lib", @SW_HIDE )
FileDelete ( @CommonFilesDir & "\Nero\Lib\MediaLibraryNSE.dll" )
_ServDelete("NMIndexingService")
RegDelete ( "HKCR\CLSID\{E8933C4B-2C90-4a04-A677-E958D9509F1A}" )
RegDelete ( "HKCR\AppID\{D55E16BA-BBC9-4F7E-A147-E5DFBCC71480}" )
RegDelete ( "HKCR\AppID\NMIndexingService.EXE" )
RegDelete ( "HKLM\SYSTEM\CurrentControlSet\Services\NMIndexingService" )
FileDelete ( @CommonFilesDir & "\Nero\Lib\NMIndexingService.exe" )
RunWait ( @ComSpec & " /c regsvr32 /u /s NMIndexingServicePS.dll", @CommonFilesDir & "\Nero\Lib", @SW_HIDE )
FileDelete ( @CommonFilesDir & "\Nero\Lib\NMIndexingServicePS.dll" )
ProcessClose ( "NMIndexStoreSvr.exe" )
FileDelete ( @CommonFilesDir & "\Nero\Lib\NMIndexStoreSvr.exe" )
RunWait ( @ComSpec & " /c regsvr32 /u /s NMIndexStoreSvrPS.dll", @CommonFilesDir & "\Nero\Lib", @SW_HIDE )
FileDelete ( @CommonFilesDir & "\Nero\Lib\NMIndexStoreSvrPS.dll" )
EndIf
;===============================================================================
; Description: Delete a Windows Service
; Syntax: _ServDelete($iName[, $Computer])
; Parameter(s): $iName - The name of the service to delete
; $Computer - The network name of the computer (optional) The local computer is default
; Requirement(s): None
; Return Value(s): Success - Deletes the service
; Failure Sets @Error = -1 if service is not found
; Author(s) George (GEOSoft) Gedye
; Modification(s):
; Note(s):
; Example(s):
;===============================================================================
Func _ServDelete($iName, $Computer = ".")
$Service = ObjGet("winmgmts:\\" & $Computer & "\root\cimv2")
$sItems = $Service.ExecQuery("Select * from Win32_Service")
For $objService in $sItems
If $objService.Name == $iName Then
$objService.StopService($objService.Name)
$objService.Delete($objService.Name)
Return
EndIf
Next
Return SetError(-1)
EndFunc ;<==> _ServDelete()
Posted 06 May 2008 - 10:13 AM
Posted 06 May 2008 - 10:24 AM
Posted 06 May 2008 - 12:37 PM
Posted 06 May 2008 - 12:47 PM
Posted 12 May 2008 - 12:17 AM
1=1...to...
CC9AC4AC7=0
NOT(CED8C2E75=1) OR NOT((VersionNT=600 AND (NOT (VersionNT64))))…to…
NOT(CED8C2E75=1) OR NOT(VersionNT=500 OR (VersionNT=501 AND (NOT (VersionNT64))) OR (VersionNT=502 AND WindowsBuild>2600 AND (NOT (VersionNT64))Also change the feature NeroCopyGadgetED8C2E75 Level 200 from
(CED8C2E75=0) AND NOT((VersionNT=600 AND (NOT (VersionNT64))))…to…
(CED8C2E75=0) AND NOT(VersionNT=500 OR (VersionNT=501 AND (NOT (VersionNT64))) OR (VersionNT=502 AND WindowsBuild>2600 AND (NOT (VersionNT64))))
This post has been edited by CEoCEo: 12 May 2008 - 05:29 AM