Bluetooth file transfer from BB Z10 to Windows 7 Laptop

I have my BBZ10 (OS 10.2.0.424) successfully paired with Windows 7 Laptop. I often use the BBZ10 BT Internet Teethering. It works very well.
However, when I want to transfer a file from BBZ10 to my Laptop. I follow this process
In the background the Internet Teethering is ON, and working
select the file in Z10 File Manager.
click on share icon to share using BLUETOOTH
Before pressing the name of my paired devices on Z10. I click Bluetooth icon on laptop and select 'receive a file'. This opens a box showing the laptop is waiting in receive mode.
Then I select my paired computer name on Z10 to initiate transfer.
The transfer bar appears on Z10 showing the progress, but in 4-5 seconds, it says 'TRANSFER CANCELLED'.
 And on my laptop it says 'BLUETOOTH FILE TRANSFER NOT COMPLETED'.
i have used exactly same process with my BB 9800 several times with success.
Another thing I note is, if the Internet teethering is OFF, I cannot turn BT connection to the laptop on. It come up with error message ' Cant' connect , you must turn on internet teethering on yoru device.'
Please troubleshoot.

hi eddie-n200,
Can you send a file from the laptop to the cellphone? If you can, check if the "Allow remote devices to browse, send, and receive pictures, music, and other files" option is enabled on the BT settings:
Spoiler (Highlight to read)
As an alternative, you may also want to try Bluesoleil or similar software to send/receive from the laptop.
Edit: Added image
Hope this helps
Did someone help you today? Press the star on the left to thank them with a Kudo!
If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
Follow @LenovoForums on Twitter!

Similar Messages

  • Bluetooth file transfer from Sharp GX29 mobile phone to iBook

    hello all,
    got a new sharp gx29 mobile phone.
    problem:
    cannot send files via bluetooth to my ibook.
    but can send from ibook to Sharp.
    when trying to send from phone, a dialog window opens on mac os x, asking whether accept or cancel the transfer.
    no matter how many times i click on accept, nothing happens, sometimes it hits it, and goes further to a transfer dialog window with the transfer progress bar, but it starts to transfer and stops at about 5-10%, and nothing happens.
    Any one has Sharp GX series and problems like me?
    I know that Sharp is not supported by isync, but that's not what I am trying to do (isync), just a normal file transfer.
    Thnx
    Tom

    I myself have missed the obvious many times so I'm going to ask.
    In System Preferences/Bluetooth/Sharing. Do you have: Bluetooth File Transfer and File Exchange checked???? Then make sure your settings in the pop up menus on the right are correct.
    If you have everything set properly in Bluetooth preferences on your iBook then you might try the Sharp web site for troubleshooting since you can't send files via Bluetooth to your iBook, not the other way around. Sounds like maybe your Sharp possibly has something blocked somewhere...
    Carolyn

  • File Transfer From Unix server to Windows Client System Using WebUtil

    Hi all,
    I want to Transfer a File from Unix Server to Window Client System using Webutil. But below mention code is not working.
    DECLARE
         V_Server_Path VARCHAR2(500) := Null;
         V_Client_Path VARCHAR2(500) := Null;
    BEGIN
         V_Server_Path := '/proj/oraapps/viper/dev/reports/cache/Saveauftr.txt';
         V_Client_Path := 'C:\Migration\EU_Applications\Lima\OAS_WorkArea\Client\Saveauftr.txt';
         IF WebUtil_File_Transfer.Is_AS_Readable(V_Server_Path) THEN
         IF WebUtil_File_Transfer.AS_To_Client(V_Client_Path,V_Server_Path) THEN
              Message('Downloading the File ..... .... ... .. .');
              Message('Downloading Was Successfull ...');
              Message('File Transfer from Server Was Successfull ...');
         END IF;
    END IF;
    END;
    Can anyone suggest me,Why the above code is not working and what to do for solve the Problem.
    Regards
    Gany

    Hello,
    You have more chances to get an answer in the Oracle Forms OTN Forum :
    Forms
    Regards

  • File transfer from UNIX server to Windows server path

    Hello Experts, (Gud Even Gud Aft & Gud Mor)
    Is there a way to transfer file from UNIX server(Oracle database), to Windows server? All I know if Windows path. I am able to read the file as it is on server, however it does not recognize Windows directory at all.
    If you can share some documents around this to study, I will be grateful.
    Regards,

    34MCA2K2 wrote:
    Is there a way to transfer file from UNIX server(Oracle database), to Windows server? All I know if Windows path. I am able to read the file as it is on server, however it does not recognize Windows directory at all.Yes it is possible. Samba on Unix sharing the directory containing the file. NFS on the Unix server sharing the directory containing the file. FTP server on Unix allowing the file to be read and copied. OpenSSH on the Unix allowing the file to be read and copied via scp (secure copy).
    But seeing as this is an Oracle database forum (not an operating system forum), and the subject matter is the database server languages SQL and PL/SQL, here is a PL/SQL solution.
    Create a table using the BFILE data type for referencing the files on the Unix o/s. Provide a web enabled procedure for downloading the files via HTTP using a web browser. This procedure will look something as follows:
    --// URL example: http://my-server.my-domain.com/MyDAD/MySchemaName.StreamFile?fileID=1234
    create or replace procedure StreamFile( fileID number ) AUTHID DEFINER is
            mimeType        varchar2(48);
            fileName        varchar2(400);
            lobContent      BLOB;
    begin
            --// read the LOB from a table (this example uses the
            --// Apex file uploads table - change it to your own files table)
            select
                    f.filename,
                    f.mime_type,
                    f.blob_content
                            into
                    fileName,
                    mimeType,
                    lobContent
            from    FLOWS_FILES.WWV_FLOW_FILE_OBJECTS$ f
            where   f.id = fileID;
            --// format a basic HTTP header that describes the file stream send
            OWA_UTIL.mime_header( mimeType, FALSE );        -- e.g. text/csv text/plain text/html image/gif
            HTP.p( 'Content-Disposition: attachment; filename='||fileName );
            HTP.p( 'Content-Length: ' || DBMS_LOB.GetLength(lobContent) );
            OWA_UTIL.http_header_close;
            --// now write the BLOB as a mime stream using the Web Procedural Gateway's
            --// doc load API
            WPG_DOCLOAD.download_file( lobContent );
    exception when OTHERS then
            --// Decide what HTML to generate (if at all) if there is a failure
            --// (usually not a good idea to show database errors to the
            --// web browser client as that can provide technical details
            --// that could be useful for exploiting the database)
            HTP.prn( 'StreamFile() failed with '||SQLERRM(SQLCODE) );
    end;
    / On Windows, IE can be used interactively to copy the file across. For automation (via PowerShell or console jobs), use a command like tool like wget* to download the file.
    If you do not want to use SQL or PL/SQL as the file copy mechanism, then please close this thread (mark as answered) and take your question to an appropriate forum.
    <i>* - see http://gnuwin32.sourceforge.net/packages/wget.htm</i>

  • HELP - BLUETOOTH FILE TRANSFER FROM PC TO MACBOOK NOT WORKING....

    Hi,
    My Macbook is paired to my PC and both PC and Macbook can see each other...
    The Macbook can also see files in my PC and can directly "Get file"
    I can even "Send file" to my PC from the Macbook
    I can even do other tasks like deleting files from my PC etc from my Macbook...
    But When I try to send a file from my PC to my Macbook the transfer never works - The PC says: "Could not connect to the remote device"
    Help plz...

    On your dock or in applications in finder is an application called system preferences. Open it. Then click bluetooth. Go under sharing and set your bluetooth sharing options.
    Then under the system preferences there is another item called sharing. Check your firewall settings there.
    Mort

  • Disable Bluetooth File Transfer - Windows 7

    How do I disable Bluetooth file transfer for Windows 7? I am planning to see if it can be done via Group Policy (custom adm or GPP) or by creating a power shell script.
    I read the existing questions here but its getting me nowhere. http://social.technet.microsoft.com/Forums/office/en-US/0a04b41b-05a8-4d7b-9ae0-212137cc4af7/restrict-bluetooth-file-transfer?forum=winserverGP
    http://social.technet.microsoft.com/Forums/office/en-US/578763f6-9c62-4900-915d-056354befb15/how-to-disable-bluetooth-file-transfers-via-group-policy?forum=winserverGP
    Thanks in advance.
    Dash

    Hi,
    For Bluetooth devices, try this :
    http://technet.microsoft.com/en-us/library/dd252791.aspx.
    If it doesn't work, You may also try to use GPP Services to disable the Bluetooth Support Service (BthServ).
    Kate Li
    TechNet Community Support

  • Nokia lumia 610 ringtone,and bluetooth file transf...

    i have nokia 610 and i have donwloaded a ringtone from marketplace i mean song and i want to set it as my ringtone 
    what should i do in order to set that song as my ringing tone pls tell
    and more thing if i want to send any file to other mobile do i need a special software or anything like that 
    thank you
    Solved!
    Go to Solution.

    Once you have downloaded and saved the new ringtone, you can set it as your ringtone by going to Settings>Ringtones&Sounds>Ringtone, Scroll to the top because this is where you will find all your downloaded ringtone. Just select the one you want to use.
    Your Lumia 610 does not support bluetooth file transfer for the moment. However, this feature will be added with the next WP7.8 update which is due soon. In the mean time you can transfer files to other phones by using Skydrive or by emailing. 

  • Ipod touch bluetooth file transfer

    I recently asked about file transfer from an ipod touch to my Mac Mini (Lion 10.7.3) and the answer was it could not be done.  I am just an old retired mainframe systems programmer (well, Sun Solaris also) but I have dealt with a LOT of data transfer methods between computers with different architectures.  So my next question is DUH! why can't you do file transfers between an ipod touch and a mac  via Bluetooth ??!!

    Because Apple has chosen not to make this a feature of the ipod/iphone/ipad.

  • Getting error in file transfer from one system to another system

    Hi All
    One of my client (User) wants to transfer his file from  SAP R/3 System SAP XI system. He is using a customize t-code ZFIR0325 (Trial balance report transfer to Hyperian System). When user execute the  program he is getting error "File Transfer Failed due to Network chk with Admin"
    I checked with Network team but they said it is okay from their side. We also check for authorization but there is no issue regarding authorization.
    Name of File Path of Aplication Server, XI destinaion and XI directory entered by user is correct.
    We also put authorization trace in XI System to RFC User (In file transfer from one system to another system this RFC User is geeing Used) but no authorization issue was found.
    Please help me to resolve this problem. I any detail require I will provide the same.

    Guruprasad Wrote:
    He is using a customize t-code ZFIR0325 (Trial balance report transfer to Hyperian System).
    We also put authorization trace in XI System to RFC User (In file transfer from one system to another system this RFC User is geeing Used) but no authorization issue was found.
    Firstly, no one in the community can answer on how a custom transcation code and a program associated with it behaves.
    If there are no authorization issues in the system, you have to look at the exact error message. Look if your XI system is allowed to receive files from the SAP system.
    Unfortunately, you should do some more home work before putting your question here. If everything is fine and configured correctly, then the issue might be with the program.
    Regards,
    Raghu

  • I just installed photoshop ele. ver 11 and my file transfer from version 10 failed, what do I do?

    I just installed photoshop ele. ver 11 and my file transfer from version 10 failed, what do I do?

    I was transering my album from version 10 to version 11.  I got on-line help and I and all set.  Thanks for getting back to me.  Dave
    Scott V <[email protected]> wrote:
    Scott V http://forums.adobe.com/people/Scott+V created the discussion
    "Re: I just installed photoshop ele. ver 11 and my file transfer from version 10 failed, what do I do?"
    To view the discussion, visit: http://forums.adobe.com/message/5105851#5105851

  • File transfer from one system to another system

    How can I use ODI to do file transfer from one system to another system ?
    Do I need to create Models or I have to simply use Jython procedure/script to do the same ? Kindly help. I have done DB to DB using Knowledge Modules. But I am not able to understand this piece.
    Kindly help.

    If you are asking about file transfer use ODI FTP tool to do it. If you are asking about file transformation..
    You can not do file transformation directly in ODI like we do in any other ETL tool like data stage or Ab Initio.. File transformation in ODI can be done using staging database in an interface(i.e ELT way).
    Create source and target data stores for the file to be transformed. Create an interface using File to SQL LKM to load the file into staging database and then use SQL to File Integration knowledge module.
    Thanks,
    D

  • Original File transfer from G4 to new G5

    About to buy G5 20" this week -
    Apple Store says they can do file transfer from my imac G4 to new G5 for me at time of purchase, but cannot transfer any 3rd party apps (Photoshop, Ill, DreamW, Acrobat, Word, etc.). However in users manual it looks like if I do it originally myself with SetUp assistant, I can include these apps -- but perhaps not later using Migration Assistant after Apple Store has used the SetUp assistant. I'd like to avoid having to re-install all my apps if possible.
    Also, If I do it SetUp Assistant myself, is it best to use Firewire cable vs. Ethernet?
    Any intelligence/advice would be appreciated.
    thanks

    I would just drag app files over via Firewire (which is superior over ethernet).
    Here is how it is done:
    http://docs.info.apple.com/article.html?artnum=58583

  • Slow file transfer from pc to mac

    I've got two windows xp home pcs and two macs (a mac mini and an ibook). The windows PCs are connected to the wired network and both macs are wireless.
    When I try to initiate a file transfer on either pc to either mac, the file transfer is really slow (slower than I think it should be). It's very annoying.
    Does anyone have any idea what causes this and how to fix it? Thanks.

    I've got some more information: when Windows NT initiates a file transfer to the mac using windows file sharing, the transfer speed is fast. It's XP that has the problem. Is this a windows XP problem or a Mac OS X problem? Last time I checked, the macs were both able to communicate with each other just fine.
    Ok, here's the transfer speeds approx: a 100mb file is normally quickly transferred in about a minute. When the windows xp machine tries to send to the mac, the transfer will take many times longer to complete.
    Can anyone help with this problem? Anyone at all? Please? I'm annoyed about this issue.
    So, what's the fix? Please. Thanks.

  • I have a playlist that will not transfer from my Itunes on my laptop to my IPhone 4S during synching. Recommendations please!

    I have a playlist that will not transfer from my Itunes on my laptop to my IPhone 4S during synching. Recommendations please!

    Regular or smart?
    You may need to remove any references to Podcasts, e.g. use "Playlist is Music" instead of "Podcast is false".
    tt2

  • Hide the Bluetooth File Transfer Window

    Can anyone give me any clues as to how I could stop the File transfer WIndow appearing when I Bluetooth an image from phone to my Mac?
    It is the Obex Agent window. That says Incoming File etc
    It will appear over any open applications right in the centre of the screen. I have tried instantly hiding it when it appears with Applescript but this is not quite good enough for my purposes.
    Any idea how I can ideally disable it. Or at least move its location.
    Or a better place to ask for help?
    Thanks
    Gavin

    Apple aren't here. You won't get a response from Apple on this user-to-user help forum.
    Although speculation on Apple policies is not permitted on this forum, it has been previously speculated frequently, that the reasons for not allowing Bluetooth file transfers are:
    1) Bluetooth is too slow for transferring multi-megabyte / gigabyte media files that iOS devices typically store. There are much faster ways of transferring files, not limited by arbitrary distances Bluetooth is.
    2) Allowing file transfers would allow illegal sharing of copyrighted music and video files. Apple has a duty to protect such files from easy sharing due to agreements with the copyright holders for whom they sell this copyrighted content in the iTunes Store.

Maybe you are looking for