Advertisement
alaestor

workaround_ON.bat

Oct 16th, 2017
972
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.95 KB | None | 0 0
  1. @REM 2018 STOP! this isn't the problem anymore. this script wont help you.
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. @ECHO OFF
  27. @ECHO.
  28. @REM this script requires admin permissions
  29. sc config lanmanserver start= demand
  30. IF ERRORLEVEL 1 (GOTO:ERROR_AdminPermissions)
  31.  
  32.  
  33.  
  34.  
  35.  
  36. @ECHO.
  37. @ECHO Beginning WF login bug work-around script.
  38. @ECHO Warframe and its launcher should be closed!
  39. @ECHO If they aren't closed, restart them before trying to log in.
  40. @ECHO.
  41. @ECHO If this works, you should see a "SUCCESS" message.
  42. @ECHO If you don't see the message, please contact Alaestor via
  43. @ECHO the discord invite link http://public.FutureGadgetLab.net
  44. @ECHO.
  45.  
  46.  
  47. @ECHO.
  48. @ECHO PLEASE READ THE ABOVE MESSAGE
  49. @ECHO.
  50. @PAUSE
  51.  
  52.  
  53.  
  54.  
  55. @ECHO.
  56. @ECHO [Minor Security Threat]
  57. @ECHO Attempting to turn on the "workstation" service.
  58. sc start lanmanworkstation
  59. @IF %errorlevel% == 0 (GOTO:SUCCESS)
  60. @ECHO Failed to start workstation service...
  61. @ECHO.
  62.  
  63. @ECHO [Critical Security Threat]
  64. @ECHO Enabling SMB 2.0 Trying again...
  65. sc config mrxsmb20 start= demand
  66. sc start lanmanworkstation
  67. @IF %errorlevel% == 0 (GOTO:SUCCESS)
  68. @ECHO Failed to start workstation service...
  69. @ECHO.
  70.  
  71. @ECHO [Critical Security Threat]
  72. @ECHO Enabling SMB 1.0 Trying again...
  73. sc config mrxsmb10 start= demand
  74. sc start lanmanworkstation
  75. @IF %errorlevel% == 0 (GOTO:SUCCESS)
  76. @ECHO.
  77. GOTO:FAIL
  78.  
  79.  
  80.  
  81.  
  82.  
  83. :ERROR_AdminPermissions
  84. @ECHO This script requires elevated permissions.
  85. @ECHO Please run this script as admin.
  86. @ECHO.
  87. GOTO:END
  88.  
  89. :FAIL
  90. @ECHO Failed known work-arounds...
  91. @ECHO Are some services completely uninstalled?
  92. @ECHO.
  93. @ECHO.
  94. @ECHO.
  95. @ECHO Even though this script failed, your system is at risk!
  96. @ECHO MAKE SURE TO RUN "workaround_OFF.bat" !!!
  97. GOTO:END
  98.  
  99.  
  100. :SUCCESS
  101. @ECHO.
  102. @ECHO.
  103. @ECHO SUCCESS
  104. @ECHO.
  105. @ECHO.
  106. @ECHO AFTER YOU LOG INTO WARFRAME MAKE SURE TO RUN "workaround_OFF.bat" !!!
  107. @ECHO.
  108. @ECHO.
  109. GOTO:END
  110.  
  111. :END
  112. @ECHO.
  113. @ECHO Press any key to terminate the script.
  114. @PAUSE >nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement