Jump to content

Recommended Posts

Posted

I have created a sciprt, for windows XP PRO, in order to open with the rights of administrator the net property so as to be able to modify the configuration but it does not work. what I have mistaken? :lmao:

; Set the RunAs parameters to use local adminstrator account

RunAsSet("administrator", @Computername, "Password")

; Run registry editor as admin

RunWait("C:\WINDOWS\system32\rundll32.exe /d

C:\WINDOWS\system32\rundll32.dll,user,wnetconnectdialog")

; Reset user's permissions

RunAsSet()

Posted

Here's a piece of script that might come in handy:

Func ControlPanel($APPLET)

; $Applet should be one of the names displayed when looking at Control Panel

; in an Explorer view

; Note: Designed to work under Windows XP only. If it works under other

; Windows versions, I'd be suprised.

Local $RUNDLL32 = @SystemDir & "\rundll32.exe"

Select

Case $APPLET = "network connections"

Run($RUNDLL32 & " Shell32.dll,Control_RunDLL ncpa.cpl")

EndSelect

EndFunc

Or...

Run(@ComSpec & " /c rundll32.exe shell32.dll,Control_RunDLL ncpa.cpl", "", @SW_MINIMIZE)

Then you can proceed to whatever section you'd like.

Hope this helps!

Roger

Roger O."When people show you who they are, believe them.” --Mark Twain

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
  • Recently Browsing   0 members

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