welcome box

Thursday, November 27, 2014

How To Write A Simple Batch (.bat) File

batfile   How To Write A Simple Batch (.bat) File
Since automation programs like AutoHotKey exist, many people have never written or taken the time to understand bat files, and many don’t even know what they do.
In this article, I’m going to show you how to write a simple batch file and present some basics that a user will need to understand when writing one. I’ll also provide you with a few resources for learning to write batch (.bat) files in case you’d like to go further.

Let’s say that you frequently have network issues; you’re constantly getting on the command prompt and typing in things like “ipconfig” and pinging Google to see what the problem is. After a while you realize that it would be a bit more efficient if you just wrote a simple BAT file, stuck it on your USB stick, and used it on the machines you troubleshoot.

Step 1: Create A BAT File

Create a new text document on your desktop. Double click the file – it should be blank inside. Now, go to file>save as, and in the “Save As” window, input a name for your BAT file and then add a “.bat” on the end (without the quotes). My file was named testBAT.bat, for instance.
Before hitting save we need make sure that Windows doesn’t stick the standard “.txt” ending on the end of our new file. To do this, change the filetype from “.txt” to “all files” as shown in the screenshot below. That’s it – hit save and close the file.
CropperCapture1   How To Write A Simple Batch (.bat) File

Step 2: Learn Some Quick Code

If you know how to run commands in the command prompt, you’ll be a wiz at creating BAT files because it’s the same language. All you’re doing is telling the command prompt what you want to put in through a file, rather than typing it every time you run the command prompt. This saves you time and effort; but it also allows you to put in some logic (like simple loops, conditional statements, etc. that procedural programming is capable of conceptually).
There are SEVEN simple commands I want to familiarize you with for this program. Commands are NOT case sensitive, so don’t worry about that.
TITLE - The Window name for the BAT file.
ECHO - the “print” statement for BAT files. Anything following the word ECHO will be displayed in the command prompt as text, on its own line.
ECHO OFF – BAT writers typically put this at the beginning of their files. It means that the program won’t show the command that you told it to run while it’s running – it’ll just run the command. I’d recommend that after you run this test program, you try removing this line from your code to see what happens.
PAUSE - This outputs the “press any key to continue…” message that you’ve seen all too many times. It’s helpful because it pauses the BAT file execution until the user tells it to go again. If you don’t put this in your program, everything will speed by and end before you can see it. People typically put this in BAT files to give the user a chance to review the material on the screen before continuing.
CLS - Clears the DOS window (helpful if things get too cluttered!).
IPCONFIG – Outputs a lot of network information into your DOS box (network admins have dreams solely based off this command).
PING - Pings an IP, letting you know if your computer was able to contact it. This command also returns the latency (ping time) and by default pings three times.

Step 3: Do Some Quick Logic

We need to plan our program out. Any good programmer will think about the general framework of their program before they dash into things – it prevents them from making logic mistakes that are hard to back out of.
For this program, we want to check the computer’s network/internet settings with an “ipconfig /all” command, and then review that information by giving the user time to read everything. Afterwards, we want to ping google.com to figure out if we really truly have access to the internet. We’ll pause the program after this as well, because we want to know for sure that they saw it.  OK. Very simple program, very simple logic. Let’s write some code.

Step 4: Write Your BAT File

Right click your BAT file and click “edit” to bring up Notepad. The whole document should be blank – ready for some epic programmer input.
Rather than walking you line by line through the code (it’s extremely short) I’m going to use a code comment (example–   CODE  ::Comment) to let you know what we just did.I’m putting the actual code in bold to make things a bit easier to process.
———–Start Code———–
ECHO OFF
::CMD will no longer show us what command it’s executing(cleaner)
ECHO As a network admin, I’m getting tired of having to type these commands in! Hopefully, this saves me some time in the long run.
:: Print some text
IPCONFIG /ALL
:: Outputs tons of network information into the command prompt
PAUSE
:: Lets the user read the important network information
PING www.google.com
:: Ping google to figure out if we’ve got internet!
ECHO All done pinging Google.
::Print some text
PAUSE
:: Give the user some time to see the results. Because this is our last line, the program will exit and the command window will close once this line finishes.
———–End Code———–

Step 5: Run Your BAT File

Save the file you just coded (or copy/paste mine in, it will run as written), and double click it. Your output should be something like the screenshot below.
CropperCapture2   How To Write A Simple Batch (.bat) File
Congratulations! You’ve written a batch file successfully.

Credit To Batch.net

Learn Batch Programming Commands

 I am also going to tell you the most commonly used Batch Commands and their uses.

The first command you should know is ECHO. All ECHO does is simply print something onto the screen. It’s like “printf” in C or “PRINT” in Basic. Anyway, this is how we use it.
ECHO Hello World!
All right, now save the above line as a .bat file and double click it. This should be the output -
C:\WINDOWS\Desktop\>ECHO Hello World!
Hello World!

Did you notice that it shows the command before executing it. But we’re coders right? We don’t want our code to look so untidy so just add an @ sign before ECHO and execute it. The code looks much better. The @ sign tells DOS to hide from the user whatever commands it is executing.
Now, what if I want to write to a file? This is how I do it -

@ECHO Hello World > hello.txt
Simple huh? Remember, “>” to create or overwrite a file and “>>” to append ( write at the end ) of a file that already exists. Guess why this program wont work as desired to -
@ECHO Hello World > hello.txt
@ECHO Hello World Again > hello.txt

Looking at it, you will see that the program is supposed to write two lines one after another but it wont work because in the first line it will create a file called hello.txt and write the words “Hello World” to it, and in the second line it just over-writes the earlier text. So actually what it is doing is that it creates a file and writes to it and then over-writes what it had earlier written, to change this we just add a “>”. The additional “>” will make DOS append to the file. So here’s the improved form of the program -

@ECHO Hello World > hello.txt
@ECHO Hello World Again >> hello.txt

Save the above code as a .bat file and execute it, it will work without a hitch.
The next thing we should learn is the GOTO statement. GOTO is just the same as it is in BASIC or for that fact any programming language but the only difference is between the labels.
This is a label in C or BASIC – label:

This is a label in batch – :label

In C or BASIC, the “:” comes after the label and in Batch it comes before the label. Bear this in mind as you proceed. Here’s an example of the GOTO statement -
:labelone
@ECHO LoL
GOTO labelone

If you execute this code, you will see that it is an unlimited loop; it will keep printing to the screen till the end of time if you don’t interrupt it Smile The GOTO statement is very useful when it comes to building big Batch programs.
Now, we will learn the IF and EXIST commands. The IF command is usually used for checking if a file exists, like this -
@IF EXIST C:\WINDOWS\EXPLORER.EXE ECHO It exists
Observe that I have not used inverted commas ( ” ) as I would in BASIC or C.
The EXIST command is only found in Batch and not in any other language. The EXIST command can also be used to check if a file does not exist, like this -

@IF NOT EXIST C:\WINDOWS\EXPLORER.EXE ECHO It does not exist
Remember, Batch is not a language like C or BASIC or Pascal, it cannot do mathematical functions. In Batch, all you can do is control DOS. In the above example notice that there is no THEN command as there would be in most languages.
Sick and tired off using the @ sign before each and every command ? Let’s do some research, go to the DOS prompt and type in ECHO /? and press enter. Interesting, in this way, when you hear of a new DOS command you don’t know about, just type in “command /?” and you can get help on it. Now back to ECHO. According to the help we received by typing in ECHO /? you must have concluded if you type in ECHO OFF you no longer need to type an @ sign before every command.
Wait! just add an @ before ECHO OFF so that it does not display the message – ECHO is off.

The next command we are going to learn about is the CLS command. It stands for CLear Screen. If you know BASIC, you will have no problem understanding this command. All it does is clear the screen. Here’s an example -

@ECHO OFF
CLS
ECHO This is DOS

This command needs no further explanation but type in CLS /? to get more help on the command.
The next command we are going to learn is CD. It stands for Current Directory. It displays the current directory in which you are if you just type in “CD” but if you type in”CD C:\Windows\Desktop” it will take you to the Desktop. Here’s an example -
@ECHO OFF
CD C:WindowsDesktop
ECHO Testing.. > test.txt
ECHO Testing…>>test.txt

This will change the directory to the Desktop and create a file there called test.txt and write to it. If we had not used the CD command, this is how the program would have looked.
@ECHO OFF
ECHO Testing.. > C:\Windows\Desktop\test.txt
ECHO Testing…>> C:\Windows\Desktop\test.txt

See the difference? Anyway that’s all for the The Basics of Batch File Programming. Remember, each an every DOS command can be used in Batch..
I Hope you liked it.  I am sure you learnt something new.

Tuesday, November 25, 2014

If Ur G-mail Account is locked

 ေအာက္က Link ကုိသြားပါ။ https://www.google.com/accounts/DisplayUnlockCaptcha
ေရာက္သြားရင္ ေအာက္က ပံုေလးအတိုင္း ေပါ ္လာပါမယ္...



 အဲ့မွာ Locked က်သြားတဲ့ gmail account နဲ႔ password ကုိျဖည့္ၿပီး စကားလုံးေလးေတြ ပုံဖ်တ္ထားတာကုိ မွန္ေအာင္ရုိက္ၿပီး ေအာက္နားမွာ unlock ဆုိတာကုိႏွိပ္ၿပီးလုပ္ၾကည့္ပါဗ်ာ။အဆင္ေၿပမယ္လို ့ေတာ့ ေမွ်ာ္လင့္ပါတယ္..

အင္​တာနက္ Setting ​ခ်ိန္​ညႇိခ်က္​မ်ား

Internet Setting ( အင္​တာနက္​ခ်ိန္​ညႇိခ်က္​မ်ား )

GSM SIM CARD မ်ားအတြက္အင္​တာနက္​​ေလ်ာက္​နည္​း
နွင္​့ Setting ခ်ိန္​နည္​း


အင္​တာနက္​​ေလ်ာက္​ရန္​ ​ေငြတစ္​​ေသာင္​းနွင္​့အထက္​

ရွိရပါမည္​။

1331 သို႔ "Orderdata service" ဟုပုိ႔​ေပးပါ။

ထုိ႔​ေနာက္​ MPT မွ

Your Orderd product has been Activated.

Please restart your handset.ဟုဝင္​လာလ်ွင္​

အင္​တာနက္​​ေလ်ာက္​ျခင္​းၿပီးဆံုးသြားပါၿပီ။

အင္​တာနက္​ Setting ခ်ိန္​ညႇိဖို႔ ပထမဆံုး Setting
ကိုဝင္​ပါ။Mobile Networks ကိုဝင္​ပါ။
Access Point Names ကိုဝင္​ပါ။Menu ခလုတ္​ကို
နွိပ္​ၿပီး New APN ကို​ေ႐ြးပါ။
ၿပီးရင္​​ေတာ့ APN စခ်ိန္​ပါ့မယ္​။​

Name - mptnet

APN  - mptnet

Username - mptnet

Authentication Type -PAP or CHAP

ထို႔​ေနာက္​ Menu ကိုနိွပ္​ၿပီး Save ပါ။

ၿပီးရင္​ဖုန္​းကုိ Restart တစ​္​​ေခါက္​ခ်ပါ။

ျပန္​တတ္​လာလ်င္ Data Service ကုိဖြင္​့​ေပးပါ။

ျမႇားအတတ္​အက်​ေလးနွင္​့

E သို႔မဟုတ္​ H တတ္​​ေနလ်င္​ အဆင္​​ေျပပါၿပီ။

CDMA800 "MECTEL" ဖုန္​းမ်ားအတြက္​အင္​တာနက္​​ေလ်ာက္​နည္​းနွင္​့ Setting ခ်ိန္​နည္​း


အင္​တာနက္​​ေလ်ာက္​ရန္​ ​ေငြတစ္​​ေသာင္​းနွင္​့အထက္​

ရွိရပါမည္​။

ထုိ႔​ေနာက္​ 233 သို႔ "Open EVDO" ဟုပုိ႔​ေပးပါ။

Mectel မွ "Your Product EVDO has been

activated.Please restart your handset."

ဟုပုိ႔လာပါက အင္​တာနက္​​ေလ်ာက္​ျခင္​းၿပီးဆံုးသြားပါၿပီ။

အင္​တာနက္​ Setting ခ်ိန္​ညႇိဖို႔ ပထမဆံုး Setting
ကိုဝင္​ပါ။Mobile Networks ကိုဝင္​ပါ။
Access Point Names ကိုဝင္​ပါ။Menu ခလုတ္​ကို
နွိပ္​ၿပီး New APN ကို​ေ႐ြးပါ။
ၿပီးရင္​​ေတာ့ APN စခ်ိန္​ပါ့မယ္​။​

Name - mectel

APN  - #776

Username - card@c800.com

Authentication Type -PAP or CHAP

APN TYPE - *

ထို႔​ေနာက္​ Menu ကိုနိွပ္​ၿပီး Save ပါ။

ၿပီးရင္​ဖုန္​းကုိ Restart တစ​္​​ေခါက္​ခ်ပါ။

ျပန္​တတ္​လာလ်င္ Data Service ကုိဖြင္​့​ေပးပါ။

ျမႇားအတတ္​အက်​ေလးနွင္​့

3G သို႔မဟုတ္​ 1X တတ္​​ေနလ်င္​ အဆင္​​ေျပပါၿပီ။

Ooredoo internet setting ခ်ိန္​ညႇိျခင္​း

Name - Ooredoo

APN - Ooredoo internet

Authentication Type -PAP or CHAP

ထို႔​ေနာက္​ Menu ကိုနိွပ္​ၿပီး Save ပါ။

Data Service ကုိဖြင္​​့​ေပးပါက ျမႇားအတတ္​အက်နွင္​့

3G သို႔မဟုတ္​ H+ တတ္​​ေနပါကအဆင္​​ေျပပါၿပီ။

Telenor internet setting ခ်ိန္​နည္​း

Name - Telenor

APN - Telenor internet

Username - telenor

Authentication Type -PAP or CHAP

ထို႔​ေနာက္​ Menu ကိုနိွပ္​ၿပီး Save ပါ။

Data Service ဖြင္​့​ေပးပါ။ ျမႇားအတက္​အက်​ေလးနွင္​့

3G  တတ္​​ေနပါကအဆင္​​ေျပပါၿပီ။
 
            

photoshop cs tool မ်ားရဲ ့လ်ိွဳ ့ဝွက္ခ်က္မ်ား


 photoshop cs tool မ်ားရဲ ့လ်ိွဳ ့ဝွက္ခ်က္မ်ားအေၾကာင္းကိုေရးထားတဲ ့စာအုပ္ေကာင္းပါ။photoshop ရဲ ့အဓိကမိန္းဟာ tools ေတြပဲျဖစ္ပါတယ္။အဲဒီ tools ေတြကိုေသေသခ်ာခ်ာကိုင္တြယ္နိုင္မွသာ သင္ ့ကိုေကာင္းမြန္တဲ ့အရည္အေသြးနဲ ့ျပည္ ့ဝတဲ ့ဖန္တီးမွဳေတြကိုသာရရိွမွာပါ။
အေျခခံသင္တန္းတက္ခဲ ့သူမ်ားေရာမတက္ရေသးေသာသူမ်ားပါဖတ္သင္ ့ပါတယ္။သင္ ့ကိုဒီစာအုပ္ကေလးက
သင္ ့ကိုကၽြမ္းက်င္အဆင္ ့( ၁) ျဖစ္ေအာင္အျပည္ ့အဝကူညီပါလိမ္ ့မယ္။ဒီစာအုပ္ကေလးထဲမွာ tools 
ေပါင္းမ်ားစြာကိုသင္ၾကားေပးမွာျဖစ္သလို ( 3d -tools)ေတြအေၾကာင္းပါေရးသားထားပါတယ္။
 ေလ ့လာမယ္ဆိူရင္ေအာက္မွာယူလိုက္ပါ.။







Credit : http://Tawwincsscode.blogspot.com

ေပ်ာ္စရာေလးတစ္ခုလုပ္မယ္.


 ပထမဦးဆံုး Notepad ကိုဖြင့္လိုက္ျပီး ေအာက္မွာ ေဖာ္ျပထာတဲ့ ကုတ္ေတြကို Copy and Paste လုပ္ပါ

Dim msg, sapi
msg=InputBox("Enter your text for conversion–www.youth-it-technican.blogspot.com/","youth-it-technicanText-To-Audio Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg


ျပီးရင္ကိုယ္စိတ္ၾကိဳက္နာမည္နဲ႕Save.. ( .vbs) ဖိုင္နဲ႕ေဆ့
ဥပမာ= kolin.vbs အဲသလိုေပါ့

အိုေက Save.ျပီးရင္ မိမိေဆ့ထားတဲ့ program ေလးကိုဖြင့္ Text Box ေလး မွာ သူငယ္ခ်င္းတို႕ စိတ္ၾကိဳက္စာေတြရိုက္ထည့္ ၿပီးတာနဲ႕ok ႏိွပ္လိုက္ ရင္ရျပီ။
မိမိေရးသားတဲံစာသားအတိုင္း  ကြန္ပ်ဴတာထဲကေန   ေအာ္ေျပာေနမယ္....တိနားးးးးးးးးးးးး အေနာ္ကေတာ့
I LOVE YOU AUNG AUNG  လို႕ေရးၾကည့္တာ....ေိေိ အထဲက ေကာင္မေယးအသံနဲ႕  အဲလို လာေျပာတာခံရတယ္... ေပ်ာ္ခ်ရာေတာင္းးလယ္.....ေိေိ

ဟိဟိ ျမန္မာေတာ့မရဘူးေနာ္..သူ႕က English ပဲရမယ္။
မွတ္ခ်က္==မည့္သည့္အႏၱရာယ္မွမရွိပါ။

သူငယ္ခ်င္းေတြ ေပ်ာ္ရႊင္ရီေမာ၍ ဘဝအေမာေတြေျပပါေစဗ်ာ.. 

Core i3,Core i5,Core i7 ကြာျခားခ်က္မ်ား

ဘယ္အရာမဆို အေျခခံခိုင္ခိုင္မာမာရွိမွ ေအာက္ေျခခိုင္ခံ႔မွ တစ္ဆင့္ပီးတစ္ဆင့္ တက္တဲ႔အခါ အစစအရာရာ အဆင္ေျပမွာျဖစ္ပါတယ္။ ကၽြန္ေတာ္ကိုယ္တိုင္လည္း သေဘာက်ႏွစ္သက္မိလို႔ မွတ္စုအေနနဲ႔ေရာ တစ္ဆင္႔ျပန္လည္ ေ၀မွ်လိုတဲ႔ သေဘာနဲ႔ပါ တင္ေပးလိုက္ပါတယ္။ သိၿပီးသား ကၽြမ္းက်င္ပီးသား သူမ်ားအတြက္ လံုး၀မရည္ရြယ္ပဲ မူႀကိဳအဆင့္မ်ားကိုသာ ရည္ရြယ္ပါသည္။ ဘာေၾကာင့္လဲဆိုေတာ့ က်ေတာ္လည္း မူႀကိဳအဆင့္မွ မတက္ႏိုင္ေသးေသာေၾကာင့္ပါ....:D
Core i3 , core i5 , core i7 အေၾကာင္းမေျပာခင္ core i series ထဲမွာ ပါ၀င္တဲ့ သံုးထားတဲ့ နည္းပညာ အသံုး အနွုန္းနဲ ့ Architecture , code name ေတြ အရင္ေျပာျပပါ့မယ္ ဘာေၾကာင့္လဲဆိုေတာ့ အဲဒါကို သိထားပါမွ ကြဲျပားမွုေလးေတြ ပိုမိုေပၚလြင္မွာျဖစ္ပါတယ္….
Core i series Architecture
Core i series မွာ Nehalem Architecture နဲ ့ Sandy bridge Architecture ဆိုျပီးရိွပါတယ္.. ပထမဆံုး စထုတ္တာ Nehalem Architecture ကို base လုပ္ျပီး ထုတ္လုပ္ပါတယ္…Sandy bridge Architecture ကိုေတာ့ 2011 အေစာပိုင္းကာလမွာ စျပီးထုတ္ခဲ့ပါတယ္..

Core i series code name
Core i series code name မ်ားမွာ
1.Gulftown,
2.Bloomfield,
3.Lynnfield,
4.Clarkfield,
5.Clarkdale,
6.Arrandale,
7.Sandy bridge(Desktop),
8.Sandy bridge(moblile) တို့ျဖစ္ၾကပါတယ္။
Core i series code name အုပ္စုမွာ Nehalem Architecture ကိုအေျခခံတည္ေဆာက္ထားတဲ့ code name ေတြကေတာ့ Gulftown,Bloomfield, Lynnfield, Clarkfield,Clarkdale နဲ့ Arrandale တို့ျဖစ္ၾကပါတယ္။ Sandy bridge Architecture ကိုအေျခခံတည္ေဆာက္ထားတဲ့ code name ေတြကေတာ့ sandy bridge(Desktop) နဲ ့sandy bridge(mobile) ေတြျဖစ္ပါတယ္..

Core i series processor မွာ ဘာေတြထူးျခားျပီး ကြာသြားမွာလဲ
Core i series မွာ ေအာက္ပါအခ်က္မ်ားကြာျခားသြားပါတယ္
1.core အေရ အတြက္ပါ၀င္မွု
2.Thread အေရအတြက္
3.Cache ပါ၀င္မွု ပမာဏ
4. Turbo Boost Technology
5. Smart Cache
6. QPI
7.Hyper-threading technology

1.Core အေရအတြက္
Core ဆိုတာ တြက္ခ်က္မွူ real processing unit တစ္ခုျဖစ္ျပီး chip တစ္ခုေပၚမွာ တည္ေဆာက္ထားပါတယ္ အဲဒီ core က နွစ္လံုး ေလးလံုး စသျဖင့္ပါ၀င္ပါတယ္..
2.Thread အေရအတြက္
Thread ဆိုတာ processor ကို instruction ေပးပို ့ရာမွာ လမ္းေၾကာင္း 1ခု 2ခု 4ခု 8ခု စသျဖင့္ရိွပါတယ္ 2ခုနဲ ့2ခုအထက္ကို multi-thread လို ့ေခၚပါတယ္..
3.Cache ပါ၀င္မွု ပမာဏ
Cache ပါ၀င္မွုပမာဏ အနည္းမ်ားေပၚမူတည္ျပီး ပိုျပီးျမန္သလို cache ပမာဏမ်ားတဲ့ processor ကပိုျပီးေတာ့ေစ်းၾကီးပါတယ္..(2MB,4MB,6MB,8MB..စသျဖင့္)
4. Turbo Boost Technology
Turbo Boost ဆိုတာ လိုအပ္တဲ့ အခ်ိန္မွာ core တစ္လံုး နဲ ့တစ္လံုး ေပါင္းစည္းလုပ္ေဆာင္ေပးပါတယ္.. process တစ္ခုကို core တစ္လံုးတည္းနဲ ့လုပ္ေဆာင္နိုင္ပါက core တစ္လံုးတည္းနဲ ့သာ လုပ္ေဆာင္ျပီး core တစ္လံုးတည္းနဲ ့လုပ္ေဆာင္ရန္မလံုေလာက္တဲ့အခါ core ေတြ အခ်င္းခ်င္းခ်ိတ္ဆက္လုပ္ေဆာင္တဲ့ နည္းပညာျဖစ္ပါတယ္..
5. Smart Cache
Smart cache ဆိုတာ core ထဲမွာ ပါတဲ့ cache ေတြဟာ လိုအပ္တဲ့အခါမွာ အခ်င္းခ်င္း ေပါင္းစည္း လုပ္ေဆာင္တဲ့ နည္းပညာျဖစ္ပါတယ္..
6. QPI (Quick Parth Interconnect)
QPI ဆိုတာ processor နဲ ့north bridge ၾကားမွာ high speed transfer လုပ္ေဆာင္ပါတယ္.. north bridge ကို အရင္ကလို motherboard ေပၚမွာ chip တစ္ခုအေနနဲ ့ သီးသန္ ့ထုတ္မ ထား ေတာ့ပဲ CPU ထဲကို ဆြဲသြင္း လိုက္ပါတယ္..ဒါေၾကာင့္ point to point ခ်ိတ္ဆက္ျပီး လုပ္ေဆာင္ နိုင္တယ္..ယခင္ FSB ေနရာမွာ အစားထိုး ၀င္ေရာက္လာျပီး QPI ျဖစ္သြားပါတယ္..cpu အတြင္းမွာ north bridge နဲ ့ cpu တို ့ခ်ိတ္ဆက္တဲ့ လမ္းေၾကာင္း ကို Common Serial Interconnect(CSI) bus လို ့ေခၚပါတယ္..
7.Hyper-threading technology
Hyper-threading ဆိုတာ processor တစ္လံုးထဲကမွ အခ်ိန္တစ္ခုထဲမွာပင္လ်င္ thread နစ္ခုကို တစ္ျပိဳင္နက္ထဲ တာ၀န္ထမ္းေဆာင္နိုင္ပါတယ္ ဒီေနရာမွာ Thread ဆိုတာ processor ဟာProgram တစ္ခုမွ လာတဲ ့instruction တစ္ခုလုပ္ ေဆာင္မွဳကို thread တစ္ခုလို ့သတ္မွတ္ပါတယ္…Thread ဟာ 2ခု 4ခု 8ခု စသျဖင့္ျဖစ္နိုင္ပါတယ္..HT ပါတဲ ့ processor ဟာ architecture state ကို copyer လုပ္ျပီး logically အရ Processor နွစ္လံုးျဖစ္ေအာင္ ဖန္တီးထားျခင္းပါ..နဂို physical မွာရိွေနတဲ ့ cache , execution unit, control unit ,buses စတဲ ့ resourses ေတြကိုမ်ွေ၀သံုးစြဲျခင္းပါပဲဲ…သာမန္ processor တစ္လံုးနဲ ့စာရင္ HT processor အလုပ္လုပ္တာ 30%ေလာက္ပိုျပီးေတာ့ျမန္ပါတယ္...
Nehalem microarchitecture based
Core i3
ပထမဆံုး Nehalem ကထုတ္တဲ့ core i3 ကို 2010 ခုနွစ္ ဇန္န၀ါရီလ မွာ စတင္ သံုးစြဲခဲ့ၾကပါတယ္..Desktop processor မွာ ေရာ laptop mobile processor အတြက္ပါ ထုတ္လုပ္ခဲ့ပါတယ္..

Core i5
Nehalem ကိုပဲ base လုပ္ထားတဲ့ core i5 ကို စက္တင္ဘာလ ၈ ရက္ ၂၀၀၉ ခုနွစ္မွာ စတင္သံုးစြဲခဲ့ၾကပါတယ္..
Core i 7
Nehalem ကိုပဲ base လုပ္ထားတဲ့ corei7 ကို ၂၀၀၈ ခုနွစ္ကုန္ပိုင္းေလာက္မွာ စတင္သံုးစြဲခဲ့ၾကပါတယ္..အဲတုန္းက စစခ်င္းထုတ္တုန္းက Bloomfield ကိုစထုတ္ခဲ့ပါတယ္..2009 ခုနွစ္မွာ Lynnfield, clarkfield, Arrandale တုိ႕ကိုထုတ္ပါတယ္ 2010 ခုနွစ္မွာေတာ့ Gulftown ကိုထုတ္လုပ္ပါတယ္..ဒါေတြက Nehalem architecture ကိုအေျခခံထား တဲ့ မ်ိဳးကြဲ code name နဲ ့ထုတ္လုပ္ထားတဲ့ processor series ေတြျဖစ္ပါတယ္..
Sandy Bridge microarchitecture based
Core i3
Sandy bridge microarchitecture မွာဆိုရင္ code name ေတြက sandy bridge(Desktop) နဲ ့ sandy bridge(Mobile) ဆိုျပီးလာပါတယ္..sandy bridge ကိုအေျခခံထားတဲ့ core i3 ကို ၂၀၁၁ ဇန္န၀ါရီလ ၂၀ ရက္ေန ့မွာ စတင္သံုးစြဲနိုင္ခဲ့ပါတယ္..
Core i5
ယခုလက္ရိွထုတ္ေနဆဲကာလမွာေတာ့ ေအာက္ပါ အတိုင္း sandy bridge core i5 series ေတြကို ေတြ ့ရ မွာျဖစ္ပါတယ္..
Core i7
ယခုလက္ရိွထုတ္ေနဆဲကာလမွာေတာ့ ေအာက္ပါ အတိုင္း sandy bridge core i7 series ေတြကို ေတြ ့ ရမွာျဖစ္ပါတယ္..
အခု ေဖာ္ျပခဲ့တဲ့အထဲမွာ တစ္ျခားမ်ိဳးကြဲေတြလည္း ရိွေကာင္းရိွပါလိမ့္မယ္..core i series processor တစ္လံုးနဲ႔တစ္လံုး ဘာကြာလဲလို႕ေမးလာရင္ တစ္ခုတည္းေျဖလို႔ မရေတာ့ပါဘူး ဒါေၾကာင့္သူ ႕မွာပါတဲ့အမ်ိဳးအစား..အထဲမွာ လုပ္ေဆာင္နိုင္တဲ့စြမ္းရည္ ပါ၀င္မွုေတြကို အထက္တြင္ေဖာ္ျပ ေဆြးေနြးခဲ့ျပီးျ ဖစ္ပါတယ္ခင္ဗ်ာ..Architecture တစ္ခုတည္းေအာက္မွာ ပင္လ်င္ code name ေတြခြဲျပီးေတာ့ ထုတ္ထားတာ ကိုေတြ႔ျမင္ခဲ့ရျပီး ျဖစ္ပါလိမ့္မယ္..ညီအစ္ကို ေမာင္နွမ်ားအားလံုး knowledge ရၾကပါေစခင္ဗ်ာ.

About Computer Connector

အမ်ားအားျဖင့္ ကြန္ပ်ဴတာနဲ႔ ပက္သက္ရင္ အေျခခံနဲ႔ ဆိုင္တဲ႔အေၾကာင္းအရာ၊ ၀င္းဒိုးနဲ႔ဆုိင္တဲ႔ အေၾကာင္းအ၇ာေလးေတြပဲ အမ်ားအားျဖင့္ တင္ေလ့ရွိပါတယ္။ အခုလည္း က်ေတာ္ျပန္လည္ ေ၀မွ်လို္တာကေတာ့ Hard ware နဲ႔ဆိုင္တဲ႔ အေၾကာင္းအရာ သိသင့္တာေလးေတြကို အေျခခံက်က် ေရးသားရွင္းျပထားေပးတဲ႔ အေၾကာင္းအရာေလးေတြကို က်ေတာ္ဖတ္မိသလို က်ေတာ့္ဆိုဒ္ကို လာလည္တဲ႔ သူငယ္ခ်င္းမ်ားလည္း ေလ႔လာမွတ္သားလို႔ရေအာင္ တစ္ဆင့္ျပန္လည္ ေ၀မွ်ျခင္းျဖစ္ပါတယ္။ ဘယ္အရာမဆို အေျခခံခိုင္ခိုင္မာမာရွိမွ ေအာက္ေျခခိုင္ခံ႔မွ တစ္ဆင့္ပီးတစ္ဆင့္ တက္တဲ႔အခါ အစစအရာရာ အဆင္ေျပမွာျဖစ္ပါတယ္။ ကၽြန္ေတာ္ကိုယ္တိုင္လည္း သေဘာက်ႏွစ္သက္မိလို႔ မွတ္စုအေနနဲ႔ေရာ တစ္ဆင္႔ျပန္လည္ ေ၀မွ်လိုတဲ႔ သေဘာနဲ႔ပါ တင္ေပးလိုက္ပါတယ္။ သိၿပီးသား ကၽြမ္းက်င္ပီးသား သူမ်ားအတြက္ လံုး၀မရည္ရြယ္ပဲ မူႀကိဳအဆင့္မ်ားကိုသာ ရည္ရြယ္ပါသည္။ ဘာေၾကာင့္လဲဆိုေတာ့ က်ေတာ္လည္း မူႀကိဳအဆင့္မွ မတက္ႏိုင္ေသးေသာေၾကာင့္ပါ....:D

အထက္ကပံုမွာဆိုရင္ သာမွန္အားျဖင့္ Desktop computer တစ္လံုးရဲ ့ Case ေနာက္ဖက္မွာျမင္ေတြ ့ ရမည့္ connector မ်ားျဖစ္ပါတယ္…ဒီ connector ေတြဟာ built in connector ေတြျဖစ္ျပီး သူတို ့မွာ standard color နဲ ့ standard size ေလးေတြရိွပါတယ္..ဥပမာအားျဖင့္ ps/2 keyboard connector သည္ အျပာေရာင္ သတ္မွတ္ထားျပီး pin အားျဖင့္ 6pin mini din connector ျဖစ္ပါတယ္..ဒါက desktop ကြန္ပ်ဴတာရဲ ့ဘယ္ motherboard မဆို ဒီအတိုင္းသတ္မွတ္ထားတာျဖစ္ပါတယ္..ဒါမွလည္း ကီးဘုတ္ထုတ္တဲ့ company ေတြ mouse ထုတ္တဲ့ company ေတြအလုပ္ျဖစ္မွာေပါ့..နုိ ့မိုဆို သူတို ့ထုတ္ခ်င္တဲ့ design ကိုသာထုတ္မယ္ဆိုရင္ motherboard ေတြက အမ်ိဴးမ်ိဳးရိွတဲ့အတြက္ အရြယ္အစား ကိုက္ညီမွာမဟုတ္ဘူးေလ..ဒါေၾကာင့္ company ေတြက သတ္မွတ္ထားတဲ့ standard color နဲ ့ size ကိုလိုက္နာျပီး ဒီဇိုင္းထုတ္ၾကရပါတယ္..user အေနေတြ ဖက္ကအေနနဲ ့ၾကည့္မယ္ဆိုရင္လည္း ဒီလို color ေလးေတြကို မွတ္သားျခင္းအားျဖင့္ ဘယ္ motherboard အမ်ိဳးအစားမဆို color ကိုၾကည့္လုိက္တာနဲ ့ ဘယ္ connector ကေတာ့ ဘယ္ color ဆိုျပီး အလြယ္တကူ တပ္ဆင္နိုင္ပါတယ္..

PS/2 port(keyboard)
အျပာေရာင္နဲ ့pin ၆ pin ပါတဲ့ connector ဟာ PS/2 keyboard connector ျဖစ္ပါတယ္..mini din keyboard connector လို ့လည္းေခၚပါတယ္..
PS/2 port(mouse)
အစိမ္းေရာင္နဲ ့pin ၆ pin ပါတဲ့ connector ဟာ PS/2 mouse connector ျဖစ္ပါတယ္..mini din mouse connector လို ့လည္းေခၚပါတယ္..
USB port
USB port ေတြဟာ 4 pin flat connector (ေခါင္းအျပား)ျဖစ္ျပီး အနည္းဆံုး နွစ္ခုပါေလ့ရိွပါတယ္..USB connector သံုးထားတဲ့ device မွန္သမွ် computer နဲ ့ခ်ိတ္ဆက္ဖို ့ဒီ USB connector ကို လာတပ္ ရပါတယ္..
Ethernet port(network)
Ethernet port ကို RJ-45 port လို ့လည္းေခၚပါတယ္..Desktop မွာ ေရာ laptop မွာပါ ဒီ RJ-45 port ကိုအသံုးျပဳပါတယ္..မိမိကြန္ပ်ဴတာကို network/internet ခ်ိတ္ဆက္သည့္အခါ ဒီ port မွာလာတပ္ရပါတယ္..
Serial port(dial-up modem)
Phone line နဲ ့internet ခ်ိတ္ဆက္သည့္အခါ အသံုးျပဳတဲ့ modem port ျဖစ္ပါတယ္ serial port connector ေတြဟာ male connector ျဖစ္ပါတယ္..pin အေရတြက္အားျဖင့္ 9 pin ပါရိွပါတယ္..
LPT1 printer port(printer)
Printer နဲ ့ကြန္ပ်ဴတာ ခ်ိတ္ဆက္ဖို ့ဒီ connector မွာ လာတပ္ေပးရပါတယ္..DB 25 connector လို ့ လည္းေခၚပါတယ္..printer ေတြကို USB port နဲ ့ အသံုးျပဳတာမ်ားပါတယ္..USB connector က printer မွာမပါဘူးဆိုရင္ေတာ့ DB 25 printer port ကိုအသံုးျပဳရမွာျဖစ္ပါတယ္…..
VGA port(monitor)
VGA DB connector ဟာ 3 row15 pin အျပာေရာင္ ျဖစ္ပါတယ္..motherboard ေတြမွာ built in ပါေလ့ရိွပါတယ္ တစ္ခ်ိဳ ့ဘုတ္ေတြ မွာေတာ့ မပါဘူး အဲဒီလိုမပါခဲ့ရင္ VGA card ကို ၀ယ္စိုက္ရပါတယ္..
Speakers port
သီးခ်င္းနားေထာင္ဖို ့ speaker သံုးျပီးဖြင့္မယ္ဆိုရင္ jack plug ကို ဒီ အစိမ္းနုေရာင္ connector မွာ လာတပ္ရပါတယ္
Line in
Line in ဆိုတာ အျပင္က tape ,recorder ေတြကို ကြန္ပ်ဴတာထဲကို သြင္းခ်င္တယ္ဆိုရင္ ဒီ အျပာနုေရာင္ line in connector မွာလာတပ္ျပီးေတာ့သြင္းလို ့ရပါတယ္..
Microphone
Microphone ကေတာ့ စကားေျပာဖုို ့အတြက္ အသံသြင္းဖုိ ့အတြက္ jack plug ကို ဒီ ပန္းနုေရာင္ connector မွာ လာတပ္ရပါတယ္..ဒီ connector ေတြရဲ ့ေဘးနားေလးေတြမွာ microphone ဆိုလည္း microphone ပံုစံ speaker ဆိုလည္း speaker ပံုေလးေတြ case cover(I/O frame cover ) မွာျပထားေပးတတ္ၾကပါတယ္..
Game port(joystick)
Joystick 2 row 15 pin connector ကို game ေဆာ့တဲ့အခါ အသံုးျပဳတဲ့ connector ျဖစ္ပါတယ္..ခုေနာက္ပိုင္းေတာ့ joystick ကို USB connector ကို အသံုးျပဳတာမ်ားပါတယ္..ဒါေပမဲ့ backward compatible ျဖစ္ေအာင္ထည့္ေပးထားပါတယ္..တစ္ခ်ိဳ ့motherboard ေတြမွာေတာ့ မပါပါဘူး..

Motherboard ေပၚရိွ Switch panel


Motherboard ေပၚမွာ ရိွတဲ ့ switch panel ေတြျဖစ္ပါတယ္..သူကဘာလုပ္ေပးလဲဆုိေတာ့ စက္ကို power on ဖို ့Hard disk မီးလံုးေလးေတြလင္းေစဖို ့ Restart ခလုပ္ေတြ လာေရာက္ခ်ိတ္ဆက္ဖို ့အတြက္ panel ေလးေတြ ပါပါတယ္…ဒါအျပင္ system beep အသံထုတ္ေပးဖို ့အတြက္ speaker အေသးေလးပါရိွပါတယ္(ဒီ speaker က သီခ်င္းနားေထာင္တဲ့ speaker မဟုတ္ပါ)ပံုမွာဆိုရင္ switch panel ရဲ ့ connector ငုတ္ေလးေတြ ေတြ ့ရမွာျဖစ္ပါတယ္..Hard disk LED ကိုေတာ့ ဘယ္ငုတ္မွာ တပ္ရမယ္ power LED ကိုေတာ့ ဘယ္ငုတ္မွာ တပ္ရမယ္ဆိုတာ အဲဒီ panel ရဲ ့ေဘးနားမွာ ငုတ္ အေနအထားရဲ ့ပံုစံအတိုင္း စာေလးနဲ ့ေရးျပထား ပါတယ္.. အဲဒီအတိုင္း တပ္ဆင္နိုင္တယ္..တကယ္လို ့မွ ဘယ္ connector ကဘယ္ငုတ္မွာတပ္ရမွန္း မေသခ်ာဘူးဆိုရင္ motherboard မွာ manual book ကေန ၾကည့္ျပီးတပ္ဆင္နိုင္တယ္(manual စာအုပ္ေပ်ာက္ေနရင္ motherboard model နဲ ့manual book ကို အင္တာနက္မွာ ရွာနိုင္တယ္)


RESET SW - ဆိုတာ restart ခလုတ္ပါပဲ က်ြန္ေတာ္တို ့ကြန္ပ်ဴတာကို restart ခ်ခ်င္တယ္ဆိုရင္ case က restart ခလုတ္ကို နိုပ္ရတယ္မလား..SW ဆိုတာ switch ကိုအတိုေကာက္ေရးထားတာျဖစ္ပါတယ္..
H.D.D LED(IDE LED) - ဆိုတာ က်ြန္ေတာ္တို ့hard disk ပံုမွန္အလုပ္လုပ္တဲ့အေနထားကို LED ကေန ၾကည့္ရင္သိနိုင္တယ္ တစ္ခါတရံ စက္ကေလးလံေနျပီး ဘာမွလုပ္လို ့မရေတာ့တဲ့အေျခအေနမွာ Hard disk lED ကိုၾကည့္လိုက္ပါ အနီေရာင္ျဖစ္ေနျပီး အၾကာၾကီးလင္းေနတတ္ပါတယ္..တစ္ခါတစ္ရံ HDD LED လို ့ေရးတတ္သလို IDE LED လို ့လည္းေရးတတ္ၾကပါတယ္..motherboard company တစ္ခုနဲ့တစ္ခု မတူပါ..
POWER SW(PWR)- ဆိုတာ က်ြန္ေတာ္တို ့စက္ကို စတင္ျပီး ခလုတ္ဖြင့္ဖို ့အတြက္ ခ်ိတ္ထားတဲ့ connector ပဲျဖစ္ပါတယ္…သူက motherboard မွတစ္ဆင့္ power supply အလုပ္လုပ္ေစဖို ့အတြက္ စတင္စက္နိုးေပးတဲ့သူျဖစ္ပါတယ္..
POWER LED - ဆိုတာ power ပံုမွန္အလုပ္လုပ္မွု အေနထားတိုင္းရိွမရိွ LED ကေနသတိထား ၾကည့္ရွု ့ နိုင္ပါတယ္..power LED ကိုတပ္မထားလည္း ကိတ္စေတာ့မရိွပါ..သို ့ေသာ္ power ပိုင္းနဲ ့ ပတ္သက္လာလ်င္ခန္ ့မွန္းရလြယ္ကူေအာင္တပ္ဆင္ေပးသင့္ပါတယ္..
Speaker - ဆိုတာ computer စက္စတက္တက္ခ်င္း တီ ဆိုတဲ ့ post သံေတြ Error beep သံေတြ ေပးဖုိ ့ အတြက္ panel မွာ speaker ဆိုတဲ့ေနရာမွာ တပ္ဆင္ေပးရပါတယ္….ဒီ RESET SW တို ့ H.D.D LED connector တို ့ကို motherboard ေပၚမွာ ရိွတဲ ့switch panel မွာ လာတပ္ေပးရပါတယ္..အခု switch panel ေတြရဲ ့ငုတ္အေနအထားဟာ motherboard ထုတ္တဲ့ ကုမၸဏီေတြ တစ္ခုနဲ ့တစ္ခု မတူညီနိုင္ပါဘူး..ဒါေၾကာင့္ manual ၾကည့္တတ္ရမယ္ motherboard ေပၚမွာရိွတဲ့ panel ရဲ ့ေဘးမွာ ေရးထားတဲ့ စလံုးအတိုေကာက္ေတြ panel ရဲ ့အေနအထားပံုစံေတြကို သိဖို ့လိုပါတယ္..power LED တို ့Hard disk LED တို ့ဆိုတာ ဒီ connector ေတြက case(computer casing) တိုင္းမွာ ပါရိွတဲ့ connector ေတြျဖစ္ပါတယ္..
 
Credit : Myatkokooo

Removing Virus *

ကြ်န္ေတာ္တို႔ ျမင္ေနရတာ Virus ရဲ ့လုပ္ေဆာင္မွဳေတြ ပါတကယ့္ Virus Program ကို ျမင္ရတာမဟုတ္ပါဘူး Virus ကို ျမင္ေအာင္ၾကည့္တတ္ရင္ Anti – Virus Software ေတာင္ မလိုပဲ Virus ကို Delete လုပ္ႏိုင္ပါတယ္ ဒါေပမယ့္ စိတ္ခ်ရေအာင္ Anti – Virus Program တစ္ခုေတာ့တင္ထားရပါမယ္ အရင္ဆံုး လုပ္ရမွာက ….***Autorun *** ပိတ္ထားဖို ့့ပါ .. အလြန္အေရးၾကီးပါတယ္

1. Stop Auto Run Task.

2.Autorun ပိတ္ျပီးရင္ Start ကေန all Program ကေန My Computer ကို ဖြင့္ပါ


3.အေပၚဘားတန္း Tools ေအာက္က Folder Options ကို ႏိွပ္ပါ...။

4.View ကိုႏိုပ္ျပီး Show Hidden files and folder ကို Click ျခင္းျဖင့္ Hidden file ေတြကို ျမင္ရေအာင္လုပ္ပါ

5.ျပီးရင္ Hide Protected operation system file ေရွ ့က အမွန္ေလးကို ျဖဳတ္ပါ Virus က system file အမ်ိဳးအစားျဖစ္လို ့ပါ။

6. ျပီးရင္ Hide extensions for known file types ကို အမွန္ျဖဳတ္ပါ။

7. ျပီးရင္ Use Simple File sharing ကို အမွန္ျဖဳတ္ပါ။

8.ျပီးရင္ OK ကို ႏိွပ္ပါ...။

9.ျပီးရင္ သင့္္ရဲ ့Stick , Mp3 , Mp4 ,Camera တစ္ခုခု ထိုးလိုက္ ပါသင့္ Stick မွာ Virus ရွိသည္ ျဖစ္ေစ၊ မရွိသည္ ျဖစ္ေစ ဒီနည္းအတိုင္းပဲ လုပ္ပါ …။

*****Stick ကို Double Click နဲ ့လံုး၀ မဖြင့္လိုက္ပါနဲ ့…*****

 

ပံုမွာျပထားသလို အေပၚဘားတန္းက Folder ဆိုတာေလးကို Click ပါ

10. ပံုမွာျပထားသလို ေဘးဘက္က ေန သင့္ရဲ ့ Removable Disk ကိုေရြးလိုက္ပါ..။ ဒါဆိုညာဘက္မွာ Removal Disk ထဲက File ေတြ ကို ျမင္ရပါျပီ …မိွန္ေနတဲ ့File ေတြ ၊ Folder ေတြ မရွိဘူး ဆိုရင္ သင့္ရဲ ့Stick မွာ Virus မရွိပါဘူး ..Virus မရွိခဲ ့ရင္…


My Computer ► Tools ► Folder Options မွာ View ကို Click ျပီး Restore Defaults ဆိုတဲ ့Button ေလးကို click ပါ

Hidden file နဲ႔ system file ေတြကို ျပန္ေဖ်ာက္လိုက္တာပါ ဒီလို မေဖ်ာက္ခဲ ့ရင္ Hard disk C: ထဲက မိွန္ေနတဲ့ System File ေတြ မွားဖ်က္မိရင္ Window ျပန္မတက္ႏိုင္ေတာ့ပါဘူး…

ကဲတကယ္လို ့ မိွန္ေနတဲ ့File ေတြ Stick ထဲ မွာ ရွိတယ္ဆိုရင္ေတာ ့.. အဲဒီ Stick ထဲက

****ဘယ္ဖိုင္ေတြ ၊ဖိုဒါေတြ ကို မွ သြားမဖြင့္ပါနဲ ့*****


မိွန္ေနတဲ ့File ေတြ ဟာ Virus ပါပဲ Stick ထဲ က မိွန္ေနတဲ ့ File ေနာ္ သင့္Computer ထဲ က မိွန္ေနတဲ ့ File ေတြကို ေျပာတာမဟုတ္ပါဘူး...။


***Folder မဟုတ္ဘူးေနာ္..File ပါ..***

.exe , .vbs , ….reg , ….com အစရွိသျဖင္. ဆံုးေနတတ္ပါတယ္ အဲဒီလို မိွန္ေနတဲ ့File ေတြ ၊Folder ေတြ ရွိျပီ ဆိုရင္ Autorun.inf ဆိုတဲ့ File ေလးရွိေနပါလိမ့္မယ္ ..။အဲဒါဆိုရင္ေတာ့ ၾကိမ္းေသ Stick ထဲမွာ Virus ရွိေနပါျပီ…မိွန္ေနတဲ့ Folder ေတြ ရွိေနမယ္ ဆိုရင္ေတာ့ အဲဒီ Folder ဟာ စာဖတ္သူရဲ ့ data ေတြ ပါေနတ့ဲ..။

****Folder အစစ္ေတြ ပါ ..သြားမဖ်က္ပါနဲ ့ …****

မိွန္ေနတဲ ့ Folder ေတြရိွွျပီ ဆိုရင္ ေတာ့ အဲဒီ Folder နာမည္ နဲ ့တူ တဲ့ Virus Folder ရွိေနပါလိမ့္မယ္ Virus Folder ဟာ .exe နဲ ့ဆံုးေနပါလိမ့္မယ္ Folder အစစ္ဟာ ေနာက္မွ ဘာ extension မွ မရွိရပါဘူး ….ဥပမာ

သင့္ Folder အစစ္ ► Picture 2 ( Virus က မျမင္ရေအာင္လုပ္ထားသျဖင့္ မိွန္ေနပါလိမ္ ့မယ္ ) Virus Folder ► Picture2.exe ( ထင္ထင္ရွားရွားျမင္ေနရပါလိမ့္မယ္
ဒါမွသာ သင့္ Folder အမွတ္နဲ ့ Virus ကို Click မိမွာေလ.. Click မိတာနဲ ့Virus ၀င္သြားပါလိမ့္မယ့္ )


Virus Folder ကို ေရြးျပီး ဖ်က္ႏိုင္ပါျပီ ….ဖ်က္တဲ ့အခါမွာ သတိထားျပီး ဖ်က္ပါ ..Double click လံုး၀မႏိုပ္မိပါေစနဲ ့..ဖ်က္ခ်င္တဲ ့File ကို Left Click တခ်က္ထဲသာႏိုပ္ Select ေပးျပီး Shift + Delete တြဲ ႏိုပ္ျခင္းျဖင္ ့ဖ်က္ႏိုင္ပါတယ္ ….(သို ့မဟုတ္) ဖ်က္ခ်င္တဲ ့File ေပၚ Right Click နိုပ္ျပီး Delete ကို ေရြးျပီးလဲ ဖ်က္ႏိုင္ပါတယ္ …အမိွဳက္ပံုးထဲကိုပါ Clean လုုပ္ေပးရမွာပါ ...။

…စာဖတ္သူရဲ ့ Stick ထဲက File ေတြ ကို ကိုယ္ အသိဆံုးပါ ကိုယ့္ File လဲ မဟုတ္ဘူး မိွန္လဲမိွန္ေနတယ္ ဆိုရင္ေတာ့ အကုန္သာ ဖ်က္ပစ္ …မိွန္ေနတဲ့ Folder ေတြ ရွိမယ္ဆိုရင္ေတာ့ Folder ထဲကို Double Click နဲ ့၀င္ျပီး အထဲက File ေတြ ကို Copy ကူးယူျပီး စက္ထဲမွာ ျပန္သိမ္းထားလိုက္ေပါ ့ဒါက ေနာက္ဆံုးမွလုပ္ပါဖ်က္သင့္တဲ ့Virus ေတြ အရင္သတ္ပါ Folder က ထင္ရွားေနတယ္ ေနာက္မွာ .exe နဲ ့ဆံုးတယ္ဆိုရင္ေတာ့ သြားမႏိုပ္ပါနဲ ့Virus စစ္စစ္ၾကီးပါ …မသနားနဲ ့…ဖ်က္သာပစ္ဗ်ာ …..ဥပမာ (MyFolder.exe) 

ကဲ အားလံုးျပီး သြားရင္ေတာ့ System File ေတြ ကို ျပန္ျပီးမျမင္ ရေအာင္ေဖ်ာက္ ပစ္ရပါ ေတာ့မယ္။

မဟုတ္ရင္ C: ထဲမွာ ရွိေနတဲ ့မိွန္ေနတဲ့ file တစ္ခုခုကို မွားဖ်က္မိရင္ေတာ့တင္ေပေတာ့ Windows ပဲ …My Computer ► Tools ► Folder Options မွာ View ကို Click ျပီး Restore Defaults ဆိုတဲ ့ Button ေလးကို click ပါ Hidden file နဲ ့ွsystem file ေတြကို ျပန္ေဖ်ာက္လိုက္တာပါ။

ျပီးရင္ေတာ့ Virus ကင္းရွင္းစြာနဲ ့စိတ္ၾကိဳက္သံုႏိုင္ပါျပီ..

Avira Av-ti Virus Program ေလးကို ေတာ့ တင္ထားသင့္ပါ တယ္သူ သတ္လို ့ က်န္ခဲ ့တဲ ့File ေတြကို မွ ကိုယ္တိုင္ ဖ်က္ပစ္ေပါ ့ ..

တစ္ခုေတာ့ ရွိတယ္ ဒီနည္းေတြ ဟာ သင့္ Computer မွာ Virus ကင္းစင္မွ သံုးလို ့ရမွာပါ ….
Virus ၀င္ေနလို ့ကေတာ ့ Folder Options ေတာင္ေတြ ့ရမွာ မဟုတ္ဘူး …

ဒီနည္းကို ကြ်မ္းက်င္လာရင္ Anti Virus software ေတာင္ မလိုပဲ Virus သတ္ႏိုင္ေၾကာင္းပါ ..Virus File ေတြဟာ Right ►Properties ကိုႏိုပ္ၾကည့္ရင္ Hidden ေနရာမွာ အလုပ္ လုပ္လို ့မရေအာင္မွိန္ေနတတ္ပါတယ္ …..

Monday, November 24, 2014

Removing I-Phone Pattern , Passware *User Lock*

နည္းလမ္း(၁)

1.
ကြန္ပ်ဴတာနဲ႕ခ်ိတ္ဆက္ပါ။

2. iFunBox အသံုးျပဳၿပီး "Raw File System" (File mgr.) ထဲ ဝင္ပါ။

3. /Library/MobileSubstrate/DynamicLibraries ထဲဝင္ၿပီး AndroidLock နာမည္နဲ႕အစျပဳတဲ့ ဖိုင္ႏွစ္ခုကို Delete လုပ္ပါ။

4. iDevice ကို ပါဝါပိတ္ၿပီး ျပန္ဖြင့္ပါ။

5. ျမင္ေနက် "Slide to Unlock" ဆိုတဲ့ screen ကို ေတြ႕ရပါလိမ့္မယ္။Done!

နည္းလမ္း(၂)

ကြန္ပ်ဴတာနဲ႕ခ်ိတ္ဆက္ပါ။

iFunbox ကို ဖြင့္ပါ။ ျပီးလ်ွင္ /var/mobile/Library/Preferences ကို သြားပါ။

com.zmaster.AndroidLock.plist ဆိုတဲ့ File Text Editor တစ္ခုခုနဲ့ ဖြင့္ပါ။

<key>Password</key>

<string>123456 </string> ျကားက နံပါတ္မ်ားသည္
Password ျဖစ္ပါတယ္။


 Download i-tunes

Download i-fan Box

Credit : MPXteam.net

i-phonoe Lock နဲ႕ Unlock ကိုအလြယ္ကူဆံုးၾကည့္မယ္

ခုရက္ပိုင္ အြန္လိုင္းမွာ Lock အလံုးကို version ျမွင့္လိုက္လုိ႕ lock ျပန္က်သြားတာေတြ ေတြ႕ေနရေတာ့ စိတ္မေကာင္းျဖစ္မိတယ္ဗ်ာ ေရာင္းတဲ့လူေတြကလည္း ကိုယ္ပိုက္ဆံရ ကို္ယ္ဟန္းဆန္းထြက္ၿပီးရင္ ဆိုၿပီးေရာင္းေနက်တာေတြ႕ရေတာ့........ကဲ Intro ၀င္တာလည္းရွည္သြားၿပီ
ပထမဆံုးအေနနဲ႕ ကၽြန္ေတာ္တို႕  ဒီဆိုဒ္မွာ http://iphoneimei.info/ သြားၿပီးေတာ့ ၀င္ၾကည့္လိုက္္ပါ
ၿပီးရင္ Enter Iphone Imei Number မွာ မိမိဖံုးရဲ႕ Imei နံပါတ္ကိုရိုက္ထည့္ပါ                                 
အဲဆိုဒ္မွာ ၀င္ၾကည့္လုိက္ရင္  Carrier မွာ မိမိဖံုးဟာ ဘယ္ႏိုင္ငံရဲ႕အလံုးဆိုတာသိႏုိင္ပါတယ္ American ဆိုရင္ AT & & , Singapore ဆိုရင္ Singtel စသျဖင့္ေပ့ါဗ်ာ
ေနာက္တဆင့္ကေတာ့  sim lock ဆိုတဲ့ေနရာမွာသြားၾကည့္လိုက္ရင္ locked လုိ႕ျပထားရင္ေတာ့ Lock အလံုးပါ ကၽြန္ေတာ္အေပၚမွာျပထားတဲ့ပံုကေတာ့ Lockအလံုးပါ မိမိဖံုးဟာ unlock ဆိုရင္ေတာ့ Unlocked လို႕ျပမွာပါ အဲမွာ ခၽြင္းခ်က္အေနနဲ႕ေျပာခ်င္တာက  ကၽြန္ေတာ္ ဟုိတေလာက အကိုတစ္ေယာက္ ဖံုး၀ယ္ေတာ့ လုိက္ၾကည့္မိတယ္ဗ် အဲမွာ ၾကည့္မိေတာ့ Sim Lock ဆိုတဲ့ေနရာမွာ Retail Lock ဆိုတာေတြ႕ရတယ္ Retail Lock ဆိုတာကေတာ့ တနည္းအားျဖင့္ဆုိေသာ္ Lock အလံုးလုိ႕ပဲကၽြန္ေတာ္ထင္မိပါတယ္ သူက ခုေနာက္ပိုင္း Gevey Sim တို႕ဘာတို႕နဲ႕ေျဖလို႕႕ရတာကိုဗ်
အဲလို အလံုးဆုိရင္လည္း မ၀ယ္သင့္ပါဘူးလုိ႕ အၾကံေပးခ်င္ပါတယ္ ဘာလို႕လဲဆိုေတာ့ Gevey Sim နဲ႕ Lock ေျဖထားရင္ Lock ေျဖထားတဲ့ version ပဲသံုးလုိ႕ရပါတယ္ version update လုပ္လုိ႕မရႏိုင္ပါ

ဒါဆိုရင္ Lock & Unlock ခြဲျခားႏိုင္ျပီလုိ႕သိႏိုင္ၿပီလုိ႕ထင္ပါတယ္ဗ်


                                                           Admin : XaSK

နည္းပညာအေမးအေျဖ

ျမန္မာ IT လူငယ္မ်ား၏တတ္သိသမ်ွနည္းပညာမ်ားျပန္လည္္မ်ွေဝျခင္း Blog ျဖစ္ပါသည္.

Administrator မ်ားကုိတစ္ဦးျခင္း UPDATE လုပ္ေပးသြားပါမည္။

                                                                        XaSK

နည္းပညာအေမးအေျဖ  Administrators


  • Admin XaSk
  • Admin  Shweminntharlay