Slashdot Mirror


Windows 10's Version of AirDrop Lets You Quickly Share Files Between PCs (theverge.com)

Microsoft is testing its "Near Share" feature of Windows 10 in the latest Insider build (17035) today, which will let Windows 10 PCs share documents or photos to PCs nearby via Bluetooth. The Verge reports: A new Near Share option will be available in the notification center, and the feature can be accessed through the main share function in Windows 10. Files will be shared wirelessly, and recipients will receive a notification when someone is trying to send a file. Microsoft's addition comes just a day after Google unveiled its own AirDrop-like app for Android.

3 of 108 comments (clear)

  1. Nonsense by Anonymous Coward · · Score: 4, Insightful

    I used to have my "Airdrop-like" feature decades ago, simply by clicking on "share via bluetooth", until phone manufacturers (or OS companies) decided to ban sharing stuff over bluetooth. Which is the same Apple has, with the exception that they combine bluetooth and wifi (and I guess their own API) to pretend they did something new/unique.

    Computer monkeys at Google and Microsoft must be really boring if they are "implementing" airdrop. Just stop f*cking messing with the information users are allowed to share (allowed... ha... it's supposed to be my bloody phone!).

  2. A solution searching for an application by Opportunist · · Score: 4, Insightful

    Or may I say, a security hole waiting to be used?

    Quite frankly, this strikes me as one of those things that have very limited usefulness with a wealth of exploit potential behind it. What is the scenario for the use of this feature? When you have a meeting and want to exchange documents? What company does NOT have a wireless AP in their conference rooms these days? Oh, when you have to exchange documents with someone outside your company who you can't let on your WiFi for security reasons? Use an USB Stick. If you're security conscious enough to not let a stranger onto your WiFi that is administered and controlled by your IT staff, you should definitely be security conscious to NOT let some marketing or management computer illiterate make decisions about sharing stuff on his laptop, the same laptop that probably contains the marketing strategy or the financial data for the next quarter, most likely in the same folder as the document that should be handed over.

    So what sensible application is there for this security-hole-in-the-making?

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  3. Re:IR link by Hal_Porter · · Score: 4, Informative

    Bluetooth file transfer is also pretty mature at this point. I've used it between Windows, Mac, and FreeBSD machines and with old Nokia and new Android phones (it probably works with iOS, though it didn't in the original iPhone). Pairing is a bit annoying, but once that's done it's basically drag and drop.

    ...

    I'm quite annoyed that Apple, Microsoft, and Google are all developing independent protocols for this though. I want an open protocol that works with all of my devices, not a mess of protocols where I can use one between my laptop and Android phone, one between my laptop and iPad, none between my iPad and Android phone, a different one between Windows devices, and so on.

    Not sure why we need a new protocol when we've got OBEX.

    https://en.wikipedia.org/wiki/...

    Like you say it's supported by literally everything.

    My Galaxy S5, Windows machine and Mac all support it. Even old feature phones did - in fact that's where it was invented.

    As far as pairing goes it's not too bad now. With NFC you can tap to pair, though I've never owned two devices that support it. Even without it you can fiddle around in the GUI once to pair and then click OK on both devices - the PINs are synched automatically. It's about the minimum security that is viable to stop drive by downloads.

    I.e this is a solved problem and there's no need for a new protocol. If it is more convenient it will necessarily be less secure. And a vendor specific protocol is obviously not going to be much use with a heterogeneous bunch of devices.

    Also if you want more speed Android, Mac, Windows and Linux/BSD all support SMB networking over Wifi. So for a large file you can just copy to a mutually visible network share.

    --
    echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;