
ctyankeeinok
Active Members-
Posts
59 -
Joined
-
Last visited
Profile Information
-
Location
Oklahoma
ctyankeeinok's Achievements

Wayfarer (2/7)
0
Reputation
-
I found the answer elsewhere. No command line interface, but it can be done through the registry. Below are the entries for both local and remote. To turn it back on, just set it to 1: RegWrite("HKEY_CURRENT_USER\Printers\Settings","EnableBalloonNotificationsRemote","REG_DWORD",0) RegWrite("HKEY_CURRENT_USER\Printers\Settings","EnableBalloonNotificationsLocal","REG_DWORD",0)
-
I am working on an automated printer installation program and I would like to disable the "Show Informational Notifications" settings on the Print Server Properties. Does anyone know how to do that via command line? I know how to do it using the GUI, but I cannot even figure out how I could automate that (command line is much more preferable).
-
I think I figured it out, but it presents another question. I was testing the script by using F5 (Go), in my SciTE editor. Apparently it runs the script as x86 and not x64. If I compile the script as x64, it works properly. So, my question now becomes, how do I get SciTE to run it as x64? I am running SciTE 3.2.0 from June 9, 2012.
-
I am trying to use the GetText option in the ControlTreeView function on the Device Manager. The intention of the code is to go through the entries until the desired device is found. The code traverses the tree view with no problems, but when I attempt the GetText, an error is returned with no results. How do I make GetText work? I have done this before on XP with no problem, but I have either made a dumb mistake or GetText operates differently on Windows 7. I simplified this example to just look for a common USB Input Device. $strDevice = "USB Input Device" $foundDevice = False Run("mmc devmgmt.msc") WinWaitActive("Device Manager") ControlFocus("Device Manager","Device Manager on local computer","[CLASSNN:SysTreeView321]") ; Device may appear in Root, Other Devices, or Ports, Keyboard, or somewhere else... We will look in each category $tcount = ControlTreeView("Device Manager","Device Manager on local computer","[CLASSNN:SysTreeView321]","GetItemCount","#0") MsgBox(0,"tcount","Node Count: "& $tcount) for $x = 0 To ($tcount - 1) step 1 ControlTreeView("Device Manager","Device Manager on local computer","[CLASSNN:SysTreeView321]","Expand","#0|#"&$x) $count = ControlTreeView("Device Manager","Device Manager on local computer","[CLASSNN:SysTreeView321]","GetItemCount","#0|#"&$x) $text = ControlTreeView("Device Manager","Device Manager on local computer","[CLASSNN:SysTreeView321]","GetText","#0|#"&$x) MsgBox(0,"count","Sub Item count: " & $count & " Node: " & $text) for $i = 0 to ($count - 1) step 1 $text = ControlTreeView("Device Manager","Device Manager on local computer","[CLASSNN:SysTreeView321]","GetText","#0|#"&$x&"|#"&$i) $errvar = @error MsgBox(0,"Error or Text?", "Node/SubItem: " & $x &"/" & $i & " Error: " & $errvar & " Text: " & $text) if @error = 1 Then ExitLoop Else if StringInStr($text,$strDevice) > 0 Then $foundDevice = True ControlTreeView("Device Manager","Device Manager on local computer","[CLASSNN:SysTreeView321]","Select","#0|#"&$x&"|#"&$i) ExitLoop 2 ; found it, now exit both loops EndIf EndIf Next Next
-
ctyankeeinok reacted to a post in a topic: Printer functionality
-
Bring up "Printing Defaults"
ctyankeeinok replied to uncommon's topic in AutoIt General Help and Support
Try this page. It has all of the command settings for the RUNDLL32 PRINTUI.DLL,PrintUIEntry command. I did not see defaults, but you can display properties and preferences. http://technet.microsoft.com/en-us/library/ee624057(v=ws.10).aspx -
ctyankeeinok reacted to a post in a topic: How to add to path environment variable with autoit ?
-
I am using AutoIT to automate the installation of a USB bar code scanner. Because there does not seem to be a reliable silent installation, I am automating the install process. I have found that when I use the WinWaitActive and similar commands which look for a window title and subtitle, the title of the window does not seem to always matter. For example, depending on the machine I am installing on, I may see "New Hardware Found Wizard" or "Hardware Update Wizard" as the title. However, the script commands will execute with the former when the latter is what is coded in the Title entry. Does anyone have any insight into this?
-
Click "ok" on a new, not visible window
ctyankeeinok replied to arryo's topic in AutoIt General Help and Support
If you use the window info tool, you can obtain the window title and the visible text fo the control. Activate the window and do a control Send. Since it is a message box, you won't need a control ID WinActivate("Windows Internet Explorer","OK") ControlClick("Windows Internet Explorer","OK","","Primary") -
Must be blind - cant find a prob
ctyankeeinok replied to ddarek's topic in AutoIt General Help and Support
Just a syntax error on the Switch statement. The expression after the Switch keyword declares what to evaluate. By putting $msg = [xxx] in each case, you are assigning $msg to [xxx] and causing a true condition. regardless of which condition was first (after the close) it would be evaluated as true. remove the $Msg = as below. Switch $Msg Case $GUI_EVENT_CLOSE Exit Case $button_1 start() Case $radio_4 $Fast = False Case $radio_2 $Bless = False Case $button_2 ControlMove($client, "", "", 0, 0, 800, 600) EndSwitch -
Try using StringRegExpReplace. you will need to know if you are dealing with @CR, @LF or @CRLF. $newText = StringRegExpReplace($text, @CRLF, " ",1)) Will replace the first @CRLF in the $text with a space. For example: $text = "Hello" & @CRLF & "my name is " & @CRLF & "Inigo Montoya" MsgBox(0,"", $text) $newText = StringRegExpReplace($text, @CRLF, " ", 1) MsgBox(0,"", $newText)
-
PSaltyDS - Thanks for the correction/clarification on the boolean - I learned a new thing. I still don't see how it would work properly with the missing EndIf.
-
Upon further review, try the following: WinActivate ("iMedic Explore") ControlClick("iMedic Explore", "", "[TEXT:Logout]","Primary") Also, the _GUICtrlButton_Click does not return anything, so your $SuccessFailCode will not tell you anything of value.
-
Try changing the control identifier to only "[Text:Logout]" - remove the rest.