Sunday, January 22, 2012
Joining 001 files
First we’ll look at a program called HJSplit. This is a great bit of Freeware and can be used on the Windows, Linux, MAC ,BSD, Java, PHP, Amiga, Windows 3.x, DOS, OS/2 platforms.
If you have downloaded these types of files, they may look similar to the image below. So lets get them joined so you can start to watch your file.
Once you have downloaded HJSplit, open it up and you will see the first window:
Now just click on ‘Join’ and you will get the next window:
Click ‘Input File’ and navigate to the folder where the split files are:
Click to highlight the file (note you will only see the first file which will end in 001) and then click ‘Open’ which will bring you back to the joining screen
As you can see, it will automatically place the soon to be joined files into the same folder, but you can change the output location if you wish. Now just press ‘Start’ and it will join all the files together
Once it’s finished you will see the following screen
That’s it.
Next we will look at how to do this using 7Zip
This is another fantastic piece of freeware that I would definitely advise you having for all your zipping/ joining and file (not system) encryption needs. The compression methods of this program are also a lot better that most, if not all of the paid for ones out there as well. First, go to their site and download the program. Once you have done that, you will notice that it has been added to your right click context menu. Now, go to the folder where your split 001, 002, 003 etc files are located. Now just right click on the ’001′ file as seen below and go 7-zip>Extract Here
The program will automatically place the joined file in the same location. Whilst the program is joining the files, you will see the following window:
Once it has finished your newly joined file will be there, ready to play. You will know that the operation has finished by the window above closing
That’s it, you’re done!
I was using Window 7 Ultimate x64 in both of these examples for those interested.
I hope this has been of use to you.
Port Forwarding (TUT) Noob Detalied!
Port Forwarding (TUT) Noob Detalied!
Ok,in this tut i will show you how to PortForward your IP adress.
Lets get started...
First open : http://portforward.com
Then scroll down and find your router.If you cant find it,then press
"Ctrl+f " and type your ruoter.In my case is TP-Link.
Then click on it.
After that,just click Skip...
Then,scroll a little and you will see "1st SMTP Server" , and click that...
Then it will show you,how to port forward exactly for your ROUTER,but
now i will show for mine :D
Ok,now click "start",then "run",and type cmd!
Now black windows will appear,and you must type "ipconfig",and it will show you some ip adresse’s,you must copy ip from "Default Gateway"
After that,open firefox or what ever you have,and type your "Default Gateway" ip.
When you type, it will show you small window to type username and password.Usually password and username are same "admin"..so you type like that.
Then you click "Advance setup"
next,click "NAT" , and click "add"
And than,select "Custome server" , type "CyberGate".
Type your Ip adress from DOS,next type port you want,in my case is 82.
Select Protocol,use both of them,and FINALY click Save/Apply! ;)
And now LAST step.
Open http://canyouseeme.org and type your port (mine is 82) and click "Check"!!
And it will show you just like this:
Success: I can see your service on **.**.**.**:*** on port (82)
Your ISP is not blocking port 82
If its like that,then you are DONE!! congratulations!
But if you have some error,it would look like this:
Error: I could not see your service on **.**.**.**:** on port (82)
Reason: Connection timed out.
Chat using command prompt
you don’t need to download any yahoo messenger
All you need is your friends IP address and Command Prompt.
Firstly, open Notepad and enter:
@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
Now save this as “Messenger.bat”. Open the .bat file and in Command
Prompt you should see:
MESSENGER
User:
After “User” type the IP address of the computer you want to contact.
After this, you should see this:
Message:
Now type in the message you wish to send.Before you press “Enter” it should look like this:
MESSENGER
User:27.196.391.193
Message: Hi
Now all you need to do is press “Enter”, and start chat
Creating account in windowos command promt
@ECHO off
TITLE AdminAccountCreator651juan@cw
COLOR 0f
set AC_PART=001
:HEADER
echo.
ECHO [INFO]
ECHO [-]Create a hidden user acount U:%AC_NAME%;:%AC_PASS%; G:%AC_GROUP%; H:%AC_HIDE%
echo ’
GOTO %AC_PART%
:001
SET /P AC_NAME=[*]Account name?:
cls
SET AC_PART=002
GOTO HEADER
:002
SET /P AC_PASS=[*]Account password?:
cls
SET AC_PART=003
GOTO HEADER
:003
SET /P AC_COMMENT=[*]AccountComment?:
cls
SET AC_PART=004
GOTO HEADER
:004
ECHO [*The following groups are available on the machine.
ECHO.
net localgroup | find "*"
ECHO.
SET /P AC_GROUP=[*]Group?:
cls
SET AC_PART=005
GOTO HEADER
:005
SET /P AC_OK=[*]Creating acount now,Continue?y/:
IF NOT %AC_OK%==y GOTO 0051
net user %AC_NAME%%AC_PASS%/add /COMMENT:"%AC_COMMENT%"
net localgroup "%AC_GROUP%"%AC_NAME%/add
ECHO.
pause
:0051
cls
SET AC_PART=006
GOTO HEADER
:006
SET /P AC_HIDE=[*]Do you want to hide the account from the XP logon screen?y/:
IF NOT %AC_HIDE%==y GOTO END
echo WindowsRegistryEditorVersion5.00>%TEMP%’addregistry.reg
echo [HKEY_LOCAL_MACHINE’SOFTWARE’Microsoft’Windows
NT’CurrentVersion’Winlogon’SpecialAccounts’UserList]>>%TEMP%’addregistry.reg
echo "%AC_NAME%"=dword:00000000>>%TEMP%’addregistry.reg
Regedit/%TEMP%’addregistry.reg
Del%TEMP%’addregistry.reg
:END
ECHO.
pause
For win 7 use:
net user /add useraccountname mypassword
net localgroup administrators useraccountname /add
net share concfg*C:’/grant:useraccountname,full
net user useraccountname *
This will create an administrator account called useraccountname with a password of mypassword. The account can be created without a password as well.
If you need to delete the account use the same code as mentioned in line 1, but insert ’delete’ where ’add’ was used.
Administrator privileges may be needed.. look for my other post on how to get these.