Jump to content

Question

7 answers to this question

Recommended Posts

  • 0
Posted
3 hours ago, justwannadownloadascript said:

how do i run this file? i just keep clicking in this link but it just opens a site full of text and it doesnt download anything. please help.

So are you clicking the pastebin link or the uskarian link?

  • 0
Posted

I'm clicking in the uskarian link

 

It appears as an white background site with this text in it:

 

@ECHO off
ECHO Report any issues related to this script to [email protected]
ECHO If you did not download this script from uskarian.net then cease execution of this script immediately! The validity of the script cannot be assured.
ECHO(
ECHO Description of script:
ECHO This script will stop any running javaw processes. This means any programs that are created in Java will be stopped. This includes Minecraft and the Technic launcher. Then it will wipe system & user set Java environment variables.
ECHO(
ECHO(
ECHO Liability:
ECHO This script is provided "as is", without warranty of any kind, expressed or implied. You cannot hold us accountable for any claim, damages, or other liability, under any circumstance.
ECHO(
ECHO By agreeing to continue the execution of this script. You're agreeing to not hold us accountable for any sort of damages.

:choice
ECHO(
SET /P c=Do you wish to continue executing this script?[Y/N]
IF /I "%c%" EQU "Y" GOTO :continue
IF /I "%c%" EQU "N" GOTO :exit
GOTO :choice


:exit
cls
echo User canceled further execution of script.
PAUSE 
EXIT

:continue
CLS
::kill any currently running java processes
ECHO Killing any running javaw.exe processes(If this errors. That's fine.)
TASKKILL /f /im javaw.exe
::override user set java variables messing with launcher
::Clears the system variable _JAVA_OPTIONS
ECHO(
ECHO Wiping system wide java options
SETX _JAVA_OPTIONS "" /m
::Clears the local variable _JAVA_OPTIONS
ECHO(
ECHO Wiping user account java options
SETX _JAVA_OPTIONS ""
::To let you know if it failed or was successful. Just press esc or enter.
PAUSE
EXIT
  • 0
  • Forum Administrators
Posted

I recently migrated my download servers. That issue has been fixed. For future reference you would right-click and select "Save Page As" to download such files.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...