Topic: Microsoft iSCSI Initiator  (Read 2496 times)

Microsoft iSCSI Initiator
« on: December 31, 2015, 02:09:04 PM »

jcrystal

  • Apprentice
  • *
  • Date Registered: Feb 2013
  • Posts: 7
I notice that the Microsoft iSCSI initiator no longer appears to be part of the project
(I haven't seen it anywhere at any rate)

I still have a copy that was part of my Win7PE_SE build, and it works fine on Win10

Is anyone interested in having me upload the script?

Re: Microsoft iSCSI Initiator
« Reply #1 on: December 31, 2015, 03:46:33 PM »

Prz42

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Jan 2014
  • Posts: 513
Please attach as it might help me in EaseUS Backup Script.

Re: Microsoft iSCSI Initiator
« Reply #2 on: December 31, 2015, 04:32:38 PM »

APT

  • Grand Chef
  • *****
  • winpe enthusiast
  • Location: UK
  • Date Registered: Nov 2012
  • Posts: 1150
it's actually still part of the current Win7PE SE project

Re: Microsoft iSCSI Initiator
« Reply #3 on: December 31, 2015, 05:16:04 PM »

jcrystal

  • Apprentice
  • *
  • Date Registered: Feb 2013
  • Posts: 7
iscsi.script

Code: [Select]
[Main]
Title=ISCSI Initiator
Type=script
Author=Ludovici, ChrisR
Description=Microsoft iSCSI Initiator
Credits=http://www.gregorystrike.com/?p=8 - Max_Real_Qnx
Version=007
Download_Level=1
Level=3
Selected=True
Mandatory=False
NoWarning=False
Contact=http://TheOven.org
Date=2012.06.07
Depend=
Disable=
CertifiedBy=
Certification=
HistoryNotes=
History002=ChrisR - controlled with http://www.gregorystrike.com/?p=8 - Deleting some duplicate files and registry service key
History003=ChrisR - Require_File replaced by Require_FileQ and reg_add replaced by RegWrite,HKLM(faster)
History004=Lancelot code Cleanup x 2
History006=ChrisR - Code Cleanup - NoWarnROW implemented
History007=ChrisR - Require_File,folder\filename

[Variables]

[Interface]
pBevel1=pBevel1,1,12,6,8,161,129
pCheckBox1="Desktop shortcut",1,3,11,13,122,18,False
pCheckBox2="Start menu shortcut",1,3,11,32,122,18,True
pTextBox1="Start Menu folder:",1,0,14,69,146,21,"Computer Management"
pTextBox2="Shortcut name:",1,0,14,109,146,21,"iSCSI Initiator"

[process]
Echo,"Processing %ScriptTitle%..."
IniRead,%ProjectDir%\script.project,IniVariables,OS,%OS%
If,%OS%,Equal,Waik,Exit,"Not for Waik Source..."
//--
IniRead,%ProjectDir%\script.project,IniVariables,NoWarnRegOverWrite,%NoWarnROW%
//--
Echo,"Processing Shortcut for Iscsi For Win7PE..."
If,%pCheckBox1%,Equal,True,Add_Shortcut,Desktop,,#$pSystemRoot#$p\System32\iscsicpl.exe,%pTextBox2%,#$pSystemRoot#$p\System32,""
If,%pCheckBox2%,Equal,True,Add_Shortcut,StartMenu,%pTextBox1%,#$pSystemRoot#$p\System32\iscsicpl.exe,%pTextBox2%,#$pSystemRoot#$p\System32,""
//--
Echo,"Copying Standard-Components for  MS iSCSI ..."
Require_FileQ,iscsicli.exe
Require_FileQ,iscsicpl.exe
Require_FileQ,iscsicpl.dll
Require_FileQ,iscsidsc.dll
If,Not,ExistFile,%Target_Sys%\iscsied.dll,FileCopy,%Source_Sys%\iscsied.dll,%Target_Sys%
Require_FileQ,iscsiexe.dll
Require_FileQ,iscsilog.dll
If,Not,ExistFile,%Target_Sys%\iscsium.dll,FileCopy,%Source_Sys%\iscsium.dll,%Target_Sys%
If,Not,ExistFile,%Target_Sys%\iscsiwmi.dll,FileCopy,%Source_Sys%\iscsiwmi.dll,%Target_Sys%
// setupapi.dll and sysclass.dll already exist
//Require_FileQ,setupapi.dll
//Require_FileQ,sysclass.dll
//- Drivers
Require_File,Drivers\msiscsi.sys
Require_File,Drivers\mpio.sys
// depends Drivers files already exist
//Require_File,Drivers\netio.sys
//Require_File,Drivers\storport.sys
//Require_File,Drivers\tdi.sys
//--
RegHiveLoad,Tmp_Software,%RegSoftware%
RegHiveLoad,Tmp_System,%RegSystem%
//--
Echo,"Processing registry Setting for Iscsi For Win7PE..."
RegWrite,HKLM,0x7,"Tmp_Software\Microsoft\Windows NT\CurrentVersion\Svchost",Godzilla,MSiSCSI
RegWrite,HKLM,0x4,"Tmp_Software\Microsoft\Windows NT\CurrentVersion\iSCSI\Discovery",AllowiSNSFirewallException,1
RegWrite,HKLM,0x0,"Tmp_Software\Microsoft\Windows NT\CurrentVersion\iSCSI\Discovery\Authentication Cache"
RegWrite,HKLM,0x0,"Tmp_Software\Microsoft\Windows NT\CurrentVersion\iSCSI\Discovery\Send Targets"
RegWrite,HKLM,0x0,"Tmp_Software\Microsoft\Windows NT\CurrentVersion\iSCSI\Discovery\Static Targets"
RegWrite,HKLM,0x0,"Tmp_Software\Microsoft\Windows NT\CurrentVersion\iSCSI\Discovery\Tunnel Address"
//--
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Enum\Root\LEGACY_MSISCSI,NextInstance,1
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\LEGACY_MSISCSI\0000,Service,MSiSCSI
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Enum\Root\LEGACY_MSISCSI\0000,Legacy,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Enum\Root\LEGACY_MSISCSI\0000,ConfigFlags,0
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\LEGACY_MSISCSI\0000,Class,LegacyDriver
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\LEGACY_MSISCSI\0000,ClassGUID,{8ECC055D-047F-11D1-A537-0000F8753ED1}
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\LEGACY_MSISCSI\0000,DeviceDesc,"@#$pSystemRoot#$p\system32\iscsidsc.dll,-5000"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,ClassGUID,{4d36e97b-e325-11ce-bfc1-08002be10318}
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,Class,SCSIAdapter
RegWrite,HKLM,0x7,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,HardwareID,ROOT\iSCSIPrt
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,ConfigFlags,0
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,Driver,{4d36e97b-e325-11ce-bfc1-08002be10318}\0000
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,Mfg,"@iscsi.inf,#$pmsft#$p;Microsoft"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,Service,iScsiPrt
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,DeviceDesc,"@iscsi.inf,#$piscsiprt#$p;Microsoft iSCSI Initiator"
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000,Capabilities,0
RegWrite,HKLM,0x0,"Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000\Device Parameters"
RegWrite,HKLM,0x0,"Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000\Device Parameters\StorPort"
RegWrite,HKLM,0x0,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000\LogConf
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Enum\Root\ISCSIPRT\0000\Control,ActiveService,iScsiPrt
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\iScsiPrt,DisplayName,"iScsiPort Driver"
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\Services\iScsiPrt,ImagePath,\SystemRoot\system32\drivers\msiscsi.sys
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\iScsiPrt,ErrorControl,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\iScsiPrt,Start,3
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\iScsiPrt,Type,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\iScsiPrt\Parameters,BusType,9
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\iScsiPrt\Enum,0,Root\ISCSIPRT\0000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\iScsiPrt\Enum,Count,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\iScsiPrt\Enum,NextInstance,1
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\MSiSCSI,DisplayName,"@#$pSystemRoot#$p\system32\iscsidsc.dll,-5000"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\MSiSCSI,Group,iSCSI
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\Services\MSiSCSI,ImagePath,"#$psystemroot#$p\system32\svchost.exe -k netsvcs"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\MSiSCSI,Description,"@#$pSystemRoot#$p\system32\iscsidsc.dll,-5001"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\MSiSCSI,ObjectName,LocalSystem
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\MSiSCSI,ErrorControl,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\MSiSCSI,Start,3
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\MSiSCSI,Type,32
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\MSiSCSI,ServiceSidType,1
RegWrite,HKLM,0x7,Tmp_System\ControlSet001\Services\MSiSCSI,RequiredPrivileges,SeAuditPrivilege,SeChangeNotifyPrivilege,SeCreateGlobalPrivilege,SeCreatePermanentPrivilege,SeImpersonatePrivilege,SeTcbPrivilege
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\MSiSCSI,FailureActionsOnNonCrashFailures,1
RegWrite,HKLM,0x3,Tmp_System\ControlSet001\Services\MSiSCSI,FailureActions,50,46,00,00,01,00,00,00,01,00,00,00,03,00,00,00,14,00,00,00,01,00,00,00,c0,d4,01,00,01,00,00,00,e0,93,04,00,00,00,00,00,00,00,00,00
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\MSiSCSI,RebootMessage,"See Note 3 below"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\MSiSCSI,FailureCommand,customScript.cmd
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\Services\MSiSCSI\Parameters,ServiceDll,#$psystemroot#$p\system32\iscsiexe.dll
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\MSiSCSI\Parameters,ServiceDllUnloadOnStop,1
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\MSiSCSI\Enum,0,Root\LEGACY_MSISCSI\0000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\MSiSCSI\Enum,Count,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\MSiSCSI\Enum,NextInstance,1
If,%NoWarnROW%,Equal,True,System,ERROROFF,5
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\netbt,Start,0
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\AFD,Start,0
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\Tcpip,Start,1
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\Services\MSiSCSI,ImagePath,"#$psystemroot#$p\system32\svchost.exe -k Godzilla"
RegWrite,HKLM,0x7,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318},IconPath,#$pSystemRoot#$p\System32\setupapi.dll#$c-10
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318},LegacyAdapterDetection,0
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318},Class,SCSIAdapter
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318},ClassDesc,"@#$pSystemRoot#$p\System32\SysClass.Dll,-3005"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318},,"@#$pSystemRoot#$p\System32\SysClass.Dll,-3005"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318},Installer32,"SysClass.Dll,ScsiClassInstaller"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,InfPath,iscsi.inf
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,InfSection,iScsiPort_Install_Control
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,ProviderName,Microsoft
RegWrite,HKLM,0x3,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,DriverDateData,00,80,8c,a3,c5,94,c6,01
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,DriverDate,6-21-2006
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,DriverVersion,6.0.6000.16386
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,MatchingDeviceId,root\iscsiprt
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,DriverDesc,"Microsoft iSCSI Initiator"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000,EnumPropPages32,"iscsipp.dll,iSCSIPropPageProvider"
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,TCPConnectTime,15
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,TCPDisconnectTime,15
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,WMIRequestTimeout,30
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,DelayBetweenReconnect,5
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,MaxPendingRequests,255
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,EnableNOPOut,0
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,MaxTransferLength,262144
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,MaxBurstLength,262144
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,FirstBurstLength,65536
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,MaxRecvDataSegmentLength,65536
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,MaxConnectionRetries,-1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,MaxRequestHoldTime,60
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,LinkDownTime,15
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,IPSecConfigTimeout,60
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,InitialR2T,0
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,ImmediateData,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,ErrorRecoveryLevel,2
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,PortalRetryCount,5
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,NetworkReadyRetryCount,10
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\Parameters,SrbTimeoutDelta,15
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\0000\PersistentTargets,,
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\Properties,DeviceType,4
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\Properties,DeviceCharacteristics,256
RegWrite,HKLM,0x3,Tmp_System\ControlSet001\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}\Properties,Security,01,00,04,90,00,00,00,00,00,00,00,00,00,00,00,00,14,00,00,00,02,00,34,00,02,00,00,00,00,00,14,00,ff,01,1f,10,01,01,00,00,00,00,00,05,12,00,00,00,00,00,18,00,ff,01,1f,10,01,02,00,00,00,00,00,05,20,00,00,00,20,02,00,00
//--
RegWrite,HKLM,0x1,Tmp_Software\Microsoft\Windows\CurrentVersion\explorer\ControlPanel\NameSpace\{A304259D-52B8-4526-8B1A-A1D6CECC8243},,"iSCSI Initiator"
//--
RegHiveUnLoad,Tmp_Software
RegHiveUnLoad,Tmp_System

[services_removed]
// services already exist
RegHiveLoad,Tmp_System,%RegSystem%
//service amdsbs already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\amdsbs,ImagePath,system32\DRIVERS\amdsbs.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\amdsbs,Group,"SCSI Miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\amdsbs,DriverPackageId,amdsbs.inf_x86_neutral_5cae6933bef20aa8
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Parameters\PnpInterface,5,0x00000001
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\amdsbs\Settings
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,EnableALPEDisableHotplug,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,EnableCCC,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,CCCTimeoutValue,0x0000000a
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,CCCCompletionValue,0x00000020
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,NCQEnableDiskIDBits,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,EnableHIPM,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,EnableDIPM,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,EnableHDDParking,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdsbs\Settings\CAM,CAMTimeOutValue,0x00000005
//service amdxdata already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdxata,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdxata,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\amdxata,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\amdxata,ImagePath,system32\DRIVERS\amdxata.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\amdxata,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\amdxata,DriverPackageId,amdsata.inf_x86_neutral_fa9a4835d180b5fc
//service arc already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arc,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arc,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arc,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\arc,ImagePath,system32\DRIVERS\arc.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\arc,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\arc,DriverPackageId,arc.inf_x86_neutral_11b52dec8e94d9aa
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arc\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arc\Parameters\PnpInterface,5,0x00000001
//service arcsas already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arcsas,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arcsas,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arcsas,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\arcsas,ImagePath,system32\DRIVERS\arcsas.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\arcsas,DisplayName,"Adaptec SAS/SATA-II RAID Windows Inbox Miniport Driver"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\arcsas,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\arcsas,DriverPackageId,arcsas.inf_x86_neutral_c763887719bed95d
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arcsas\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arcsas\Parameters\Device,NumberOfRequests,0x000000fe
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\arcsas\Parameters\Device,DriverParameter,BLEDCheck=1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\arcsas\Parameters\PnpInterface,5,0x00000001
//service atapi already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\atapi,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\atapi,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\atapi,ErrorControl,0x00000003
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\atapi,ImagePath,system32\DRIVERS\atapi.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\atapi,DisplayName,"IDE Channel"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\atapi,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\atapi,DriverPackageId,mshdc.inf_x86_neutral_f64b9c35a3a5be81
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\atapi,Tag,0x00000021
//service elxstor already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\elxstor,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\elxstor,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\elxstor,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\elxstor,ImagePath,system32\DRIVERS\elxstor.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\elxstor,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\elxstor,DriverPackageId,elxstor.inf_x86_neutral_4263942b9dfe9077
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\elxstor\Parameters,BusType,0x00000006
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\elxstor\Parameters\PnPInterface,5,0x00000001
//service exfat already exist
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\exfat,DisplayName,"exFAT File System Driver"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\exfat,Group,"Boot File System"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\exfat,Description,"exFAT File System Driver"
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\exfat,ErrorControl,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\exfat,Start,0x00000003
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\exfat,Type,0x00000002
//service fastfat already exist
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\fastfat,DisplayName,"FAT12/16/32 File System Driver"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\fastfat,Group,"Boot File System"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\fastfat,Description,"Note - dependance on CDROM.SYS only if required to read/write DVD-RAM media (which appears as CD class device). (Core) (All pieces)"
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\fastfat,ErrorControl,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\fastfat,Start,0x00000003
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\fastfat,Type,0x00000002
//service fax
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\Fax,DisplayName,"@#$psystemroot#$p\system32\fxsresm.dll,-118"
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\Fax,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\Fax,ImagePath,#$psystemroot#$p\system32\fxssvc.exe
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\Fax,Start,0x00000004
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\Fax,Type,0x00000010
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\Fax,Description,"@#$psystemroot#$p\system32\fxsresm.dll,-122"
RegWrite,HKLM,0x7,Tmp_System\ControlSet001\services\Fax,DependOnService,TapiSrv,RpcSs,PlugPlay,Spooler
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\Fax,ObjectName,"NT AUTHORITY\NetworkService"
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\Fax,ServiceSidType,0x00000001
RegWrite,HKLM,0x7,Tmp_System\ControlSet001\services\Fax,RequiredPrivileges,SeAssignPrimaryTokenPrivilege,SeAuditPrivilege,SeChangeNotifyPrivilege,SeCreateGlobalPrivilege,SeImpersonatePrivilege,SeIncreaseQuotaPrivilege
RegWrite,HKLM,0x3,Tmp_System\ControlSet001\services\Fax,FailureActions,2c,01,00,00,00,00,00,00,00,00,00,00,03,00,00,00,14,00,00,00,01,00,00,00,60,ea,00,00,01,00,00,00,60,ea,00,00,00,00,00,00,00,00,00,00
RegWrite,HKLM,0x3,Tmp_System\ControlSet001\services\Fax\Security,Security,01,00,04,80,84,00,00,00,90,00,00,00,00,00,00,00,14,00,00,00,02,00,70,00,04,00,00,00,00,00,14,00,14,00,00,00,01,01,00,00,00,00,00,01,00,00,00,00,00,00,28,00,fd,01,02,00,01,06,00,00,00,00,00,05,50,00,00,00,4c,4f,39,7e,b9,c3,14,ef,8c,5f,c2,9d,34,5a,6a,7f,04,eb,41,0d,00,00,18,00,ff,01,0f,00,01,02,00,00,00,00,00,05,20,00,00,00,20,02,00,00,00,00,14,00,8d,01,02,00,01,01,00,00,00,00,00,05,0b,00,00,00,01,01,00,00,00,00,00,05,12,00,00,00,01,01,00,00,00,00,00,05,12,00,00,00
//service HpSAMD already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\HpSAMD,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\HpSAMD,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\HpSAMD,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\HpSAMD,ImagePath,system32\DRIVERS\HpSAMD.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\HpSAMD,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\HpSAMD,DriverPackageId,hpsamd.inf_x86_neutral_f4d0397ad0d9b1cc
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\HpSAMD,Tag,0x00000103
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\HpSAMD\Parameters,BusType,0x00000008
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\HpSAMD\Parameters\Device,DriverParameter,CSMI=None;
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\HpSAMD\Parameters\PnpInterface,5,0x00000001
//service iirsp already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\iirsp,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\iirsp,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\iirsp,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\iirsp,ImagePath,system32\DRIVERS\iirsp.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\iirsp,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\iirsp,DriverPackageId,iirsp.inf_x86_neutral_25c14d33af7f54f1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\iirsp\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\iirsp\Parameters\PnpInterface,5,0x00000001
//service LSI_FC, LSI_SAS, LSI_SA2, LSI_SCSI already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_FC,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_FC,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_FC,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\LSI_FC,ImagePath,system32\DRIVERS\lsi_fc.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\LSI_FC,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\LSI_FC,DriverPackageId,lsi_fc.inf_x86_neutral_a7088f3644ca646a
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_FC\Parameters,BusType,0x00000006
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_FC\Parameters\PnpInterface,5,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\LSI_SAS,ImagePath,system32\DRIVERS\lsi_sas.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\LSI_SAS,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\LSI_SAS,DriverPackageId,lsi_sas.inf_x86_neutral_a4d6780f72cbd5b4
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS,Tag,0x00000022
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS\Parameters,BusType,0x0000000a
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS\Parameters\PnpInterface,5,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS2,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS2,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS2,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\LSI_SAS2,ImagePath,system32\DRIVERS\lsi_sas2.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\LSI_SAS2,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\LSI_SAS2,DriverPackageId,lsi_sas2.inf_x86_neutral_e12a5c4cfbe49204
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS2\Parameters,BusType,0x0000000a
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SAS2\Parameters\PnpInterface,5,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SCSI,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SCSI,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SCSI,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\LSI_SCSI,ImagePath,system32\DRIVERS\lsi_scsi.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\LSI_SCSI,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\LSI_SCSI,DriverPackageId,lsi_scsi.inf_x86_neutral_cfbbf0b0b66ba280
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SCSI\Parameters,BusType,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\LSI_SCSI\Parameters\PnpInterface,5,0x00000001
//service megasas already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\megasas,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\megasas,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\megasas,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\megasas,ImagePath,system32\DRIVERS\megasas.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\megasas,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\megasas,DriverPackageId,megasas.inf_x86_neutral_395276dd9b7a7448
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\megasas\Parameters,BusType,0x00000008
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\megasas\Parameters\Device,DriverParameter,enableMSI=1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\megasas\Parameters\PnpInterface,5,0x00000001
//service MegaSR already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\MegaSR,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\MegaSR,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\MegaSR,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\MegaSR,ImagePath,system32\DRIVERS\MegaSR.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\MegaSR,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\MegaSR,DriverPackageId,megasr.inf_x86_neutral_30b367f92ca46598
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\MegaSR\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\MegaSR\Parameters\Device,UncachedExtAlignment,0x00000010
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\MegaSR\Parameters\Device,NumberOfRequests,0x00000014
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\MegaSR\Parameters\PnpInterface,5,0x00000001
//service msahci already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\msahci,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\msahci,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\msahci,ErrorControl,0x00000003
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\msahci,ImagePath,system32\DRIVERS\msahci.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\msahci,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\msahci,DriverPackageId,mshdc.inf_x86_neutral_f64b9c35a3a5be81
//service nfrd960 already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nfrd960,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nfrd960,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nfrd960,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\nfrd960,ImagePath,system32\DRIVERS\nfrd960.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\nfrd960,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\nfrd960,DriverPackageId,nfrd960.inf_x86_neutral_cfc8c0013e9ede68
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nfrd960\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nfrd960\Parameters\PnpInterface,5,0x00000001
//service nvstor already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nvstor,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nvstor,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nvstor,ErrorControl,0x00000003
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\nvstor,ImagePath,system32\DRIVERS\nvstor.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\nvstor,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\nvstor,DriverPackageId,nvraid.inf_x86_neutral_5bde3fe2945bce9e
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nvstor\Parameters,BusType,0x00000003
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\nvstor\Parameters\PnpInterface,5,0x00000001
//service ql2300 already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql2300,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql2300,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql2300,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\ql2300,ImagePath,system32\DRIVERS\ql2300.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql2300,DisplayName,"QLogic Fibre Channel Miniport Driver"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql2300,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql2300,DriverPackageId,ql2300.inf_x86_neutral_ca8487daf77ff7cb
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql2300\Parameters
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql2300\Parameters\Device,DriverParameter,""
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql2300\Parameters\Device,BusType,0x00000006
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql2300\Parameters\PnpInterface,5,0x00000001
//service ql40xx already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql40xx,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql40xx,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql40xx,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\ql40xx,ImagePath,system32\DRIVERS\ql40xx.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql40xx,DisplayName,"QLogic iSCSI Miniport Driver"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql40xx,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql40xx,DriverPackageId,ql40xx.inf_x86_neutral_77a826e5c0a07842
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql40xx\Parameters,BusType,0x00000009
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\ql40xx\Parameters\Device,DriverParameter,""
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\ql40xx\Parameters\PnpInterface,5,0x00000001
//service SiSRaid2 already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid2,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid2,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid2,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\SiSRaid2,ImagePath,system32\DRIVERS\SiSRaid2.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\SiSRaid2,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\SiSRaid2,DriverPackageId,sisraid2.inf_x86_neutral_845e008c32615283
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid2\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid2\Parameters\PnpInterface,5,0x00000001
//service SiSRaid4 already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid4,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid4,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid4,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\SiSRaid4,ImagePath,system32\DRIVERS\sisraid4.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\SiSRaid4,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\SiSRaid4,DriverPackageId,sisraid4.inf_x86_neutral_65ab84e9830f6f4b
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid4\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\SiSRaid4\Parameters\PnpInterface,5,0x00000001
//service stexstor already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\stexstor,Start,0x00000000
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\stexstor,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\stexstor,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\stexstor,ImagePath,system32\DRIVERS\stexstor.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\stexstor,Group,"SCSI Storport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\stexstor,DriverPackageId,stexstor.inf_x86_neutral_80ee226e29362f51
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\stexstor\Parameters,BusType,0x00000008
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\stexstor\Parameters\Device,NumberOfRequests,0x00000400
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\stexstor\Parameters\PnpInterface,5,0x00000001
//service vhdmp already exist
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\vhdmp,Start,0x00000003
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\vhdmp,Type,0x00000001
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\vhdmp,ErrorControl,0x00000001
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\services\vhdmp,ImagePath,system32\DRIVERS\vhdmp.sys
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\vhdmp,Group,"SCSI miniport"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\services\vhdmp,DriverPackageId,vhdmp.inf_x86_neutral_2b67e9bd8e77fe9a
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\vhdmp,BootFlags,0x00000002
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\vhdmp\Parameters,BusType,0x0000000f
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\services\vhdmp\Parameters\PnpInterface,5,0x00000001
RegHiveUnLoad,Tmp_System

[AuthorEncoded]
vinis13 (31).jpg=4855,6474
Logo=vinis13 (31).jpg

[EncodedFile-AuthorEncoded-vinis13 (31).jpg]
lines=1
0=eJydVmdYE926ndBCkx5EqkgHRUUjVQIqIGBoCqiUIC0QihJ6L1IEgVBEkCogKl26tIReBEQ/eq/SezcEcoOec+6f++Peu2a/s9bM7D3PXu9+59lDHCZOA0waquqqAAgEAsxIB0CcAUpVPGytAQAOB8QBAKAGwCBFgJKkyEhhDoL90VSkQJOD/mgQKbLIyf/wWQC6TH/12UmXGaD4z32W/9Z/4SUMgELfA0BA8F/GA/+6XvrLrtf+8orZX5ZL+svnX/zhP7oEQxwD7gJkINBZ+xfIKcnPQEVBQU4JpgKDz4Kaho6GmpqWGgymPUdLS0dPApiGgfEcPcOZPnvJ2fCzUaRGTw2mpv8/g9gAMFMDAUAAOegSQMYMImcGEVsAPpIrStAf/Ns4iIycgpKKNCVaOlKHCibS9MnJyUiTpaQgpQjkS3oOUDBTsvBfV6Zi1X0GvuTEJhUYm0ktcKekEaL3c0vwhjk6iIaW/TzHBU4hYRFRMfGb0FvSMrJyd++pqKrdV9d4+EjfwPDxk6cWllbWSBtblLOLq5u7h6fXy+CQ0LBX4RFx8W8S3iYmvUvOyv6Q8/HT59y80rLyisqqr9U1Tc0trW3tHZ3f/unrHxgcGh4ZnZmdm/+1sLi0vLK9s7u3f3B49Bt/5gsEkIP+jf/RFzPJFxlpDSjAZ75AZO5nHZgpKPmvU7Eo64KfObFekgqkZrsTm1nSSCNwQ28LYo7+ScsueHNGaPvM2h9n/ztjQf8vZ/8x9t++RgF6UmGTMZMzAzDghJAVIQr8iTyU10n067L1xLeV6dZuv//JY2/obNNWIDfGvMLZ+DPY0N5Dm6xIfkqofM1x2JWgpxg8+Gbpu+MPw0uuAnzhwxs2xRk+iGNblNv9Zs2t7BhGFu3riQITOvR8R8zt9Z7nI4iAI4bv9lz5+coaR5mdrNLIPCIw1dCDHyoOnSGYOOgn5hMBiXRf+9GQ2xuniEWLdbzEdC3sSJSxhY7rjSeUTr7kwi+h0lcC2wQjfe15Fa/2JsSRqN1RskvVkAIUvabd45wjcT93OWnsPc93ItBcYeLH1f7wdVxEnEnG7+HkJ4Psjj1j/Xh0xDaO/XQCx0jg8yoxnkSoM/JaLj8PCZM57mhRby9lbvXCvCQgPxCUtk6whVko9uSPaS61WV+rYuSkeaTk+Cw6iiWxdMyq4q5ms+k9H4sP0/a22fKkOdRv1conu+iqoFMo2XSVKNkMEJF1Jshpf4ZxlGERCweYXKGjPQvjjKePb4Dqvo5Xd2wVEyxq2Q6Lcpkis9n0zR3PqZM4VDN8QwRc1ZzxoM6GzuI0RTG/4dHQQsHKUWmC5jojqH/WmndNzr/BCfPQ1HP70+w+EWjx9TJKeaf9hmF4DkzHiWdUJgKrCkMpvX6aTOo9vqp0YsEsCSZWRwLNLQssKb8+rkWX6R2Ff0bp1Xa5SiTKpyy0zaXG+Wp5FrQPzmcI1rL4wp+dZGLkv7L9qjbzXKgX0S5p7h0fPO1LYDAw1JN/GeF/0GWKEd/h8j5KCSr7qD09oTZtJ+ZYll7R6eN6FJzBqMiBkm5S5ulecXgvOB1qhp7agnTiZ/MSaLRQ1ydKtPIijdPbaXL9+vCwMD8J44rK1zm4sHLpXWG7XF7rWt8xi0iroHVr+haztNiMpyuuRGDUbWhu+/pSH88NHbod2+sa7P8sjgLXILjlFCSsSb2hOBArfJRuu8lfwdCQe/yo63QssEL7uGQdz45S4J8TW5fMvN6xfPGimJ4y5FDG5xwUFY61KqsnAvnpGminstWakv3nBCF3zqjW6a9uupxvRD0uLnII9BsijuX8RrCCJwmEp5J71aObd2tibmXmaLS0vrjR9fmUBlhqLvYZSrGdFCMCIYEzg2/1PrUYbIW+RcwOWCh5PsfbZ6cSAQ5uQvPCLh8bQUmfvnJaQ1vVIoQIsOINKmz6Wpse5edPqeKKG08/PHyzDNdIqaiEeZ1SEtBbRGCdcWu2q+WUq9Yohauk4gcRKKiMAdVI8yQhtyl4Q2tpCVJEIMjJv1GpgnGE8SCgkrNnvO+Iq2Un52MJo7wDjb3QP4ETNPPuegPH8bbukJOCh42XnRvlaATibtHHiV2gp54Oku0obt8lpP06yrBOm91/vbNGGCKwru8QkINizlDrKsGsCIlm+SDss5NcrDAuwucO3rcueHh5vu3r0nrGu/odVfAXCt85hBJBc1vAQ7thNGrlunocTFK441ttTN5U4MUTUHEU4R68ZWMY4AX2eMJ+mS5ohurFF+Bt6rWv3ii0zC2qTbX+XNDdkjpbshETmbz8fK1aJDW5DVe+uoqAs7ZK+ax/ophNLcNzWs0LqV/K27R6FnfdIBstGwVJUVjAIk4q/USb8zyw5+i6zz3LutdnCniYA0hErqKxvwF08xS6ncoL2grNKZyQeuUyzGnPGz0B8We/6Af9jdvWnhVqq0HWphvErZqmFVkK7s5nf0Ecr8DX91SKNa9kb8ph+ghEoPhGBrOk9fv6J4mFU515KJaJb2OLad1Fvo9TM5qqFPmWogpWmTkaFXXGlYoUv++Niweh7SaIAJIIUHHsudXGqtvWuE37kz7NBF+KHEmjbPmc/Jtrpg5yjyPR6tyx11ytZPgDOwT6wDlIH4MferJmA3P60ec0L9lkczx2BEtm/7jG38Aj1XxkV4b7GdRtLMogb17mWgitU54pVIM32opgul+OWlLGb8Ok/BtW099YfkzxcgXf/Dn3NKHf1Kjtc+ZjJrVCv14i0MgMQ9nibK6OsFwBP/rqHeU/0z2n+tXdvBdaYjJYyqKNuEqqXvv8bfaN4x77IC3P4gr/6UB/zpQZUgkWus7kfqSxmivkNXpx4QvOpkrRxeNQYoGxHbKw7Wd44Rl3dp3rcRWBYe0Ty9wTkbI+/O+Min5dFb97vp4LfBXsBZWT5/vWmpkFd8uH5610b/E5lhaDV8cEFq+ojsuzvHA2XTw2N+Gyg5NTBPU4EYHy/KbW4TfAfZFBbLPYJ/vLVpNEIA2T1i3kte5WEu9tFaN1zgKx3G4r0wHpHxdtBEcOuo5rKAvXy2SHl0X0X37VSQ6JdXYI8Fg2Cc21YVijX6iegAtURqtbO7Fdy41Tu82s1CkyDNjZFLWhkd8ytnR6w+PufrIxpfySquZd9EBS8j5sJesCrfYX0DgRqJGYZ2SDDEBtrcIvXPlB/V5rmQX4DNuMgXEPuc8VhxvguPwuHy22VnFOvjbrFF9Ohuf8Iug82JaedDF81hCl77wq4D0EZX95EPpbqDQ1PjJnj55xfgHbLtak57IpK7GO2+/fRQ2gVJEvXcKhJujJSejlJwHTSAJ+aPCU6strtS3C9c/DECUgusEca9dHuP35ybN1s0gZ2fF4YV+50MJ8+N1Wdktm3qwbfQwtfqH1GsNQoS72SBOjjHtTRkIdkhzz3gaP+zoTLB+EW/DjmOw6XDJYj97HfFgxY17mn60xEd9sMbwcrJgVzJ262eqk3/RVDb2ssenchRVcEpvZfCVXHwHRNwqNk9kBURMBue2hbNo1ImB+lZMINJWflGHZV+0XBPsI6rYLqchDx1MjTKsxpq1u7CB9SztyHxEtWXnr2CxDq8JT8qNV9ASXY3P12FFpPZURxyyWVI9B90g1KeLSO8raWjibAfGBV9elNLobuP9jg7+N/cHzbvTiroaUbHAqxTzDSI/Hu0qpVFFZcyErOwffPYLP3u0HQiLi4Q8HMqrYSHUm5Zs5M1XZL1UUlmns0FqHhnMpeslTiMOYivynobvJqFpuy/3iAn+75+dwrxTpEOpMwvBbj2oB+nkyXWwSgzaBCivigLBj4sTO8aM85N0c/HC5uxc+GDud30j8zROHCtJvfJZc7OohH9vqrLMazHTX6aG/PU0ixa7JP6/VLluh2zLdZBe+Il77McJYsXyrirycORsRyQNlT9W9bfL6GqKa7c+1acxb7vW4JFYJlb1stTJ+4D6/m/wZXqjzERNDSul0JJasPOlbutS2btJ+7PqVCcws3G6UlB9BHxFkt5/0Nn9vUYqN3fJiUtH9HhqvF7KyRXn6fM6ynRm3RAgszc0XA3yezzKBT+4UrDwjAhR5WwUBi22Tl/
1=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

« Last Edit: December 31, 2015, 09:45:26 PM by Lancelot »

Re: Microsoft iSCSI Initiator
« Reply #4 on: December 31, 2015, 05:23:39 PM »

APT

  • Grand Chef
  • *****
  • winpe enthusiast
  • Location: UK
  • Date Registered: Nov 2012
  • Posts: 1150
thanks but later iSCSI script on w7 project
Version=008
Date=2014.11.07


Re: Microsoft iSCSI Initiator
« Reply #5 on: December 31, 2015, 09:50:11 PM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
I put ISCSI plugin to server to be found and used on projects easily

Utils\Plugin Link Organisation\"Update Download Packs"
-->
\Downloads\ComponentsY\ISCSI Initiator --> Download

**
@ jcrystal
use codebox when sharing codes,  fixed your reply 3 above.

:turtle:

 

Powered by EzPortal