Jump to content

Taskbar/start Menu And System Properties


Recommended Posts

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?

Link to comment
Share on other sites

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)
EndFunc

If 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 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!
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...