[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. Xadiaris

    Xadiaris MDL Novice

    Apr 23, 2008
    35
    11
    0
    replace this

    for /F "delims=" %%i in (%CD%/TWV.TXT) do set content=!content! %%i

    with

    for /F "delims=" %%i in (TWV.TXT) do set content=!content! %%i

    and report result thanks.
     
  2. rvducati999

    rvducati999 MDL Novice

    Jan 23, 2013
    31
    11
    0
    #262 rvducati999, Aug 31, 2015
    Last edited: Aug 31, 2015
    Hello boys :)

    Where is my mistake or my problem ?

    This tool is fantastic and very useful, but since vers. 1.5, I can't launch it :(

    If I launch it simply, I have a little windows, clic OK and ....... nothing

    If I launch it in admin mode, I have a quick splash and nothing too :confused:

    Did somebody have the same problem or I'm the only one ????

    Thanks in advance

    PS : I test the Xadiaris' method posted before and it's the same result
     
  3. Xadiaris

    Xadiaris MDL Novice

    Apr 23, 2008
    35
    11
    0

    can you try to run from desktop? and let me know the result thanks.
     
  4. chupektong

    chupektong MDL Novice

    Oct 31, 2010
    1
    0
    0
    Hello Yasser,
    Thank you for your tool.
    I was using your tool V1.6 to disable Telemetry and Block Window telemetry server.

    If I want to use new version 2.0 for disabling telemetry and block window telemetry, should I first enable telemetry and unblock window telemetry server using V1.6

    Please assist.
     
  5. rvducati999

    rvducati999 MDL Novice

    Jan 23, 2013
    31
    11
    0
    Thanks for your answere but it's nearly the same.

    I got a little window "requesting for updates" and ''erreur inattendue" (unexpected error) I'm french :)

    What am I done wrong ??
     
  6. slackeritguy

    slackeritguy MDL Member

    Jun 27, 2013
    163
    25
    10
    Just run 2.0 normally.

    Someone correct me if I'm wrong but reg keys or whatever will just get overwritten with the same value.
     
  7. MrTweakFreak

    MrTweakFreak MDL Junior Member

    Jul 31, 2009
    91
    13
    0

    That did it :)

    I actually could've figured this out, myself.. as the script already does a pushd "%CD%" and CD /D "%~dp0" to get the correct working directory if the script has been run with elevated/admin privileges, which changes the directory to %SystemRoot%\System32.

    Btw, the script keeps notifying me about an update each time i run it. But 2.00 is still the latest =P
     
  8. lavan_joy

    lavan_joy MDL Novice

    Aug 11, 2011
    45
    17
    0
    You must be connected to the internet before running the script. Otherwise it closes automatically.
     
  9. MrTweakFreak

    MrTweakFreak MDL Junior Member

    Jul 31, 2009
    91
    13
    0
    Mine closed while i was connected, but for a different reason (see my post above yours)
     
  10. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    do you have reg entries for this !!
     
  11. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,269
    1,183
    60
    #272 TairikuOkami, Sep 1, 2015
    Last edited: Sep 1, 2015
    There is only that command, it will uncompress system files, if they are compressed, otherwise it will report, that 0 zeros files were uncompressed.
     
  12. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    i will add it to the script
    ======
    can anyone give me the default values of this entries

    Reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control" /v "WaitToKillServiceTimeout" /t REG_SZ /d "1000" /f
    Reg.exe add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v "StartupDelayInMSec" /t REG_DWORD /d "0" /f
     
  13. Yasser Da Silva

    Yasser Da Silva MDL Senior Member

    Mar 15, 2015
    499
    2,567
    30
    check the 4th line in the script and change it to : "set CurV=2.00"
     
  14. white_were_wolf

    white_were_wolf MDL Novice

    Nov 20, 2013
    17
    14
    0
    It would be good if the script could check for internet connectivity and skip the update check if there is no internet available rather than simply exit.
     
  15. white_were_wolf

    white_were_wolf MDL Novice

    Nov 20, 2013
    17
    14
    0
    This should work (just use the URL for Google or Microsoft in place of <some web site>:

    ping <some web site> -n 1 -w 1000
    if errorlevel 1 goto NoInternet

    rem We have internet, check for script update
    <do update check>

    :NoInternet
    rem No internet, can't check for update
    <goto Main menu>