dnsi Posted April 9, 2006 Posted April 9, 2006 I got a auto it program and i want it to load whenever a user logs on. It would be very helpful if someone knows how. Thanks My Programs:Flip-Flop File Encryption SysyemMULTIPLAYER-SOCKETSERVERHide An Archive In A Picture
jackyyll Posted April 9, 2006 Posted April 9, 2006 I'm not that sure about this, but I *think* you can just create a shortcut in the "Startup" folder. I also would like an answer to this question so I can use it in one of my programs.
MHz Posted April 9, 2006 Posted April 9, 2006 Well, I guess you want the script to add itself in. This is what you can use. RegWrite('HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run', 'AddValueNameHere', 'Reg_sz', '"' & @ScriptFullPath & '"')
pecloe Posted April 9, 2006 Posted April 9, 2006 or like jackyyll mentioned if you don't want to write to the registry put a shortcut here C:\Documents and Settings\User or All Users\Start Menu\Programs\Startup
dnsi Posted April 12, 2006 Author Posted April 12, 2006 Thanks guys. My Programs:Flip-Flop File Encryption SysyemMULTIPLAYER-SOCKETSERVERHide An Archive In A Picture
GaryFrost Posted April 12, 2006 Posted April 12, 2006 Thanks guys. careful with puting things in the startup folder, many virus protection programs will view things not know to them as trojans/virus's SciTE for AutoItDirections for Submitting Standard UDFs  Don't argue with an idiot; people watching may not be able to tell the difference. Â
Evil_Has_Survived Posted April 12, 2006 Posted April 12, 2006 Well, I guess you want the script to add itself in. This is what you can use. RegWrite('HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run', 'AddValueNameHere', 'Reg_sz', '"' & @ScriptFullPath & '"') can you give a example script thanks Thanks in advance
Evil_Has_Survived Posted April 12, 2006 Posted April 12, 2006 That is the example script.so i just add it to my script, and you don't need runonce or run in order tell it how many times to do it, Thanks in advance
greenmachine Posted April 12, 2006 Posted April 12, 2006 Give me a T (T!) Give me an R (R!) Give me a Y (Y!) Give me an S (S!) Give me an O (O!) Give me an M (M!) Give me an E (E!) Give me a T (T!) Give me an H (H!) Give me an I (I!) Give me an N (N!) Give me a G (G!) What's that spell? TRY SOMETHING.
Evil_Has_Survived Posted April 12, 2006 Posted April 12, 2006 (edited) Give me a T (T!)Give me an R (R!)Give me a Y (Y!)Give me an S (S!)Give me an O (O!)Give me an M (M!)Give me an E (E!)Give me a T (T!)Give me an H (H!)Give me an I (I!)Give me an N (N!)Give me a G (G!)What's that spell?TRY SOMETHING.TRY SOMETHINGumm whats a tree stump, and i add the line to my script nothing Edited April 12, 2006 by Evil_Has_Survived Thanks in advance
GaryFrost Posted April 12, 2006 Posted April 12, 2006 umm whats a tree stump, and i add the line to my script nothingYou won't know if it does anything or not till you reboot/logonjust because you put in the registry in the run key, doesn't make it automagically run. SciTE for AutoItDirections for Submitting Standard UDFs  Don't argue with an idiot; people watching may not be able to tell the difference. Â
Evil_Has_Survived Posted April 12, 2006 Posted April 12, 2006 (edited) You won't know if it does anything or not till you reboot/logon just because you put in the registry in the run key, doesn't make it automagically run. i did reboot didn't do nothing example of wat i did expandcollapse popupRegWrite('HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run', 'AddValueNameHere', 'Reg_sz', '"' & @ScriptFullPath & '"') ; Press Esc to terminate script, Pause/Break to "pause" Global $Paused HotKeySet("{PAUSE}", "TogglePause") HotKeySet("{TAB}", "Terminate") HotKeySet("+!d", "ShowMessage");Shift-Alt-d ;;;; Body of program would go here;;;; MsgBox(64, "Done.", "©2006 - John Matthews push shift-alt-d for help.") While 1 If WinExists("Diablo II") Then HotKeySet("{Space}", "close") Else ToolTip( "The game isn´t running!",0,0) ;Exit(0) EndIf Sleep(100) WEnd ;;;; Functions Func Close() Send("!{F4}") EndFunc Func TogglePause() $Paused = NOT $Paused While $Paused sleep(100) HotKeySet("{Space}") ToolTip('Script is "Paused"',0,0) WEnd ToolTip("") EndFunc Func Terminate() Exit 0 EndFunc Func ShowMessage() MsgBox(4096,"","©2006 - John Matthews help topic; 1 push tab to shut the script off... 2 push pause to turn the script on/off if on space = log out if off space = chat with out getting booted... 3 shift-alt-d for this help topic.") EndFunc Edited April 12, 2006 by Evil_Has_Survived Thanks in advance
GaryFrost Posted April 12, 2006 Posted April 12, 2006 you compiled it? ran it one time so it would write the entry into the registry? if so it should work next time you logon. SciTE for AutoItDirections for Submitting Standard UDFs  Don't argue with an idiot; people watching may not be able to tell the difference. Â
PerryRaptor Posted April 12, 2006 Posted April 12, 2006 Also, When booting the computer/workstation in Safe Mode; Items in the ...\All Users\Programs\Startup folder do not execute. Same goes for the Registry Key ...\Run.
caramen Posted April 13, 2006 Posted April 13, 2006 Ave you change 'AddValueNameHere' ? maybe stupid question but we dont know maybe ... RegWrite('HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run', 'AddValueNameHere', 'Reg_sz', '"' & @ScriptFullPath & '"') My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler  Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Â
dnsi Posted April 18, 2006 Author Posted April 18, 2006 Same here it doesn't work! My Programs:Flip-Flop File Encryption SysyemMULTIPLAYER-SOCKETSERVERHide An Archive In A Picture
blindwig Posted April 18, 2006 Posted April 18, 2006 Did you check the registery key to see that it had actually been added? Does your script do anything to prove that it has run? Like write a file or something? Also I think that a Limited Used will not be able to run the items in the Run and RunOnce key, so if you're trying to use a limited user to test it with it won't work. My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
dnsi Posted April 18, 2006 Author Posted April 18, 2006 Nope the startup folder doesn't work! My Programs:Flip-Flop File Encryption SysyemMULTIPLAYER-SOCKETSERVERHide An Archive In A Picture
dnsi Posted April 18, 2006 Author Posted April 18, 2006 The reg works its just the startup folder. My Programs:Flip-Flop File Encryption SysyemMULTIPLAYER-SOCKETSERVERHide An Archive In A Picture
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