firman 0 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? Share this post Link to post Share on other sites
Valik 478 Posted April 13, 2004 Try this: rundll32.exe shell32.dll,Options_RunDLL 1 Found that after much registry digging on XP Pro. Share this post Link to post Share on other sites
firman 0 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. Share this post Link to post Share on other sites
CyberSlug 6 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! Share this post Link to post Share on other sites