[Guide]Way to Disable Keylogger/ Telemetry v3.55

Discussion in 'Windows 10' started by LiteOS, Oct 9, 2014.

Thread Status:
Not open for further replies.
  1. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    #241 murphy78, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    Hmmm... having trouble getting the route add reject version to work on 10 tp.
    It seems to be ok if you do:
    Code:
    route add -p 69.39.117.230 0.0.0.0
    you need the -p for persistent or it will disappear when you reinitialize your network or reboot.

    route delete works fine.
     
  2. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    #244 murphy78, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    Telemetry enable/disable build 9841 v2 prototype cmd script

    OK I seem to have all my bits functioning as intended.
    Changes from v1:
    hosts add/remove lines (null route a couple numeric ip address parents)
    cert disallow add/delete
    added a return to menu option on quit though it should be noted that if you mod the registry with the enable or disable, a restart will be required.

    I've left all the various options as their own menu choice so that people can use this to identify which changes are necessary.

    Here's the actual script. The 7z file contains the 2 extra certs from deagles' post:
    Code:
    @ECHO OFF
    pushd "%~dp0" & cd /d "%~dp0"
    :elevate permission line
    (NET FILE||(powershell -command Start-Process '%0' -Verb runAs -ArgumentList '%* '&EXIT /B))>NUL 2>NUL
    
    
    :color and title
    color 1f
    title W10TP build 9841 Telemetry disable/enable prototype v2 script -deagles and murphy78
    
    
    :MAINMENU
    CLS
    ECHO ===============================================================================
    ECHO.                                 MAIN MENU
    ECHO ===============================================================================
    ECHO.        C. - ^(C^)ert Revoke Enable.
    ECHO.        D. - ^(D^)nable Telemetry tracking.
    ECHO.        E. - ^(E^)nable Telemetry tracking and restore defaults.
    ECHO.        H. - ^(H^)osts file add/block telemetry servers.
    ECHO.        R. - ^(R^)estore the default Cert status.
    ECHO.        U. - ^(U^)nblock the hosts file telemetry servers.
    ECHO.        Q. - ^(Q^)uit.
    ECHO ===============================================================================
    choice /c cdehruq /n /m "Choose a menu option, or Q to Quit: "
    SET ERRORTEMP=%ERRORLEVEL%
    IF %ERRORTEMP% EQU 1 (GOTO :SelectionC)
    IF %ERRORTEMP% EQU 2 (GOTO :SelectionD)
    IF %ERRORTEMP% EQU 3 (GOTO :SelectionE)
    IF %ERRORTEMP% EQU 4 (GOTO :SelectionH)
    IF %ERRORTEMP% EQU 5 (GOTO :SelectionR)
    IF %ERRORTEMP% EQU 6 (GOTO :SelectionU)
    IF %ERRORTEMP% EQU 7 (GOTO :ABORT)
    GOTO :MAINMENU
    
    
    :SelectionC
    ECHO ===============================================================================
    Echo.              Adding security certs to the disallow list:
    ECHO ===============================================================================
    
    
    certutil -addstore -f "Disallowed" "%~dp0msitwww2.crt" >NUL 2>NUL
    IF %ERRORLEVEL% NEQ 0 (
    echo Encountered errors adding msitwww2.crt to the Disallowed list
    pause&goto :MAINMENU
    ) else (
    echo msitwww2.crt added to the Disallowed list success
    )
    
    
    certutil -addstore -f "Disallowed" "%~dp0MicSecSerCA2011_2011-10-18.crt" >NUL 2>NUL
    IF %ERRORLEVEL% NEQ 0 (
    echo Encountered errors adding MicSecSerCA2011_2011-10-18.crt to the Disallowed list
    pause&goto :MAINMENU
    ) else (
    echo MicSecSerCA2011_2011-10-18.crt added to the Disallowed list success
    )
    ECHO ===============================================================================
    echo Press any key to return to the menu
    pause>NUL 2>NUL
    goto :MAINMENU
    
    
    :SelectionD
    ECHO ===============================================================================
    Echo.              Setting Telemetry registry items to disabled status:
    ECHO ===============================================================================
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" "Disabled" 1
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" "DisableAutomaticTelemetryKeywordReporting" 1
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" "TelemetryServiceDisabled" 1
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack\TestHooks" "DisableAsimovUpload" 1
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\PerfTrack" "Disabled" 1
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SQMClient\Windows" "CEIPEnable" 0
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener" "Start" 0
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{22FB2CD6-0E7B-422B-A0C7-2FAD1FD0E716}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{22FB2CD6-0E7B-422B-A0C7-2FAD1FD0E716}" "Enabled" 0)
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{331C3B3A-2005-44C2-AC5E-77220C37D6B4}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{331C3B3A-2005-44C2-AC5E-77220C37D6B4}" "Enabled" 0)
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{44345799-E748-4607-9ACF-35306808422C}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{44345799-E748-4607-9ACF-35306808422C}" "Enabled" 0)
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{96F4A050-7E31-453C-88BE-9634F4E02139}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{96F4A050-7E31-453C-88BE-9634F4E02139}" "Enabled" 0)
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{DBE9B383-7CF3-4331-91CC-A3CB16A3B538}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{DBE9B383-7CF3-4331-91CC-A3CB16A3B538}" "Enabled" 0)
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DiagTrack" "Start" 4
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmwappushsvc" "Start" 4
    ECHO ===============================================================================
    Echo.           No errors were reported by the system, going to reboot...
    ECHO ===============================================================================
    GOTO :QUIT
    
    
    :SelectionE
    ECHO ===============================================================================
    Echo.              Setting Telemetry registry items to enabled status:
    ECHO ===============================================================================
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" "Disabled" 0
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" "DisableAutomaticTelemetryKeywordReporting" 0
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" "TelemetryServiceDisabled" 0
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack\TestHooks" "DisableAsimovUpload" 0
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\PerfTrack" "Disabled" 0
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SQMClient\Windows" "CEIPEnable" 1
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener" "Start" 1
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{22FB2CD6-0E7B-422B-A0C7-2FAD1FD0E716}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{22FB2CD6-0E7B-422B-A0C7-2FAD1FD0E716}" "Enabled" 1)
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{331C3B3A-2005-44C2-AC5E-77220C37D6B4}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{331C3B3A-2005-44C2-AC5E-77220C37D6B4}" "Enabled" 1)
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{44345799-E748-4607-9ACF-35306808422C}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{44345799-E748-4607-9ACF-35306808422C}" "Enabled" 1)
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{96F4A050-7E31-453C-88BE-9634F4E02139}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{96F4A050-7E31-453C-88BE-9634F4E02139}" "Enabled" 1)
    reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{DBE9B383-7CF3-4331-91CC-A3CB16A3B538}">NUL 2>NUL
    IF %ERRORLEVEL% EQU 0 (call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\{DBE9B383-7CF3-4331-91CC-A3CB16A3B538}" "Enabled" 1)
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DiagTrack" "Start" 2
    call :RegistryAddDword "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmwappushsvc" "Start" 2
    ECHO ===============================================================================
    Echo.           No errors were reported by the system, going to reboot...
    ECHO ===============================================================================
    GOTO :QUIT
    
    
    :SelectionH
    ECHO ===============================================================================
    Echo.             Adding telemetry blocks to the hosts file:
    ECHO ===============================================================================
    call :Add-Hosts-Line-Function 0.0.0.0 vortex.data.microsoft.com
    call :Add-Hosts-Line-Function 0.0.0.0 settings-sandbox.data.microsoft.com
    call :Add-Hosts-Line-Function 0.0.0.0 vortex-sandbox.data.microsoft.com
    call :Add-Hosts-Line-Function 0.0.0.0 corpext.msitadfs.glbdns2.microsoft.com
    call :Add-Hosts-Line-Function 0.0.0.0 cdnjs.cloudflare.com.cdn.cloudflare.net
    call :Add-Hosts-Line-Function 0.0.0.0 compatexchange.cloudapp.net
    call :Add-Hosts-Line-Function 0.0.0.0 hostedocsp.globalsign.com
    call :Add-Hosts-Line-Function 0.0.0.0 cdp1.public-trust.com
    call :Add-Hosts-Line-Function 0.0.0.0 cs1.wpc.v0cdn.net
    call :Add-Hosts-Line-Function 0.0.0.0 a-0001.a-msedge.net
    call :Add-Hosts-Line-Function 0.0.0.0 sls.update.microsoft.com.akadns.net
    call :Add-Hosts-Line-Function 0.0.0.0 fe2.update.microsoft.com.akadns.net
    route add -p 65.39.117.230 0.0.0.0>NUL 2>NUL
    if %ERRORLEVEL% NEQ 0 (echo error adding null route to: 65.39.117.230&pause)
    route add -p 134.170.30.202 0.0.0.0>NUL 2>NUL
    if %ERRORLEVEL% NEQ 0 (echo error adding null route to: 134.170.30.202&pause)
    call ipconfig /flushdns>NUL
    echo Press any key to return to the Main Menu
    pause>NUL&goto :MAINMENU
    
    
    :SelectionR
    ECHO ===============================================================================
    Echo.             Deleting security certs from the disallow list:
    ECHO ===============================================================================
    
    
    certutil -delstore "Disallowed" "%~dp0msitwww2.crt" >NUL 2>NUL
    IF %ERRORLEVEL% NEQ 0 (
    echo Encountered errors deleting msitwww2.crt from the Disallowed list
    pause&goto :MAINMENU
    ) else (
    echo msitwww2.crt deleted from the Disallowed list success
    )
    
    
    certutil -delstore "Disallowed" "%~dp0MicSecSerCA2011_2011-10-18.crt" >NUL 2>NUL
    IF %ERRORLEVEL% NEQ 0 (
    echo Encountered errors deleting MicSecSerCA2011_2011-10-18.crt from the Disallowed list
    pause&goto :MAINMENU
    ) else (
    echo MicSecSerCA2011_2011-10-18.crt deleted from the Disallowed list success
    )
    ECHO ===============================================================================
    echo Press any key to return to the menu
    pause>NUL 2>NUL
    goto :MAINMENU
    
    
    :SelectionU
    ECHO ===============================================================================
    Echo.             Removing telemetry blocks to the hosts file:
    ECHO ===============================================================================
    call :Remove-Hosts-Line-Function 0.0.0.0 vortex.data.microsoft.com
    call :Remove-Hosts-Line-Function 0.0.0.0 settings-sandbox.data.microsoft.com
    call :Remove-Hosts-Line-Function 0.0.0.0 vortex-sandbox.data.microsoft.com
    call :Remove-Hosts-Line-Function 0.0.0.0 corpext.msitadfs.glbdns2.microsoft.com
    call :Remove-Hosts-Line-Function 0.0.0.0 cdnjs.cloudflare.com.cdn.cloudflare.net
    call :Remove-Hosts-Line-Function 0.0.0.0 compatexchange.cloudapp.net
    call :Remove-Hosts-Line-Function 0.0.0.0 hostedocsp.globalsign.com
    call :Remove-Hosts-Line-Function 0.0.0.0 cdp1.public-trust.com
    call :Remove-Hosts-Line-Function 0.0.0.0 cs1.wpc.v0cdn.net
    call :Remove-Hosts-Line-Function 0.0.0.0 a-0001.a-msedge.net
    call :Remove-Hosts-Line-Function 0.0.0.0 sls.update.microsoft.com.akadns.net
    call :Remove-Hosts-Line-Function 0.0.0.0 fe2.update.microsoft.com.akadns.net
    route DELETE 65.39.117.230>NUL 2>NUL
    route DELETE 134.170.30.202>NUL 2>NUL
    ipconfig /flushdns>NUL
    echo Press any key to return to the Main Menu
    pause>NUL&goto :MAINMENU
    
    
    :RegistryAddDword
    IF %1 EQU "" echo No -1 data passed to RegAddDword function&pause&exit
    IF %2 EQU "" echo No -2 data passed to RegAddDword function&pause&exit
    IF %3 EQU "" echo No -3 data passed to RegAddDword function&pause&exit
    REG ADD %1 /v %2 /D %3 /T REG_DWORD /F>NUL 2>NUL
    IF %ERRORLEVEL% NEQ 0 echo There were errors reported during the Registry operation&pause&goto :EOF
    Echo Set %1 key named %2 with value %3: Success
    exit /b
    
    
    :ABORT
    :Your standard Thank you and goodbye screen
    ECHO ===============================================================================
    ECHO.                          EXITING MENU SCRIPT
    ECHO ===============================================================================
    Echo Press any key to exit...
    pause>NUL&goto :EOF
    
    
    :QUIT
    :Your standard Thank you and goodbye screen
    ECHO ===============================================================================
    ECHO.                          END OF THE LINE MATEY
    ECHO -------------------------------------------------------------------------------
    ECHO.        Would you like to (R)eboot, (S)hutdown, (M)ain Menu or (Q)uit?
    ECHO ===============================================================================
    choice /c rsmq /t 20 /d r /n /m "System will reboot after 20 seconds (R/S/M/Q): "
    IF %ERRORLEVEL% EQU 1 (Shutdown /r /t 0&exit)
    IF %ERRORLEVEL% EQU 2 (Shutdown /s /t 0&exit)
    IF %ERRORLEVEL% EQU 3 (goto :MAINMENU)
    IF %ERRORLEVEL% EQU 4 (goto :EOF)
    goto :EOF
    
    
    :Add-Hosts-Line-Function
    IF %1 EQU "" echo :Add-Hosts-Line-Function missing 1st parameter&pause&exit
    IF %2 EQU "" echo :Add-Hosts-Line-Function missing 2nd parameter&pause&exit
    
    
    :make copy to work with since system won't let you directly edit hosts file
    attrib -h -s "%WinDir%\System32\drivers\etc\hosts" >nul
    xcopy /chy "%WinDir%\System32\drivers\etc\hosts" "%TMP%" >nul
    
    
    for /f "delims=" %%h in ('type "%TMP%\hosts" ^| find /c /i "%2"') do (
    set "result=%%h" >nul
    )
    
    
    if "%result%"=="0" (
    >>"%TMP%\hosts" echo %1 %2
    echo %1 %2 added to hosts file
    del /q/f "%WinDir%\System32\drivers\etc\hosts" >nul
    move /y "%TMP%\hosts" "%WinDir%\System32\drivers\etc\hosts" >nul
    attrib +h "%WinDir%\System32\drivers\etc\hosts" >nul
    exit /b
    ) else (
    echo %2 already exists in hosts file
    del /q/f "%TMP%\hosts" >nul
    attrib +h "%WinDir%\System32\drivers\etc\hosts" >nul
    exit /b
    )
    ::end function
    
    
    :Remove-Hosts-Line-Function
    IF %1 EQU "" echo :Remove-Hosts-Line-Function missing 1st parameter&pause&exit
    IF %2 EQU "" echo :Remove-Hosts-Line-Function missing 2nd parameter&pause&exit
    
    
    :make copy to work with since system won't let you directly edit hosts file
    attrib -h -s "%WinDir%\System32\drivers\etc\hosts" >nul
    xcopy /chy "%WinDir%\System32\drivers\etc\hosts" "%TMP%" >nul
    
    
    for /f "delims=" %%h in ('type "%TMP%\hosts" ^| find /c /i "%2"') do (
    set "result=%%h" >nul
    )
    if "%result%" geq "1" (
    for /f "tokens=*" %%a in ('findstr /in ".*" "%TMP%\hosts"') do (
    echo %%a>>"%TMP%\l_1.x"
    )
    for /f "eol=# tokens=1,2 delims=:" %%a in ('findstr /i "%2" "%TMP%\l_1.x"') do (
    set stringlines=%%a
    )
    setlocal enabledelayedexpansion
    set /a "beforelines=stringlines-1"
    set /a "afterlines=stringlines+1"
    for /f "eol=# tokens=2* delims=:" %%a in ('findstr /in ".*" "%TMP%\l_1.x"') do (
    if %%a leq !beforelines! echo.%%b>>"%tmp%\l_2.x"
    if %%a geq !afterlines! echo.%%b>>"%tmp%\l_2.x"
    )
    endlocal
    del /q/f "%WinDir%\System32\drivers\etc\hosts" >nul
    move /y "%TMP%\l_2.x" "%WinDir%\System32\drivers\etc\hosts" >nul
    attrib +h "%WinDir%\System32\drivers\etc\hosts" >nul
    del /q/f "%TMP%\hosts" >nul
    del /q/f "%TMP%\*.x" >nul
    echo %2 successfully removed from hosts file
    exit /b
    ) else (
    echo %2 does not exist in hosts file
    del /q/f "%TMP%\hosts" >nul
    del /q/f "%TMP%\*.x" >nul
    attrib +h "%WinDir%\System32\drivers\etc\hosts" >nul
    exit /b
    )
    ::end function
    I've error-corrected an error-out portion of my hosts functions so that it won't delete the original hosts file unless it's going to move in a replacement. This will help if people use the functions out of order or something.

    Note: This script in particular will likely require heavy editing for future builds of win10tp.
    It is to be used as a framework for future efforts.
    It's a lot easier to edit an existing script than it is to write a whole new one from scratch.

    This is also not something you *NEED* to do to win10tp. It is just an effort to figure out how to control the data transfers going on. We have no idea if this will effectively block the keylogger data from being transferred or even collected. The purpose behind the script is to help diagnose the various methods. It could be as simple as adding the certs to block all the data transfers.. We don't know. Needs more testing...
     

    Attached Files:

  4. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
  5. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60
    #246 Mr Jinje, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
  6. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
  7. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    #249 s1ave77, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    Ok got both of those in. Anything else before I put the link for 1.07 in?
     
  9. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    #251 Smorgan, Oct 17, 2014
    Last edited: Oct 17, 2014
    Okies.

    @S1ave77 noted and corrected.
    @Jinjay noted and also corrected.


    1.08 - Tracking Wiz Prototype


    1.08
    -Fixed Function not executing correctly

    1.07
    -Set Powershell execution bypass on form load
    -Corrected Code Spelling error
    -Replaced 127.0.0.1 with 0.0.0.0
    -Corrected Code Curly Bracket missing

    The only hold up is how fast I can type the corrections into the script :D

    I've very new to Powershell which is the hold up however I try to learn fast.
     
  10. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Still the 'dmwappushsvc (dmwappushsvc)' cannot be configured due to the following error: Access is denied' error persits.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    I've been trying since I posted 1.07 to make the script auto elevate to administrative functions.

    Got a way?

    Thats how we can fix the service issue.
     
  12. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    #255 s1ave77, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    Seems to be more complicated aka a permissions problem, as this error even appears after setting the policies manually

    Code:
    Set-ExecutionPolicy RemoteSigned
    :g:.


    EDIT: Huih ... post #300 ... feeling heroic now :cool2:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    #256 Smorgan, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
  14. KnowledgeableNewbie

    KnowledgeableNewbie MDL Member

    Sep 30, 2014
    178
    28
    10
    #257 KnowledgeableNewbie, Oct 17, 2014
    Last edited: Oct 17, 2014
    stopped reading the thread because someone who shall remane nameless seemed to be hijacking the thread. posted a file in the other thread and was redirected back here by Slave77. lo and behold my idea had already been been done. damn, things moving fast. looking forward to testing the scripts. looks like i have to try learning PS as well, as if CMD wasn't enough. :mad:
     
  15. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    Ya things move a bit fast as I wanted to get the scripting done ASAP so we could start testing stuff.

    When this script reaches stable status I'll make a noticeable Version change :)
     
  17. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    #260 s1ave77, Oct 17, 2014
    Last edited by a moderator: Apr 20, 2017
    You can invoke ps1 scripts from CMD:

    Code:
    powershell -executionpolicy bypass -File TrackingWiz.ps1
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...