| View previous topic :: View next topic |
| Author |
Message |
montiaro
Joined: 20 Feb 2008 Posts: 76
|
Posted: Wed Aug 27, 2008 5:03 am Post subject: logonto wireless |
|
|
i have a some code that is based on coordinates for reimputting the wireless key in, is there a way to make it so that it can do it on all computers that have the same setup but not same coordinates?
start>control panel>right click network connections>wireless connections
there is a lil more to it but tell me if anyone can help please |
|
| Back to top |
|
 |
montiaro
Joined: 20 Feb 2008 Posts: 76
|
Posted: Wed Aug 27, 2008 5:24 am Post subject: |
|
|
| is there anyway to make it press start button and go to control panel? but not by coordinates |
|
| Back to top |
|
 |
poo_noo
Joined: 08 Dec 2006 Posts: 137 Location: Sydney Australia
|
Posted: Wed Aug 27, 2008 10:17 am Post subject: |
|
|
look up CLSID List (Windows Class Identifiers) in the help
| Code: | | run ::{7007acc7-3202-11d1-aad2-00805fc1270e} ; Network Connections |
It might get you started _________________ Paul O |
|
| Back to top |
|
 |
montiaro
Joined: 20 Feb 2008 Posts: 76
|
Posted: Wed Aug 27, 2008 8:26 pm Post subject: |
|
|
ok well that works very well right now but i need it to right click the wireless connection and go to view wireless access points and then press the wireless access point and then click connect and input the key
and by the way how did u get 7007acc7-3202-11d1-aad2-00805fc1270e (just curious so i know how to do it another time) |
|
| Back to top |
|
 |
poo_noo
Joined: 08 Dec 2006 Posts: 137 Location: Sydney Australia
|
|
| Back to top |
|
 |
montiaro
Joined: 20 Feb 2008 Posts: 76
|
Posted: Thu Aug 28, 2008 5:26 am Post subject: |
|
|
| after it opens control panel and network connections is there anyway to make it right click on one of the icons i want and go down to one of the options on the right click? |
|
| Back to top |
|
 |
montiaro
Joined: 20 Feb 2008 Posts: 76
|
Posted: Thu Aug 28, 2008 8:32 pm Post subject: |
|
|
| bump? |
|
| Back to top |
|
 |
poo_noo
Joined: 08 Dec 2006 Posts: 137 Location: Sydney Australia
|
Posted: Thu Aug 28, 2008 11:03 pm Post subject: |
|
|
tested but crude.
| Code: | run ::{7007acc7-3202-11d1-aad2-00805fc1270e}
sleep 5000
Send,w ; select Wireless Network Connection (starts with the letter W)
Send,{APPSKEY}r ; send a rightclick and select the Properties option (send the letter R)
Return |
Maybe someone might have a tricky clever DLL solution. _________________ Paul O |
|
| Back to top |
|
 |
montiaro
Joined: 20 Feb 2008 Posts: 76
|
Posted: Fri Aug 29, 2008 4:50 am Post subject: |
|
|
| Code: | run ::{7007acc7-3202-11d1-aad2-00805fc1270e}
sleep 5000
Send,w ; select Wireless Network Connection (starts with the letter W)
Send,{APPSKEY}r ; send a rightclick and select the Properties option (send the letter R)
Return |
well i wanted it to right click and go down to view wireless connections not properties what letter would that be? |
|
| Back to top |
|
 |
poo_noo
Joined: 08 Dec 2006 Posts: 137 Location: Sydney Australia
|
Posted: Fri Aug 29, 2008 5:34 am Post subject: |
|
|
| Code: | ; assumes that the Wireless Network is enabled
run ::{7007acc7-3202-11d1-aad2-00805fc1270e}
sleep 5000
Send,w ; select Wireless Network Connection (starts with the letter W)
; Send,{ENTER} ; send ENTER
Send,{APPSKEY}v ; send a rightclick and select the View Available Wireless networks option (starts with the letter v)
Return
|
Play around the the letter on the Send,{APPSKEY} line to suit your purposes
| Code: | If wireless ENABLED then
Send,{APPSKEY}b ; Disable
Send,{APPSKEY}v ; View
Send,{APPSKEY}u ; Status
Send,{APPSKEY}g ; Bridge
Send,{APPSKEY}p ; Repair
Send,{APPSKEY}s ; Create Shortcut
Send,{APPSKEY}m ; Rename
Send,{APPSKEY}r ; Properties |
| Code: | If wireless DISABLED then
Send,{APPSKEY}a ; Enable
Send,{APPSKEY}s ; Create Shortcut
Send,{APPSKEY}m ; Rename
Send,{APPSKEY}r ; Properties |
_________________ Paul O |
|
| Back to top |
|
 |
montiaro
Joined: 20 Feb 2008 Posts: 76
|
Posted: Sat Aug 30, 2008 6:39 am Post subject: |
|
|
| wow poo_noo u are awesome this really helps me but i cant test this out till monday so ill have to wait but i tried it on my computer it works very well just have to change a few things but really thanks ^^ |
|
| Back to top |
|
 |
poo_noo
Joined: 08 Dec 2006 Posts: 137 Location: Sydney Australia
|
|
| Back to top |
|
 |
|