[Script] Win 10 Toggle Tweaker (V4.0) -Official thread-

Discussion in 'Windows 10' started by Yasser Da Silva, Aug 12, 2015.

Tags:
?

How helpful is this Windows 10 Tweaker for you !

  1. 10/10 / Very handy (Must have tweaker)

    74.6%
  2. 5/10 / It's good.

    20.7%
  3. 0/10 :( / Not helpful at all

    4.7%
  1. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    #1 Yasser Da Silva, Aug 12, 2015
    Last edited: Oct 29, 2018
  2. yro

    yro MDL Addicted

    Jul 26, 2009
    633
    125
    30
    instead of script, what about an exec that will handle all the scripts? it has more appeal and with an interface could be more easy for simple users... just a idea..
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    you mean to program it with like VB.Net
    good idea but it takes time
    and it's not easy to apply these changes via a programming language
     
  4. fLOW.

    fLOW. MDL Senior Member

    Jul 28, 2009
    475
    571
    10
    #4 fLOW., Aug 13, 2015
    Last edited by a moderator: Apr 20, 2017
    In Windows Update session you have this:

    Code:
    IF "%input%"=="1" (Goto U1)
    and then you have :1U instead of :U1. That makes the script close when you choose some option from the Windows Update session.

    Anyway good toogle script. You could also add the option to only disable OneDrive alongside the other option you already have. This is the code you need to add to disable/enable it:

    Code:
    reg add "HKLM\Software\Policies\Microsoft\Windows\OneDrive" /v "DisableFileSyncNGSC" /t REG_DWORD /d "1" /f     -disabled
    reg add "HKLM\Software\Policies\Microsoft\Windows\OneDrive" /v "DisableFileSyncNGSC" /t REG_DWORD /d "0" /f     -enabled
     
  5. nkniesche

    nkniesche MDL Novice

    Jul 29, 2015
    4
    0
    0
    Just to let you know:
    I opened this, clicked run, clicked yes on the admin box thing, and the bat file ran on an infinite loop, still saying "asking for admin" or whatever. I signed out...But the second time, it worked. I'm not sure if you want to address that infinite loop thing, it might have just been my computer.

    But anyways, everything else worked, thanks for the amazing script!
     
  6. compgen_1534

    compgen_1534 MDL Addicted

    Jul 26, 2015
    510
    279
    30
    Not just you. My computer went bizarre for a computer of minutes till it finally stopped the loop :D
     
  7. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,729
    982
    180
    I don't like scripts. I never know what founded inside.
    Best thing is registry tweaks.
     
  8. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,172
    1,055
    60
    I share the feeling, I disable powershell as well as vbs for security purposes, but it is still a nice tool, took a lot of work.
    If you look at it, most of them are just registry entries applied via scripts, so they can be extracted, if you want some.
     
  9. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    #10 Yasser Da Silva, Aug 13, 2015
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Thanks I corrected this

    I have 2 Options to manage OneDrive :
    1.Remove Onedrive/Dropbox Icon in File explorer
    2.Disable and delete Onedrive

    I will add a page called "Manage Onedrive" and add in it these two plus the "Enable/Disable" option
     
  10. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    That's a code to tun the script as admin automatically
    it will loop until windows privileges
     
  11. scaramonga

    scaramonga MDL Senior Member

    Oct 27, 2012
    426
    261
    10
    You could also neaten up the script by using the 'call' function for all those message-boxes :)
     
  12. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    Great Idea, i added it to the script
    i will add some tweaks and upload the 1.1 version
     
  13. Spawn182

    Spawn182 MDL Novice

    Jun 15, 2008
    26
    4
    0
    Thanks for your efforts. I like this script, because I can look into the source and see what it is doing. Would not like to let an exe do the same, first I had to start it with admin privileges and than it could do everything and second I like to see what's done to my system.

    The other idea would be some kind of tweak manager, where you just drop the reg(tweak) files in a folder and if you start the manager you get a nice gui :) So it would be easy to add my own tweaks and if all this is accessible via an ini I can quickly use all the patches on a new system or in some kind of deployment. But me would like to see the manager as a script too.

    Who needs a GUI, but maybe that's because I started with MS-Dos and still like CMD/Power Shell as my favourite tool.
     
  14. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    Feel free to put suggestions in comments
     
  15. drakulaboy

    drakulaboy MDL Novice

    Jul 17, 2015
    25
    16
    0
    @Yasser Da Silva, can you please add reg tweak for "remove and hide the Network icon from Windows 10 File Explorer", can't put links, i don't have enough posts, but the tutorial is on winaero site, thank you
     
  16. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    I tried to add it before
    but it need to take admin privileges to change the value
    and i didn't find a way to take admin rights with BAT or VBS or other scripts like PS1
    any one have any idea how to do that !!!