├── .github └── FUNDING.yml ├── SamsungQuickShare4All.bat ├── LICENSE └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [obrobrio2000] 4 | custom: ['https://www.paypal.com/donate?hosted_button_id=LBTJ3SNU99FUA'] 5 | -------------------------------------------------------------------------------- /SamsungQuickShare4All.bat: -------------------------------------------------------------------------------- 1 | set "params=%*" && cd /d "%~dp0" && pushd "%~dp0" && ( if exist "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs" ) && fsutil dirty query %systemdrive% 1>nul 2>nul || ( echo Set UAC = CreateObject^("Shell.Application"^) : UAC.ShellExecute "cmd.exe", "/k cd ""%~sdp0"" && %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" && "%temp%\getadmin.vbs" && exit /B ) 2 | reg add "HKLM\HARDWARE\DESCRIPTION\System\BIOS" /v SystemProductName /t REG_SZ /d "NP950QDB-KA1US" /f 3 | reg add "HKLM\SYSTEM\CurrentControlSet\Enum\PCI\VEN_1002&DEV_6798&SUBSYS_30001002&REV_00\4&f1d09f1&0&0010" /v HardwareID /t REG_MULTI_SZ /d "PCI\VEN_1002&DEV_6798&SUBSYS_30001002&REV_00\0PCI\VEN_1002&DEV_6798&SUBSYS_30001002\0PCI\VEN_1002&DEV_6798&CC_030000\0PCI\VEN_1002&DEV_6798&CC_0300" /f 4 | regedit /s "powershell.exe "(new-object System.Net.WebClient).DownloadFile('https://github.com/obrobrio2000/Samsung-Quick-Share-4-All/releases/download/v0.1.1/DriverCheckBypass.reg','DriverCheckBypass.reg'); rm DriverCheckBypass.reg -r -f"" 5 | copy "SamsungQuickShare4All.bat" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" /Y 6 | exit 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Giovanni Magliocchetti 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Important update 2022-04-26, click here to read](https://forum.xda-developers.com/t/samsung-quick-share-4-all-use-it-on-non-samsung-pcs.4347077/post-86802355) 2 | 3 | --- 4 | 5 | # SamsungQuickShare4All 6 | This tiny batch script makes Samsung Quick Share work on non-Samsung Windows PCs by spoofing a registry value that the program checks when opening. 7 | 8 | ## Usage 9 | Download the script [here](https://github.com/obrobrio2000/Samsung-Quick-Share-4-All/releases/download/v0.1.1/SamsungQuickShare4All.bat) and just run it (it could ask for admin rights). You'll only need to run it once, after that it'll automatically launch itself after every startup/reboot. 10 | 11 | ## How to download Quick Share 12 | If you want the latest Store version go [here](https://store.rg-adguard.net/), paste the [store link](https://www.microsoft.com/en-us/p/quick-share/9pctgdfxvzlj) of the app, click the checkmark, scroll down, download the one named SAMSUNGELECTRONICSCoLtd.SamsungQuickShare_xxxxxxxx_neutral_xxxxxxxxxxxxxxx.msixbundle (the only one that ends with .msixbundle), then open it and install it. You won't need to download every update like this, it'll automatically update from the Microsoft Store when there is a new version. 13 | 14 | Remember that your phone's screen needs to be on and unlocked to be discoverable from your PC (unfortunately it's a limitation of Quick Share itself)! 15 | 16 | ## Troubleshooting 17 | - All should work fine just by running the .bat file, but if you're having issues try applying DriverCheckBypass.reg (just run the file, then Yes and then Ok), especially if your PC doesn't have an Intel AX wireless adapter (e.g. Intel AC/Broadcom/Realtek/Marvell etc.). 18 | - Keep in mind that latest versions from the Store could contain patches to this method, so if you encounter any issue download [this older version here](https://mega.nz/file/9B4myBTS#iWj3krlMOrKTnTPfEw_qH93RoddJydzxpnPVeAgPKiQ). 19 | - To remove the script at boot, go to "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp" and delete "SamsungQuickShare4All.bat". 20 | 21 | ## Demo (Lenovo Yoga C940 <-> Note20 Ultra) 22 | https://user-images.githubusercontent.com/62136803/137240369-9c77621b-19ea-4893-9c69-e9b03747d89e.mp4 23 | 24 | ## Disclaimer 25 | Keep in mind that Samsung could fix this any time. So, if it doesn't work, probably they have fixed it. However, as of 11/7/2021, I can confirm that it works perfectly (doesn't display the unsupported device error and file sharing works both sending and receiving), tested on Lenovo Yoga C940 with Intel AX201 wireless adapter (support for other adapters cannot be guaranteed). Also, I'm not responsible for any loss or damage. 26 | 27 | ## XDA thread [here](https://forum.xda-developers.com/t/samsung-quick-share-4-all-use-it-on-non-samsung-pcs.4347077/) 28 | --------------------------------------------------------------------------------