matzew Posted October 31, 2009 Posted October 31, 2009 hi, is it possible to make a script to deactivate the onboard soundcard and the wired and wireless networkadapter with one click? of course to activate too sorry but i am a newbe with autoit best..
Bert Posted November 1, 2009 Posted November 1, 2009 Use the search function in the forum. You should get some direction there. The Vollatran project My blog: http://www.vollysinterestingshit.com/
matzew Posted November 1, 2009 Author Posted November 1, 2009 (edited) of course is used the search function but my english ist not very well probably my keywords are wrong or something.. i forgot, my os is windows 7 i found something but this seems not working.. http://www.autoitscript.com/forum/index.php?showtopic=104226 Edited November 1, 2009 by matzew
somdcomputerguy Posted November 1, 2009 Posted November 1, 2009 I ControlSend to a Windows app to enable/disable the wireless card in my laptop. If Not WinExists("Windows Mobility Center") Then $VZExist = 0 Run("mblctr.exe /open") Else WinActivate("Windows Mobility Center") EndIf Sleep(500) ;ControlClick("Windows Mobility Center", "", "Button2") ControlSend("Windows Mobility Center", "", "", "!t") If $VZExist = 0 Then WinClose("Windows Mobility Center") The Button/Alt-T is a toggle, so if it's on, it gets turned off, and vice-versa. There is most probably a dozen ways to do this same thing, but this was simple to write, and it works for me.. Also, the particular app and whatever is clicked or sent may be different in Win7 than my OS, but the idea will probably work. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
BrettF Posted November 1, 2009 Posted November 1, 2009 http://www.pcreview.co.uk/forums/thread-1304966.php Maybe somewhere to start...? Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now