Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @REM 2018 STOP! this isn't the problem anymore. this script wont help you.
- @ECHO OFF
- @ECHO.
- @REM this script requires admin permissions
- sc config lanmanserver start= demand
- IF ERRORLEVEL 1 (GOTO:ERROR_AdminPermissions)
- @ECHO.
- @ECHO Beginning WF login bug work-around script.
- @ECHO Warframe and its launcher should be closed!
- @ECHO If they aren't closed, restart them before trying to log in.
- @ECHO.
- @ECHO If this works, you should see a "SUCCESS" message.
- @ECHO If you don't see the message, please contact Alaestor via
- @ECHO the discord invite link http://public.FutureGadgetLab.net
- @ECHO.
- @ECHO.
- @ECHO PLEASE READ THE ABOVE MESSAGE
- @ECHO.
- @PAUSE
- @ECHO.
- @ECHO [Minor Security Threat]
- @ECHO Attempting to turn on the "workstation" service.
- sc start lanmanworkstation
- @IF %errorlevel% == 0 (GOTO:SUCCESS)
- @ECHO Failed to start workstation service...
- @ECHO.
- @ECHO [Critical Security Threat]
- @ECHO Enabling SMB 2.0 Trying again...
- sc config mrxsmb20 start= demand
- sc start lanmanworkstation
- @IF %errorlevel% == 0 (GOTO:SUCCESS)
- @ECHO Failed to start workstation service...
- @ECHO.
- @ECHO [Critical Security Threat]
- @ECHO Enabling SMB 1.0 Trying again...
- sc config mrxsmb10 start= demand
- sc start lanmanworkstation
- @IF %errorlevel% == 0 (GOTO:SUCCESS)
- @ECHO.
- GOTO:FAIL
- :ERROR_AdminPermissions
- @ECHO This script requires elevated permissions.
- @ECHO Please run this script as admin.
- @ECHO.
- GOTO:END
- :FAIL
- @ECHO Failed known work-arounds...
- @ECHO Are some services completely uninstalled?
- @ECHO.
- @ECHO.
- @ECHO.
- @ECHO Even though this script failed, your system is at risk!
- @ECHO MAKE SURE TO RUN "workaround_OFF.bat" !!!
- GOTO:END
- :SUCCESS
- @ECHO.
- @ECHO.
- @ECHO SUCCESS
- @ECHO.
- @ECHO.
- @ECHO AFTER YOU LOG INTO WARFRAME MAKE SURE TO RUN "workaround_OFF.bat" !!!
- @ECHO.
- @ECHO.
- GOTO:END
- :END
- @ECHO.
- @ECHO Press any key to terminate the script.
- @PAUSE >nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement