preload

How to Remove the “Folders” From My Computer in Windows 8.1

image
Windows 8.1 bought some of the more common folders to the top of the “This PC” window. Having used Windows since its inception, we find this looks odd and sought to fix it.

Press the Win + R keyboard combination to bring up a run box, then type “regedit” and press enter.
image

Read More...

>> go to start menu 
>> CMD  সার্চ করুন
>> cmd কে run as administrator দিয়া ওপেন করুন
টাইপ>>> SLMGR -REARM
এন্টার চাপুন .........
রিস্টার্ট pc .....
বি : দ্র : আপনার pc তে windows 7 নট জেনুইন কপি রানিং থাকতে হবে

Read More...

বর্তমানে দেখা যাচ্ছে আপনার অনুমতি ছাড়াই আপনার বন্ধু/কাছের লোক আপনার পিসি/ল্যাপটপে পেনড্রাইভ/কার্ড রিডার ঢুকিয়ে ইচ্ছামত ফাইল আদান প্রদান করছে যার ফলে আপনার অনেক গোপণীয় ফাইল চুড়ি বা আপনার পিসি ফাইরাসে আক্রান্ত হয়ে আপনার প্রয়োজনীয় সফটওয়্যার বা ফাইল হারাতে হচ্ছে। তবে ছোট একটি কাজ করলে আপনার পিসিতে আর কেউ পেনড্রাইভ/কার্ড রিডার ঢুকালেও তা আর সো করবে না। তখন যে পেনড্রাইভ ঢুকিয়েছে সে ভাববে তার পেনড্রাইভটি নষ্ট হইছে।
প্রথমে Start থেকে Run এ গিয়ে কমেন্ট বক্সে Regedit লিখে এন্টার চাপুন। নিচের চিত্রের মত একটি  উইন্ডো ওপেন হবে। আপনাদের সুবিধারতে লাল চিহ্ন দিয়ে মার্ক করে দেওয়া হল।






এখন ৩ নাম্বার HKEY_LOCAL_MACHINE ক্লিক করে System যান সেখান থেকে Current Control Set  Services গিয়ে একেবারে নিচের দিকে USBSTOR এ গিয়ে Start ওপেন করে ভ্যালু ৩ থাকলে ৪ করে দিন। আপনার কাজ শেষ এখন পেনড্রাইভ লাগিয়ে দেখুন পিসিতে আর সো করছে না।
আবার যখন পেনড্রাইভ/কার্ডরিডার ব্যবহারের প্রয়োজন হবে তখন ভ্যালুটাকে আবার ৩ করে দিলেই আবার আগের মত পেনড্রাইভ ব্যবহার করতে পারবেন।



Read More...



1. Boot into “Safe Mode“. To do this, press F8 as it is booting up. Go into “Safe Mode” by choosing the “Safe Mode” option.
2. Once you are at the desktop in “Safe Mode”, Click “Start” then click “Run“.
3. At the run command prompt type the following EXACTLY:
rundll32.exe syssetup,SetupOobeBnk
(NOTE: The “Oo”‘s in Oobe are “o’s” – not “zero’s” There is one space after rundll32.exe. It is case sensitive.)
4. Click OK – wait a few seconds – This just reset Windows Activation for 30 days.
5. Reboot the PC into normal mode – log in – re-activate Windows.


==================================================================



If you are comfortable working in the registry you can try this:

Go into Safe Mode
Once in Windows go to Start -> Run -> type Regedit -> OK/Enter
On Left Side:
Expand HKEY_LOCAL_MACHINE
Expand Software
Expand Microsoft
Expand Windows NT
Expand CurrentVersion
Click WPAEvents
Make a backup of the key:
File -> Export
Browse to "My Document"
Give the file a Name (Eg WPAEvents)
Click Save
On Right Side:
Double Click OOBETimer
Delete any of the values
Exit Regedit
Restart the PC and see if you can now activate
Note you may have to enter your product key again.

Read More...

  1. Start Microsoft Excel.
  2. Press ALT+F11 to start the Visual Basic Editor.
  3. On the Insert menu, click Module.
  4. Type the following code into the module sheet.


Option Explicit
'Main Function
Function SpellNumber(ByVal MyNumber)
    Dim TK, paisa, Temp
    Dim DecimalPlace, Count
    ReDim Place(9) As String
    Place(2) = " Thousand "
    Place(3) = " Million "
    Place(4) = " Billion "
    Place(5) = " Trillion "
    ' String representation of amount.
    MyNumber = Trim(Str(MyNumber))
    ' Position of decimal place 0 if none.
    DecimalPlace = InStr(MyNumber, ".")
    ' Convert paisa and set MyNumber to dollar amount.
    If DecimalPlace > 0 Then
        paisa = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _
                  "00", 2))
        MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
    End If
    Count = 1
    Do While MyNumber <> ""
        Temp = GetHundreds(Right(MyNumber, 3))
        If Temp <> "" Then TK = Temp & Place(Count) & TK
        If Len(MyNumber) > 3 Then
            MyNumber = Left(MyNumber, Len(MyNumber) - 3)
        Else
            MyNumber = ""
        End If
        Count = Count + 1
    Loop
    Select Case TK
        Case ""
            TK = "No TK"
        Case "One"
            TK = "One Dollar"
         Case Else
            TK = TK & " TK"
    End Select
    Select Case paisa
        Case ""
            paisa = " and No paisa"
        Case "One"
            paisa = " and One Cent"
              Case Else
            paisa = " and " & paisa & " paisa"
    End Select
    SpellNumber = TK & paisa
End Function
     
' Converts a number from 100-999 into text
Function GetHundreds(ByVal MyNumber)
    Dim Result As String
    If Val(MyNumber) = 0 Then Exit Function
    MyNumber = Right("000" & MyNumber, 3)
    ' Convert the hundreds place.
    If Mid(MyNumber, 1, 1) <> "0" Then
        Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
    End If
    ' Convert the tens and ones place.
    If Mid(MyNumber, 2, 1) <> "0" Then
        Result = Result & GetTens(Mid(MyNumber, 2))
    Else
        Result = Result & GetDigit(Mid(MyNumber, 3))
    End If
    GetHundreds = Result
End Function
     
' Converts a number from 10 to 99 into text.
Function GetTens(TensText)
    Dim Result As String
    Result = ""           ' Null out the temporary function value.
    If Val(Left(TensText, 1)) = 1 Then   ' If value between 10-19...
        Select Case Val(TensText)
            Case 10: Result = "Ten"
            Case 11: Result = "Eleven"
            Case 12: Result = "Twelve"
            Case 13: Result = "Thirteen"
            Case 14: Result = "Fourteen"
            Case 15: Result = "Fifteen"
            Case 16: Result = "Sixteen"
            Case 17: Result = "Seventeen"
            Case 18: Result = "Eighteen"
            Case 19: Result = "Nineteen"
            Case Else
        End Select
    Else                                 ' If value between 20-99...
        Select Case Val(Left(TensText, 1))
            Case 2: Result = "Twenty "
            Case 3: Result = "Thirty "
            Case 4: Result = "Forty "
            Case 5: Result = "Fifty "
            Case 6: Result = "Sixty "
            Case 7: Result = "Seventy "
            Case 8: Result = "Eighty "
            Case 9: Result = "Ninety "
            Case Else
        End Select
        Result = Result & GetDigit _
            (Right(TensText, 1))  ' Retrieve ones place.
    End If
    GetTens = Result
End Function
    
' Converts a number from 1 to 9 into text.
Function GetDigit(Digit)
    Select Case Val(Digit)
        Case 1: GetDigit = "One"
        Case 2: GetDigit = "Two"
        Case 3: GetDigit = "Three"
        Case 4: GetDigit = "Four"
        Case 5: GetDigit = "Five"
        Case 6: GetDigit = "Six"
        Case 7: GetDigit = "Seven"
        Case 8: GetDigit = "Eight"
        Case 9: GetDigit = "Nine"
        Case Else: GetDigit = ""
    End Select
End Function

Read More...

-

-
Dhaka

Status

Total Views: