This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Monday, October 10, 2022

Activate Windows 10 Using CMD

Activate Windows 10 Commands for CMD


—-----------------------------------------------------------------------------------------------

🔹Windows 10 Pro

slmgr.vbs /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX

slmgr.vbs /skms kms.teevee.asia 

slmgr.vbs /ato 

—-----------------------------------------------------------------------------------------------

🔹Windows 10 Home Single Language

slmgr.vbs /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH

slmgr.vbs /skms kms.teevee.asia 

slmgr.vbs /ato

—-----------------------------------------------------------------------------------------------

🔹Windows 10 Pro for Workstations

slmgr.vbs /ipk NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J

slmgr.vbs /skms kms.teevee.asia 

slmgr.vbs /ato

—-----------------------------------------------------------------------------------------------

🔹Windows 10 Enterprise

slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43

slmgr.vbs /skms kms.teevee.asia 

slmgr.vbs /ato

—-----------------------------------------------------------------------------------------------

🔹Windows 10 Education

slmgr.vbs /ipk NW6C2-QMPVW-D7KKK-3GKT6-VCFB2

slmgr.vbs /skms kms.teevee.asia 

slmgr.vbs /ato 

—-----------------------------------------------------------------------------------------------

🔹Windows 10 Home

slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99

slmgr.vbs /skms kms.teevee.asia 

slmgr.vbs /ato  

—-----------------------------------------------------------------------------------------------

Comment      |      ✅ Shar


Shutdown computer with custom message (.bat)

 Shutdown computer with custom message (.bat)


@echo off
Shutdown.exe -s -t 10
cls
msg * your message here!

Text to speech (.vbs)

 Text to speech (.vbs)


Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message

Private folder (.bat)

 Private folder (.bat)


Quote:
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== password goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End

Password generator (.bat)

 Password generator (.bat)


@echo off
:Start2
cls
goto Start
:Start
title Password Generator
echo I will make you a new password. 
echo Please write the password down somewhere in case you forget it. 
echo ----------------------------------------¬-----------------------
echo 1) 1 Random Password
echo 2) 5 Random Passwords
echo 3) 10 Random Passwords
echo Input your choice
set input=
set /p input= Choice: 
if %input%==1 goto A if NOT goto Start2
if %input%==2 goto B if NOT goto Start2
if %input%==3 goto C if NOT goto Start2
:A
cls
echo Your password is %random%
echo Now choose what you want to do. 
echo 1) Go back to the beginning
echo 2) Exit
set input=
set /p input= Choice: 
if %input%==1 goto Start2 if NOT goto Start 2
if %input%==2 goto Exit if NOT goto Start 2
:Exit
exit
:B
cls
echo Your 5 passwords are %random%, %random%, %random%, %random%, %random%.
echo Now choose what you want to do. 
echo 1) Go back to the beginning
echo 2) Exit
set input=
set /p input= Choice: 
if %input%==1 goto Start2 if NOT goto Start 2
if %input%==2 goto Exit if NOT goto Start 2
:C
cls
echo Your 10 Passwords are %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%
echo Now choose what you want to do. 
echo 1) Go back to the beginning
echo 2) Exit
set input=
set /p input= Choice: 
if %input%==1 goto Start2 if NOT goto Start 2
if %input%==2 goto Exit if NOT goto Start 2

Guessing game (.bat)

 Guessing game (.bat)



@echo off
color 0e
title Guessing Game by seJma
set /a guessnum=0
set /a answer=%RANDOM%
set variable1=surf33
echo -------------------------------------------------
echo Welcome to the Guessing Game! 
echo. 
echo Try and Guess my Number! 
echo -------------------------------------------------
echo. 
:top
echo. 
set /p guess=
echo. 
if %guess% GTR %answer% ECHO Lower! 
if %guess% LSS %answer% ECHO Higher! 
if %guess%==%answer% GOTO EQUAL
set /a guessnum=%guessnum% +1
if %guess%==%variable1% ECHO Found the backdoor hey?, the answer is: %answer%
goto top
:equal
echo Congratulations, You guessed right!!! 
echo. 
echo It took you %guessnum% guesses. 
echo. 
pause

Notepad diary (no special extension is required)

 Notepad diary (no special extension is required)

Notepad එකෙහි පහත පරිදි සටහන්කර Save කරන්න.

.LOG

Fake error message (.vbs)

Fake error message (.vbs)


x=msgbox("Your Message Here", 0+16, "Your Title Here")

Optical disc drive trick (.vbs)

Optical disc drive trick (.vbs)


Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count -1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count -1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Keyboard lights trick (.vbs)

Keyboard lights trick (.vbs)
 


Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop

Saturday, October 8, 2022

                        Web Page Edit Code

01.ඔබට අවශ්‍ය Webpage එක වෙත යන්න.

02.Right click කර inspect වෙත යන්න.

03.ඉන්පසු Console වෙත යන්න

04.ඉන්පසු පහත පරිදි ටයිප් කරන්න

        ON  කිරීම සදහා  =  document.designMode = 'on'

        OFF කිරීම සදහා =  document.designMode = 'off'

05.ටයිප් කර Enter Key එක ප්‍රෙස් කරන්න

06.Webpage එකෙහි ඔබට අවශ්‍ය කරුණු ටය්ප් කරන්න.

                                                                                             Gagana 😈

Friday, October 7, 2022

Computer shortcut keys


















Matrix Random Code

 


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

@Echo off

title GAGANA

color 0A

mode 1000

goto Matrix

:Matrix

echo %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%

ping 1.1.1.1 -n 0.1 -w 500>nlu

goto Matrix

Matrix Biutiful Color Code



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

@echo off

title GAGANA

:C

color C

echo   1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0     

goto A

:A

color A

echo     1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0   

goto 9

:9

color 9

echo       1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0     1     0 

goto C