JSThePatriot Posted October 29, 2004 Posted October 29, 2004 You've also failed to demonstrate a 1st grade level of deductive reason. Figuratively speaking, given 1+1, I've seen you fail to see the obvious link and present the result of 2 on more than one occasion.That to me is another Valik quote as well. Geeze I should start a website that just has quotes from Valik it would make us both rich! Valik would you be interested?JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)
CyberSlug Posted October 29, 2004 Posted October 29, 2004 I imagine "debug" could mess things up.... but my imagination is perverted...Lar.<{POST_SNAPBACK}>Like what's described at the bottom of this page Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
ezzetabi Posted October 29, 2004 Posted October 29, 2004 (edited) Every one tries visiting this pages:Ezzetabi's posts.Ezzetabi's topics.Larry's posts.Larry's topics.Valik's posts.Valik's topics.And finally...Blackdiablo 'Py7|-|[]/\/''s posts. Blackdiablo 'Py7|-|[]/\/''s topics.Blackdiablo 'BL@(K-R34P3R''s posts.Blackdiablo 'BL@(K-R34P3R''s topics.Unluckly Jon unregistered the old BlackDiablo name and so looking to the post when he was with that name is difficult.Repeat with every other user you want. Edited October 29, 2004 by ezzetabi
Valik Posted October 29, 2004 Posted October 29, 2004 I feel so special.<{POST_SNAPBACK}>Speical as in touched in a naughty place special, or special as in short bus Corky's friend special?
Guest Py7|-|[]/\/ Posted October 29, 2004 Posted October 29, 2004 Special as in being responded to by valik with another question special.
ezzetabi Posted October 29, 2004 Posted October 29, 2004 (edited) Your nonsenses are specials indeed. Edited October 29, 2004 by ezzetabi
SlimShady Posted December 1, 2004 Posted December 1, 2004 Locking the workstation has been disabled on this machine, is there anyway to lock it or create a program that would lock the computer from usage (windows lock of cours lol)...? windows key+L has been disabled and the lock button has been greyd out from the control alt delete screen (while logged in)<{POST_SNAPBACK}>Because there's no shortcut/hotkey to lock your PC on Win2k, I searched for it on Google.I found source code of C++ that locks your PC.I compiled it and it works perfect using AutoIts hotkeyset.Here's a small piece of my script that uses that:If @OSVersion <> "WIN_XP" Then HotKeySet("#l", "LockComputer") Func LockComputer() Run(@ScriptDir & "\LockPC.exe") EndFuncI put the source and the executable in the attached zip file.
ali Posted December 1, 2004 Author Posted December 1, 2004 (edited) ok...thnx slim shady....realli appreciated...works great... Edited December 1, 2004 by ali
ali Posted December 1, 2004 Author Posted December 1, 2004 ur small script is helpful....will add it as a hot key to my script and run have it run the program as ur script says...
ioliver Posted December 1, 2004 Posted December 1, 2004 Sounds like one of those damn school computer problems. Where the teacher has control over all of them. Sniff around program files, or search for .sys programs running.<{POST_SNAPBACK}>Python, you may be right, it could be some type of blocking software. Or, it could be a Group Policy, if the computer is running at least Windows 2000.Thanks for reading my post,Ian-- I did enjoy all the Hacking/Cracking discussions. "Blessed be the name of the Lord" - Job 1:21Check out Search IMF
ali Posted December 1, 2004 Author Posted December 1, 2004 Python, you may be right, it could be some type of blocking software. Or, it could be a Group Policy, if the computer is running at least Windows 2000.Thanks for reading my post,Ian-- I did enjoy all the Hacking/Cracking discussions.<{POST_SNAPBACK}>think its a group policy thru server 2003...lotta restrictions
CyberSlug Posted December 1, 2004 Posted December 1, 2004 Because there's no shortcut/hotkey to lock your PC on Win2k ....<{POST_SNAPBACK}>I thought the following would work--but I'm not on Win2k or locked down by group policy:Run("rundll32.exe user32.dll,LockWorkStation") Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
ali Posted December 1, 2004 Author Posted December 1, 2004 (edited) I thought the following would work--but I'm not on Win2k or locked down by group policy:Run("rundll32.exe user32.dll,LockWorkStation")<{POST_SNAPBACK}>hey tht wrkd perfect lol...faster as well...both scripts wer good thnx....oh and also...anything else u cud do with tht? like replace LockWorkStation to something else? anythin to show the desktop without having to use the show desktop button on quick launch...coz yes agen windows+d is disabled...also...if i wanted to use a combo of the break key and control key...how would i do it?this is what i have basically (a hotkey set)...but i want it to use both...i knw control is "^"HotKeySet("{PAUSE}", "Pause")lastly...is there a way to pass on a variable from one script to another? (compiled script)eg. i have one script in which i have a user input their name...is there a way to get the name from another script? Edited December 1, 2004 by ali
CyberSlug Posted December 2, 2004 Posted December 2, 2004 hey tht wrkd perfect lol...faster as well...both scripts wer good thnx....oh and also...anything else u cud do with tht? ........<{POST_SNAPBACK}>Based on this info on the "show desktop icon" I came up with this$path = "C:\WhereEverQuickLaunchIs\Desktop.scf";adjust as needed Run(@ComSpec & " /c " & $path, "", @SW_HIDE)If "^{PAUSE}" or "{CTRLBREAK}" don't work as hotkeys, then maybe Ctrl+Break cannot be set....Passing data between scripts is messy.... Most methods involve temporary ini files or changing window titles.... Search the forums Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now