firman Posted April 13, 2004 Posted April 13, 2004 I was wondering if anyone new the rundll32 on how to open up the taskbar/startmenu properties and also under system properties the computer name and/or network identification tab in Win 2000 and XP. Also...can you run rundll32 in AutoIT3 or need to use a bat file?
Valik Posted April 13, 2004 Posted April 13, 2004 Try this: rundll32.exe shell32.dll,Options_RunDLL 1 Found that after much registry digging on XP Pro.
firman Posted April 13, 2004 Author Posted April 13, 2004 you peoples are the best...thank you.....do they work for 2000 also... I can not check them for a few more ours...if not tomorrow.
CyberSlug Posted April 13, 2004 Posted April 13, 2004 (edited) http://www.virtualplastic.net/html/misc_cut.html lists some of these....You do not need a batch file if you do something like this:RunCmd("control sysdm.cpl,,1") Func RunCmd($cmd) Return RunWait(@ComSpec & ' /c ' & '"' & $cmd & '"', "", @SW_HIDE) EndFuncIf all else fails, you can create a shortcut to taskbar/startmenu properties and then bundle the LNK file with your script....FileInstall("C:\Taskbar and Start Menu.LNK", @TempDir & "\StartMenuProp.lnk") RunCmd(@TempDir & "\StartMenuProp.lnk") Edited April 13, 2004 by CyberSlug 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