About changing permision client

(imported topic written by NMG2_Banjop_Ramanoo)

I try to use relevance Langeuage change permision client machine to Administrator

how to do it ?

someone recomment or question with me

I begin for relevance Langeuage

(imported comment written by SystemAdmin)

Not exactly sure what you are referring to. You can edit file, directory and windows permissions.

If you mean windows security you can make a task with action:

Action Parameter Query “adgrp” with Description “Enter Domain\Group to be added”

run net.exe localgroup administrators {parameter “adgrp” of action} /add

this will prompt you for a group or user you would like to add to the local administrator group, then run a dos command to execute with your parameters.

(imported comment written by NMG2_Banjop_Ramanoo)

thank you

coolitman229

I can change permission in windowxp but I can’t change permission windows 7

how to do it?

I want someone recommeded with me

(imported comment written by SystemAdmin)

Tested fine on my Windows 7 using relevance debugger but not as an actual action.

(imported comment written by SystemAdmin)

Nothing a good old batch can’t fix. You can make a task usign the code below. I have tested it with windows 7:

Action Parameter Query “adgrp” with Description “Enter Domain\Group to be added”

delete temp.bat

delete __createfile

createfile until end_bat

net localgroup administrators {parameter “adgrp” of action} /add

end_bat

copy __createfile temp.bat

runhidden temp.bat

(imported comment written by NMG2_Banjop_Ramanoo)

thank you

coolitman229