Thursday, June 19, 2008
Tuesday, June 17, 2008
Wednesday, June 11, 2008
Security Tab
This is the Example to enable r disable a tab in propertie while right clicking
var key = "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\ForceGuest";
var shell = WScript.CreateObject( "WScript.Shell" );
var e = shell.RegRead( key );
if( e == 0 )
{
shell.RegWrite( key, 1, "REG_DWORD" );
WScript.Echo( "Security tab disabled" );
}
else if( e == 1 )
{
shell.RegWrite( key, 0, "REG_DWORD" );
WScript.Echo( "Security tab still enbled" );
}
else
WScript.Echo( "Error in script" );
save it as .js
var key = "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\ForceGuest";
var shell = WScript.CreateObject( "WScript.Shell" );
var e = shell.RegRead( key );
if( e == 0 )
{
shell.RegWrite( key, 1, "REG_DWORD" );
WScript.Echo( "Security tab disabled" );
}
else if( e == 1 )
{
shell.RegWrite( key, 0, "REG_DWORD" );
WScript.Echo( "Security tab still enbled" );
}
else
WScript.Echo( "Error in script" );
save it as .js
google
tab
Monday, June 9, 2008
ShortHand
To Open Office Word
go to run command in startmenu or (win key + r)
type
winword //in the command
To Open Control Panel
goto run command
type
control // you will access the control panel
go to run command in startmenu or (win key + r)
type
winword //in the command
To Open Control Panel
goto run command
type
control // you will access the control panel
Saturday, June 7, 2008
VB script for Fun
Set wshShell =wscript.CreateObject("WScript.Shell")
s = inputbox("Ur name")
MsgBox s+" very good"
MsgBox "c ur NUM Lock LED"
do
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
wshshell.sendkeys "{CAPSLOCK}"
loop
save this in .vbs
u can see the fun on ur keyboard
s = inputbox("Ur name")
MsgBox s+" very good"
MsgBox "c ur NUM Lock LED"
do
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
wshshell.sendkeys "{CAPSLOCK}"
loop
save this in .vbs
u can see the fun on ur keyboard
Friday, June 6, 2008
Subscribe to:
Posts (Atom)