Looks like a network problem but I don't think that's it.

Okay so a co-worker (my boss actually) got an Ipod shuffle for Christmas. When he plugs it into the PC he get's a message that the Ipod on F:\ needs to be formatted. we've followed the steps and formatted it several times but following the steps only removes the path to the music, But here where I think a lot of the problem comes in, F is actually a networked drive that contains the mydocuments folder where the music is located, but whenever we plug the Ipod in it thinks it's the F drive so we loose the networked path and can't access it until we unplug the Ipod.
I would think the fix for this would be to change the drive letter under the drive management but it's not showing up there or in my computer. Is there a setting in advanced somewhere to tell it to assign the Ipod a different letter drive or something like that? I haven't had any luck finding it. Or am I on the wrong path to fix it?
Thanks
Russ

Thanks for the response. But as I said it wasn't showing up in the disk management. Anyway we did get it to show up in disk management after stopping and restarting the service (for some reason rebooting wasn't doing it for us though.)
Again Thanks again for the help.

Similar Messages

  • I have recently purchased a new computer and photoshop element. It looks like its downloaded it but I don't know how to access it. it says file are ready...down load files have been extracted and saved to folder....launch PS elements and open specific fol

    I have recently purchased a new computer and photoshop element. It looks like its downloaded it but I don't know how to access it. it says file are ready...down load files have been extracted and saved to folder....launch PS elements and open specific folder. it looks like it downloads. It then keeps taking me back to this page. Im not sure where to go next

    if you have a win os you should have dl'd an exe and a 7z file.
    put both in the same directory and double click the exe.

  • I keep getting a message telling me that my message failed :network problem but only to one number that used to work fine, it is my sons number!

    Could someone please help me with this it is driving me crazy here! I keep getting this message when I try to send my son a text! It says there is a network problem and the message failed. what do i do to correct this on my samsung galaxy note 4? It only happens with his number and I have tried all the trouble shooting help things and nothing works.

        I'm very sorry to hear there is a error when texting your son. I'd like to help figure this out with you. Which phone does your son have? When did the error start? Does either device have any physical or liquid damage?
    VanetrisC_VZW
    Follow us on Twitter @vzwsupport

  • It looks like a battery problem, but isn't

    I have a 4G, purchased the end of 2004. I replaced the battery last year.
    The battery appeared to go again, so I replaced it again. The battery looked half charged when I connected it, though it said fully charged when I used someone else's charger (mine, for some reason, stoppped working???) I charged it over night anyway -- the instructions say at least 3 hours.
    Unfortunately, before I even used it, it is showing the same symptoms -- discharging rapidly after it's been fully charged. I disconnected the charger a couple of hours ago, and now the battery symbol says that it's almost totally discharged.
    Ideas?

    what is that icon
    It represents the mounted image.
    what do I need to do with it?
    You need to click on it. If there's an application inside, move that to the Applications folder. If there's a brown package icon inside, double-click it.
    (54182)

  • I have a cracked screen from a few months ago. A few days ago out of nowhere my spears won't work (ringing, speakerphone, music) apple told me I need new speakers but I don't think that can be it. Help?!

    My phone has been working perfectly fine even after I dropped it and cracked the screen. Apple is saying this happened because of the cracked screen but that doesn't make sense. HELP!!! I don't have a warranty so I would have to pay $80 for new speakers :( apple *****

    Your computer is under warranty. You can verify that here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do
    You will need the serial number:
    http://support.apple.com/kb/HT1941
    If the reseller will not fix it under warranty, get in touch with Apple directly, by email or phone.

  • The AVI Radeon X1900 XT video card in my Mac Pro Dual-Core went bad and I need to replace it. I found one that is $250 but I don't think that I need the gaming-type processor.  I am using a 23" Apple Display. Are there lower cost options? -C

    The Radeon X1900 XT video card went bad in my Mac Pro Dual-Core Intel Xeon. (I tried it with a good one at the office). I found one online that was $250. I don't need the gaming capacity of this card and was wondering if there were less expensive video cards that I could use in this machine. I run Adobe Creative Suites for graphics design and have a 23" Apply display. Thank you for any help that you can provide. -PretzelMcK

    Then pick up the ATI 5770 AND upgrade to 10.6.8.
    Same price for a good card that will work and helps to have 1GB VRAM.
    There aren't any other real choices let alone less expensive.
    Even the ebay links I had and not a lot of choices.

  • Looks like a simple query but need your help

    Hello everyone,
    I have a simple problem but I can't get over it. Actually, it looks like a simple problem, but I can't do it. So,it's probably not... Anyone can help me with this?
    Imagine the following data:
    ALTER SESSION SET NLS_DATE_FORMAT = 'DD/MM/YYYY HH24:MI:SS';
    SELECT TRUNC(SYSDATE) - TO_DATE('01/01/11', 'DD/MM/RR') FROM dual; -- 564
    DROP TABLE runs;
    CREATE TABLE runs
      start_date DATE,
      end_date DATE
    -- generate some random data
    INSERT INTO runs(start_date)
      SELECT TO_DATE('01/01/11', 'DD/MM/RR') + trunc(dbms_random.value(0,564))
        FROM dual
    CONNECT BY LEVEL <= 10000;
    -- still generating sample data
    UPDATE runs
       SET end_date = start_date + dbms_random.value(0,20000) / 86400; -- 20000 sec is the max
    COMMIT; If you execute the previous "script", you'll end up with a table called RUNS with 10.000 records. Each record contains a start date and an end date which is max 20.000 second after the start date.
    What I would like to do is a report based on these data.
    I need something like this:
    (first week of 2011 started on sunday. So I go back to the last monday of 2010)
    WEEK_NUMBER                              AVG_FOR_MONDAY_BY_WEEK  CUMULATIVE_AVERAGE_FOR_MONDAYS
    Week 1: 26/12/2010 - 01/01/2011                                       9999                           88888
    Week 2: 02/01/2011 - 08/01/2011                                       1111                           22222
    ....For each week, I would like to have the average duration (which is the difference in seconds between end_date and start_date) by day (monday needs to have its average, tuesday, wednesday...too)
    And I also need a cumulative average by week and by days (mondays, tuesdays...). This cumulative average needs to be based on all the preceding rows.
    Can anyone help me with this query? I'm using Oracle 10g
    Thanks

    Hi,
    Something along these lines :
    alter session set nls_date_language = "english";
    with all_data as (
      select to_char(start_date, 'IYYYIW') as wk
           , to_char(start_date, 'dy') as dy
           , (end_date - start_date)*86400 as duration
      from runs
    week_data as (
      select wk
           , round(avg(case when dy = 'mon' then duration end)) as avg_mon
           , round(avg(case when dy = 'tue' then duration end)) as avg_tue
           , round(avg(case when dy = 'wed' then duration end)) as avg_wed
           , round(avg(case when dy = 'thu' then duration end)) as avg_thu
           , round(avg(case when dy = 'fri' then duration end)) as avg_fri
           , round(avg(case when dy = 'sat' then duration end)) as avg_sat
           , round(avg(case when dy = 'sun' then duration end)) as avg_sun
      from all_data
      group by wk
    select wk
         , avg_mon
         , sum(avg_mon) over(order by wk) as cum_avg_mon
         , avg_tue
         , sum(avg_tue) over(order by wk) as cum_avg_tue
         , avg_wed
         , sum(avg_wed) over(order by wk) as cum_avg_wed
         , avg_thu
         , sum(avg_thu) over(order by wk) as cum_avg_thu
    from week_data
    order by wk;
    WK        AVG_MON CUM_AVG_MON    AVG_TUE CUM_AVG_TUE    AVG_WED CUM_AVG_WED    AVG_THU CUM_AVG_THU
    201052                                                                                
    201101       9836        9836       8737        8737       9088        9088      12167       12167
    201102       7639       17475      10319       19056       7391       16479       8036       20203
    201103       8275       25750       8883       27939       8525       25004      11682       31885
    201104       7029       32779      10850       38789       7360       32364       7617       39502
    201105      10292       43071      11421       50210      11141       43505       9469       48971
    201106      11612       54683       9762       59972      11464       54969       9517       58488
    201107       8645       63328      10206       70178      10124       65093      11917       70405
    201108      11466       74794      11678       81856      10839       75932       9587       79992
    201109       8745       83539       6803       88659       8963       84895       9496       89488
    201110      10443       93982       8104       96763      10314       95209      10908      100396
    201111       8183      102165       9467      106230      11495      106704      12040      112436
    201112       8575      110740       9207      115437      10338      117042       9561      121997
    201113      10273      121013       6268      121705      11288      128330      12335      134332
    201114      10176      131189       8561      130266      10367      138697       7983      142315
    201115      10587      141776      12073      142339       8528      147225      12271      154586
    201116       9393      151169      10761      153100       7901      155126      10020      164606
    201117      11459      162628       9471      162571      10136      165262       8188      172794
    201118      11946      174574       9997      172568       9367      174629      10475      183269
    201119      12869      187443       9848      182416       7692      182321       9632      192901
    201120       9675      197118       7408      189824      11646      193967       9614      202515
    201121      10742      207860      10302      200126       9208      203175       7543      210058
    201122       8083      215943       8323      208449      10045      213220       9498      219556
    201123      11838      227781       8820      217269       8804      222024      10485      230041
    201124       8748      236529      12143      229412       9684      231708       8402      238443
    201125      11504      248033      10586      239998      10073      241781       9573      248016
    201126       7289      255322      14241      254239      10100      251881      11843      259859
    201127      10855      266177       9980      264219      10320      262201      11023      270882
    201128      11004      277181       9975      274194      11609      273810       8945      279827
    201129      10488      287669       9402      283596      11985      285795       9481      289308
    201130       7338      295007       8963      292559      11982      297777       8177      297485
    201131       9778      304785      10024      302583      10732      308509      10749      308234
    201132      10360      315145      12577      315160       8643      317152      10001      318235
    201133       9845      324990      10416      325576       9996      327148      10548      328783
    201134       9540      334530       8138      333714       9401      336549       9093      337876
    201135       7000      341530       9920      343634      10370      346919      10937      348813
    201136      11307      352837       8889      352523      12339      359258       8491      357304
    201137      11785      364622       9146      361669       9232      368490      11023      368327
    201138       7857      372479       6784      368453       8502      376992      12558      380885
    201139       9842      382321      10616      379069      10435      387427       7848      388733
    201140      10578      392899       9402      388471       8806      396233       9927      398660
    201141       6711      399610      13015      401486       9934      406167      10011      408671
    201142      10088      409698      10380      411866       7836      414003       9205      417876
    201143       8132      417830      11772      423638      10792      424795      10834      428710
    201144       9921      427751       7454      431092       9551      434346      10754      439464
    201145      13196      440947      11600      442692      11303      445649      10455      449919
    201146      12022      452969       8996      451688      10221      455870      12567      462486
    201147       8965      461934      10068      461756      10607      466477      13486      475972
    201148       9483      471417       9264      471020       9601      476078       8685      484657
    201149      11738      483155       9000      480020      10284      486362      11263      495920
    201150      10338      493493      10237      490257      10357      496719      10984      506904
    201151      10777      504270      11138      501395      10543      507262       9840      516744
    201152       9881      514151      10692      512087      11432      518694      10122      526866
    201201      11089      525240       8077      520164      12391      531085       9649      536515
    201202       9871      535111       8326      528490       9449      540534      10551      547066
    201203      10625      545736      11609      540099       9626      550160       5795      552861
    201204       8856      554592       9679      549778      10722      560882      11064      563925
    201205       9379      563971       9943      559721       8409      569291      11656      575581
    201206      10843      574814      10070      569791      12162      581453      10764      586345
    201207       8424      583238       8484      578275       8382      589835       8716      595061
    201208      11159      594397      10415      588690      11459      601294      11317      606378
    201209      11264      605661       8244      596934       9682      610976      10192      616570
    201210      11514      617175       9322      606256       9101      620077      10571      627141
    201211       9348      626523       7501      613757      12297      632374      11170      638311
    201212      10523      637046       7605      621362      10348      642722      10068      648379
    201213      10411      647457      11686      633048      10212      652934       9574      657953
    201214       9394      656851      10526      643574       8521      661455       9829      667782
    201215       8994      665845      12256      655830       8243      669698      10592      678374
    201216      11491      677336      10939      666769      12846      682544       9708      688082
    201217       9737      687073       9611      676380       7244      689788      10943      699025
    201218       9024      696097      11286      687666      10033      699821      10314      709339
    201219       9851      705948       9851      697517       9159      708980       9917      719256
    201220       7785      713733      10490      708007       8534      717514       8528      727784
    201221      11107      724840       8197      716204       8926      726440      10834      738618
    201222       8093      732933      11853      728057      11697      738137      10081      748699
    201223       9371      742304      10796      738853      11068      749205       9904      758603
    201224      10600      752904       8487      747340      10838      760043       8009      766612
    201225      11090      763994       9595      756935      10736      770779       9387      775999
    201226       8234      772228      12759      769694       9119      779898       8422      784421
    201227       9738      781966       9383      779077       8978      788876      11635      796056
    201228      11687      793653      10302      789379       9459      798335      10608      806664
    201229       9245      802898      11290      800669                 798335                 806664
    82 rows selected

  • TS3297 I have rented a movie on iTunes and it won't download. I don't get an error message.  It looks like it is downloading but doesn't progress

    I have rented a movie on iTunes and it won't download. I don't get an error message.  It looks like it is downloading but doesn't progress

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

  • I 've just installed Firefox for the first time (v9.0.1) & can't save any bookmarks. I don't get an error message & it looks like my bookmark saved but when I go in to look at my bookmarks, there are none there.

    I'm also having trouble importing my favourites from IE. I've gone through the steps to Import Data for Another Browser and it looks like it has worked but when I go to view my bookmarks it is still empty.

    Hi,
    Please see [https://support.mozilla.org/en-US/kb/how-do-i-use-bookmarks?redirectlocale=en-US&redirectslug=Bookmarks this.] You can look at the star in the location (address) bar. If it's colored, it usually means the page has been successfully bookmarked.
    For importing from Internet Explorer please see [https://support.mozilla.org/en-US/kb/Importing%20favorites%20and%20other%20data%20from%20Internet%20Explorer this.] You can also try the [https://support.mozilla.org/en-US/kb/Importing%20Bookmarks%20from%20an%20HTML%20File HTML] method.

  • My iphone 6 connects to the car via bluetooth, the music works good, but the phone calles does not work.  It looks like it is working but doesn't.  I have tried in my Hyundai and a Dodge rent car and get the same results.  I updated the last 8.0.2.

    My iphone 6 connects to the car via bluetooth, the music works good, but the phone calls does not work.  It looks like it is working but doesn't.  I have tried in my Hyundai Sonata and a Dodge Dart rent car and get the same results.  I updated the last 8.0.2.  It worked the first day i had the phone, and then i updated to Ios 8.0.2 and it quit working.
    Now when i get in the car, it acts like it is connected and makes the same call it was on after syncing to bluetooth, but it really isn't on a call.  This is happening on both cars.
    Does anyone know if this is the phone and i need to take it to Apple or if there is an issue that Apple is working on getting a fix for?
    My son in law has the exact same phone as me, we both got the on 10/6, he had a Dodge Dart and his is working via bluetooth.
    Someone HELP please, as i consider this a safety issue by not having my calls go to bluetooth.

    We had the same problem, but figure out the solution.
    You MUST have at least 1 song added to your ITUNE!  After you add a free song, then everything else should work as normal!
    Hope this helps!

  • Please a simple problem but I don't know how to solve it. After installing 16 gb of ram all is good but when I turn on the computer it is a window signaling that all is correct. How is possible to delete once and for all that window? Thank you

    Please a simple problem but I don't know how to solve it. After installing 16 gb of ram all is good but when I turn on the computer it is a window signaling that all is correct. How is possible to delete once and for all that window? Thank you

    Well then maybe you could take a screenshot because the appearance of such a window is news to me.
    Also post your OS X version and what model Mac you have. The more detail, the better. Thanks.
    To take a screenshot hold ⌘ Shift 4 to create a selection crosshair. Click and hold while you drag the crosshair over the area you wish to capture and then release the mouse or trackpad. You will hear a "camera shutter" sound. This will deposit a screenshot on your Desktop.
    If you can't find it on your Desktop look in your Documents or Downloads folder.
    When you post your response, click the "camera" icon above the text field:
    This will display a dialog box which enables you to choose the screenshot file (remember it's on your Desktop) and click the Insert Image button.
    ⌘ Shift 4 and then pressing the space bar captures the frontmost window.
    ⌘ Shift 3 captures the entire screen.
    Drag the screenshot to the Trash after you post your reply.

  • I have here an iPod touch Model number a1288 but the last number to me also looks like a 3. But that isn't my point. I'm here asking this question,. I broke my screen today and I was wondering if it mattered or not if i put on a ipod touch 2nd or 3rd then

    I have here an iPod touch Model number a1288 but the last number to me also looks like a 3. But that isn't my point. I'm here asking this question,. I broke my screen today and I was wondering if it mattered or not if i put on a ipod touch 2nd or 3rd then LCD and Screen. I really don't want to buy a new iPod and i've had this for a long time and its still working fine for me. Ijust need something that will play my music at work. Please someone helpp.

    You can check your model here: iPod Touch - Wikipedia, the free encyclopedia
    and search this place for parts that would fit.

  • K8N SLI-F so many problems....but I don't think it's the board....

    Well you never know it could be the board...but here's the problems.
    For the first and most annoying problem. If I change anything inside my case that deals with the power supply the computer won't start unless I unplug one of my hdd. Right now I only have the 2 pata's plugged in because my sata didn't work so it needs to be replaced and the 120 gb pata won't let the computer start. If the hdd is plugged in the computer will start for a second and then turn off by itself. It will only do this once then I have to switch the powersupply off from the back and then switch it back on after a few seconds. I think it has to do with my powersupply but right now its running a 550w real power psu.
    The next problem is raid. I have the 2 160's running under a raid 0 configuration but when I try to install windows xp, and its at the Installing Devices, I get a number of boxes asking me if I want to install these drivers which aren't xp certified. The drivers deal with the nVidia raid and sata and pata controllers. So anyways the boxes aren't a problem until I get to one where my mouse and keyboard die but the computer is still running because that little thing on the xp setup keeps going back and forth. both keyboard nad mouse are usb. I think the power supply has something to do with these problems but I don't know. I just bought most of these parts. Any help is good!
    -EDIT-
    I fixed the problem in windows xp setup dealing with the raid and keyboard/mouse trouble. I downloaded new raid drivers from MSI and now it works. But...it crashes sometimes and as of yet I still haven't been able to log on to windows.
    Thanks,
    Rishi

    Hi! Good news and some bad news. Bad news is that I think my power supply can't handle the load I'm giving it because the there are 3 12v rails and the amps on each aren't that high. The good news is that I fixed the raid problem. I was searching the net last night and found this site which told me everything I needed to know about fixing that damn raid problem. The reason my computer kept restarting after I installed windows xp on raid was because xp was installing the default windows disk controller drivers after the installation completed. Sooo, to fix this I had to slipstream my nvraid drivers to the windows xp setup cd and then install. It worked like a charm! Too bad my computer still randomly shuts off. It has got to be the power supply since I've checked if the board is getting shorted and all the connections etc... So I'm planning to buy a new power supply...any suggestions...I'd also only like 1x12v rail with atleast 32A. Otherwise, I'm good . Thanks to everyone that helped and if anyone has any more suggestions about the power feel free to let me know!
    The site below told me how to fix the raid problem.
    http://www.msfn.org/board/index.php?showtopic=51140
    Thank you,
    Rishi

  • When I open up my itunes the itunes store looks like it is loading but will not open

    When I open up my itunes the itunes store looks like it is loading but will not open

    I imagine this is a bit late for you, but to anyone else running into this problem, try the trick mentioned by VFSchreiber in this thread:
    Re: Why won't my iTunes movie rental play or download?
    This worked for me when I ran into the same issue (can scroll through rented movie but can't play it).  Just switch iTunes to the MiniPlayer (in the Window menu) and then back to the normal player.  Apparently, you may need to do this a few times. It sounds odd (and I didn't really expect it to work), but it fixed the problem for me.

  • After upgrading to Mavericks, all of my contacts disappeared. Did a "contacts archive" export and the file is 17mbs. Looks like there's data, but none of it at all displays. What gives? 20" iMac, early '09

    After upgrading to Mavericks, all of my contacts disappeared. Did a "contacts archive" export and the file is 17mbs. Looks like there's data, but none of it at all displays. What gives? 20" iMac, early '09

    After upgrading to Mavericks, all of my contacts disappeared. Did a "contacts archive" export and the file is 17mbs. Looks like there's data, but none of it at all displays. What gives? 20" iMac, early '09

Maybe you are looking for

  • After updating to Mavericks, I can no longer navigate to individual folders to save a file. HELP!

    When I wanted to save a file before, I just chose "Save As" and the menu would appear that allowed me to navigate to the folder where I wanted to save the file. If the folder name didn't show up, then I could just double-click (say for example, "Docu

  • Upgrading from 10.3 to 10.4

    So I bought the CD version of 10.4 because my iMac 500 MHZ can't mount DVD's. When I click the restart button in the cd menu it restarts and then ejects my cd, so I put it back as soon as possible but it still loads 10.3 instead of the 10.4 setup.. C

  • HT4539 Can you share books through IBooks with family on different IPads?

    I bought a book on my IPad and my daughter wants to read it on her IPad 2. Is there a way to share the book?

  • Wrong ACTUAL SIZE

    I work on an iMac 27 inch intel core duo. The ACTUAL SIZE option is not true. it is always smaller. This is very frustrating and I probably have a wrong setting somewhere but can someone tell me how to get the ACTUAL SIZE on the screen. Thanks, Robin

  • Defining specific queue

    Hi experts, is it possible to define a number of queue for one specific interface ? I know the parameter EO_INBOUND_PARALLEL_SENDER, but I dont get how it works, where do you specify the interface concerned ? Any help would be greatly appreciated. Ki