Jump to content

Doppio

Active Members
  • Posts

    126
  • Joined

  • Last visited

Doppio's Achievements

Adventurer

Adventurer (3/7)

0

Reputation

  1. I have a problem compiling the following #Region EzSkinConvert ; #INDEX# ======================================================================================================================= ; Title .........: test_3.au3 ; AutoIt Version.: 3.3.0.0 ; Language.......: English (United States) ; --------------------------------------------------- EzSkin_PreProcessor.au3 ---------------------------------------------------- ; Version .......: 2.08.1809.2600 ; Modified.......: By EzSkinConvert.au3 ; Remarks .......: Code re-written by EzSkinConvert, created by JScript. Based on the: EzSkin_1-2-3, ver 1.0.2 - Feb 17, 2007 ; Credits .......: Original EzSkin.au3 version (1.0.2 - Feb 17, 2007) is made by Valuater. ; For personal use only, All Rights Reserved. Thank you big_daddy, Joscpe and SmOke_N. ; http://www.autoitscript.com/forum/index.php?showtopic=41319&view=findpost&p=307380 ; =============================================================================================================================== #include "EzSkin_Lite(test_3).au3" #EndRegion EzSkinConvert #include <GUIConstantsEx.au3> #include <ProgressConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form=C:\Documents and Settings\WTorres\Desktop\NGW-AD Open Project\proress_test_1.kxf ; _EzSkinGUICreate( "title" [, width [, height [, left [, top [, style [, ExStyle [, parent [, showIcon [, dragWindow ]]]]]]]]] ) ; If Left or/and Top = -2 then active Random Position ; If Style += $SS_RIGHT (Right-aligns the Caption), If Style += $SS_CENTER (Center-aligns the Caption) $Form1 = _EzSkinGuiCreate("Form1", 633, 447, 192, 124) ; _EzSkinGUIIconSetTip( "tipText" [, cursorStyle [, hwnd ]] ) ;_EzSkinGUIIconSetTip("Example 1|Example 2|Example 3") $Progress1 = _EzSkinCreateProgress(240, 200, 150, 17) _EzSkinGUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = _EzSkinGuiGetMsg() ; _EzSkinGUItoTray( ["title" [, "text" [, timeout [, option]]]] ) ;If @extended = 2 Then _EzSkinGUItoTray("EzSkin_1-2-3", "Thanks to: Valuater, big_daddy and Joscpe, for this great job!", 10, 1) ; _EzSkinRollUpDown( [winhandle] ) ;If @extended = 3 Then _EzSkinRollUpDown() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd I get the following Error: ERROR: _EzSkinCtrlSetData(): undefined function. _EzSkinCtrlSetData($hEZS_PROGRESSBAR, $iPercent, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ Thanks
  2. Thanks for all your hard work and effort, I'm currently using a very simple solution to backup and restore profiles using your UDF , however I encountered some problems with a Dell Latitude D505 laptop, and the solution was to update the WLan drivers because the original drivers did not support WPA. My question is the following, Is there a way to detect if the WLan card supports WPA? if there was (maybe a return value from your UDF) I could initiate the WLAN driver update before I configure the profile. I know you are very busy and I appreciate you valuable time spent here. Thanks.
  3. The KB I'm Using is Windows6.0-KB952627-x64.MSU
  4. I have the following script which I found on this forum, and would like to use it to show the progress while installing a KB (Windows Patch) #include <GUIConstants.au3> #include <WindowsConstants.au3> #include <GDIpProgress.au3> $Form1 = GUICreate("Form1", 492, 80, 193, 125) GUICtrlCreatePic(@ScriptDir & "\background.bmp", 0, 40, 492, 40, $WS_CLIPSIBLINGS) $Button1 = GUICtrlCreateButton("Start", 208, 8, 75, 25, 0) $Progress1 = _ProgressCreate(55, 60, 386, 14) _ProgressSetText($Progress1, "") _ProgressSetImages($Progress1, @ScriptDir & "\progress1.bmp", @ScriptDir & "\progress2.bmp") _ProgressSet($Progress1, 0) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 For $i = 1 to 100 Step 1 sleep(100) _ProgressSet($Progress1, $i) Next EndSwitch WEnd Can someone point me in the right direction? Thanks guys.
  5. Take a look at this, http://www.autoitscript.com/forum/index.ph...c=91018&hl= This is the right approach to doing automatic wireless configuration.
  6. Great I'm able to create the profile but it asks for credentials, is there a way to include the credentials in the schema or code? Thanks again for all your hard work.
  7. I tried the sample code and works like a charm, However I would like to use PEAP with the following settings: mytestSSID Connect even if this network is not broadcasting WPA2 AES Infrastructure PEAP Validate server CERT Certificate name myCERT Donot connect to servers Authentication Method (EAP-MSCHAP v2) Enable Fast Reconnect Connect when this network is in range. Thanks in advance.
  8. Thanks MattyD!!!
  9. Can you provide sample code?
  10. Where do I find Wifi.au3?
  11. fixed: Prohibit access to properties of components of a LAN connection (ENABLED) Prohibit access to the advanced settings item on the advanced menu (ENABLED) Prohibit access to properties of a LAN connection (ENABLED)
  12. I know I know, believe me I had meeting after meeting with the school board trying to explain why these F%$#ing machines are not working half of the time.... but hey with this tought economy I don't mind the overtime. Anyway, I think I found the solution let me know what you think. Gpedit.msc User Configuration Administrative templates Network Network Connection Prohibit access to properties of a LAN connection (ENABLED) Prohibit access to the advanced settings item on the advanced menu (ENABLED) Prohibit access to properties of a LAN connection (ENABLED)
  13. Good Morning, Let me explain. There are 3 accounts on every machine: Admin (full administrator), Teacher (Power User), Student (User). I can't put these pc's on a domain because of school policies (Some School board BS!!) anyway... I hope you guys get a clearer picture of my problem. I think the best solution would be to find a way to protect the "wireless network connection properties" window, or tweak the Wireless Network tab to prevent regular users from deleting or changing wireless settings. Thank you.
  14. This machines are not part of a Domain, and as I understand you can't use mandatory profiles on standalone PC's Any other Ideas?
  15. Good Morning, I manage a school network with over 500 laptops (XP SP3, not joined to a domain). The major problem I have is that every week I have to go around recreating the wireless profiles that the kids delete, or change settings. The students have limitted accounts but for some reason windows allows them to delte or change their profiles, look at the screenshot to see what I mean. Is there a way to prevent this? (registry tweak, script, patch, etc) any sugestion will be greatly appreciated. Thanks in advance.
×
×
  • Create New...