http://www.freevideolectures.com
Some of C++ VideosSome of C++
href="http://www.wlap.org/cern/lectures/tech/c/00
http://www.youtube.com/watch?v=nziy2_U5JQI
Video Java Programming basics
http://www.learnerstv.com/video/video.php?video=191&cat=Computers
Beginning Perl for Nonprogrammers
http://video.google.com/videoplay?docid=8352356480985227225&hl=en
Intro to programming with Python and Tkinter
http://ourmedia.org/node/2128
Tuesday, July 29, 2008
Friday, July 25, 2008
Monday, July 7, 2008
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
Subscribe to:
Posts (Atom)