Giter VIP home page Giter VIP logo

onedrive-uninstaller's People

Contributors

jaredcabot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

onedrive-uninstaller's Issues

Windows 20H2

Using Windows 20H2 x64

I checked C:\Windows\SysWOW64 and 3 file still showing: OneDrive (.ico) / OneDriveSettingSyncProvider.dll / OneDriveSetup.exe

Maybe i need to reboot for it to completed remove as not show in BAT to ask to reboot

NOTE: not sure if this also part of OneDrive as i see 2 file ONE etc: OneCoreCommonProxyStub.dll / OneCoreUAPCommonProxyStub.dll

Is there any way to get back my deleted files?

I lost all my files because of some stupid forum user. I looked at OneDrive, but my text files on the desktop are completely missing. Is there really a way I can bring it back? I tried a software called Recuva but it didn't work.

Don't Work

Ran the batch as admin and rebooted. The icon is still there and the login window appears. Tested on Vmware and my primary operating system.

image7

Don't Work Part 2

After a reboot, the One Drive icon I had removed from the system try is back. 0 steps forward, 2 steps back.

Test for registry key doesn't work

The test IF EXIST {RegKey} doesn't work. Because the syntax of a registry key path is exactly the same as the syntax of a directory path, the batch processor looks for a subdirectory and file in the current path with the specified name. No error is thrown since the syntax is valid; it just specifies the wrong thing to look for. Since there is no such path\file, IF EXIST does not find it, and thus does not execute the conditional code following.

To properly test if a registry key exists, use the following form:
FOR /F "tokens=2*" %%P IN ('REG QUERY "regkey" /V "valuename" ^| FIND /I "REG_"') DO something
You can omit /V "valuename" if you just want to test for a key and not a specific value in that key.

However, if you just want to delete a key or value if it exists, you don't need to test if it exists. REG DELETE can't delete something that doesn't exist. It just displays a "not found" error. If you don't want to see that error message just send it to the Null device, like this:
REG DELETE "regkey" /V "valuename" /F 2>NUL:
This actually runs a little faster than testing if it exists first, because testing if the key exists first requires an additional call to REG plus a call to FIND.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.