Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > iSCSI Service Won't Start?

Reply
Thread Tools Display Modes

iSCSI Service Won't Start?

 
 
Julian
Guest
Posts: n/a

 
      02-09-2008
[Vista HP] It used to; now it says (manual start attempt) "Error 1717: the
interface is unknown"

Can it be fixed??

TIA

--
Julian I-Do-Stuff

Some Vista stuff, but mostly just Stuff at http://berossus,blogspot.com

 
Reply With Quote
 
 
 
 
Mark L. Ferguson
Guest
Posts: n/a

 
      02-09-2008
Most often, failure for a service is that it is 'disabled' (instead of
manual or auto) in the services app, or some dependant service is disabled.
This script will tell you about the dependant services for iSCSI. (in
c:\service_dependencies.csv) open in notepad.
--dependency.vbs--
Const ForAppending = 8
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objLogFile = _
objFSO.OpenTextFile("c:\service_dependencies.csv", _
ForAppending, True)
objLogFile.Write("Service Dependencies")
objLogFile.Writeline

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colListOfServices = objWMIService.ExecQuery _
("Select * from Win32_Service")

For Each objService in colListofServices
objServiceRegistryName = objService.Name
objServiceDisplayName = objService.DisplayName

Set colServiceList = objWMIService.ExecQuery("Associators of " _
& "{Win32_Service.Name='" & objServiceRegistryName & "'} Where
AssocClass=Win32_DependentService Role=Antecedent" )


If colServiceList.Count = 0 then
objLogFile.Write(objServiceDisplayName) & ", None"
objLogFile.Writeline
Else
For Each objDependentService in colServiceList
objLogFile.Write(objServiceDisplayName) & ","
objLogFile.Write(objDependentService.DisplayName)
Next
objLogFile.WriteLine
End If
Next
objLogFile.Close
--end file--
--
Was this helpful? Then click the Ratings button. Voting helps the web
interface.
http://www.microsoft.com/wn3/locales....htm#RateAPost

Mark L. Ferguson

..
"Julian" <> wrote in message
news:%...
> [Vista HP] It used to; now it says (manual start attempt) "Error 1717: the
> interface is unknown"
>
> Can it be fixed??
>
> TIA
>
> --
> Julian I-Do-Stuff
>
> Some Vista stuff, but mostly just Stuff at http://berossus,blogspot.com


 
Reply With Quote
 
the wharf rat
Guest
Posts: n/a

 
      02-10-2008
In article <#>,
Julian <> wrote:
>
>Can it be fixed??
>


Have you created the target using the iscsi initiator applet?
You're not trying to get vista to function as the *target* are you?

 
Reply With Quote
 
Julian
Guest
Posts: n/a

 
      02-11-2008
Thanks Mark & WharfRat -

I've since restored the whole system from an Acronis disk image, but I can
add the following - just in case it ever leads to some understanding.

Yes, the target was set up (Thecus N5200) and it was all working fine until
Something Happened... I checked the iSCSI service dependencies at the time
and it doesn't depend on anything and nothing depends on it.

Wish I could have replied earlier but after the restore Windows Mail refused
to download the messages between the restored date and today for vista
general, so I had to come via the web interface.

Mark - you clearly know a lot about services - thanks for the script... and
thanks for the input on the Event Log issue... (more in that thread)

Again, many thanks guys
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with a Service that Fails to Start (Bonjour Service) Stéphane Bergeron Windows Vista General Discussion 24 07-11-2008 11:21 PM
Can you help with this iSCSI error? Julian Windows Vista General Discussion 2 04-21-2008 12:36 PM
iSCSI - How do I log off/back on Julian Windows Vista Networking 0 04-01-2008 05:54 PM
iSCSI Shutdwon Issues fr4nk1yn Windows Vista General Discussion 5 12-07-2007 11:14 AM
Cannot Complete Install on iSCSI v2.04 Jason Windows Vista Installation 0 07-29-2007 01:24 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59