Jump to content



Photo

Syntax error running a COM object


  • Please log in to reply
5 replies to this topic

#1 DiOgO

DiOgO

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 331 posts

Posted 14 May 2012 - 05:28 PM

I'm in trouble with this expression

I don't know how It should be written in a autoit script,

in a .vbs I only need this:

Set WshShell = CreateObject(“Wscript.Shell) WshShell.Run “Rundll32.exe advapi32.dll,ProcessIdleTasks”

and execute as myVBS.vbs $iniread[$j][1]

but in autoit syntax I got the error

what I wrote:
Run($WshShell.run & " " & '"Rundll32.exe advapi32.dll,ProcessIdleTasks"' & " " & $iniread[$j][1]

the error:

The requested action with this object has failed.:
Run($WshShell.run & " " & '"Rundll32.exe advapi32.dll,ProcessIdleTasks"' & " " & $iniread[$j][1])
Run($WshShell.run ^ ERROR

sorry if something like this was already answered ;)

EDIT: I set the $WshShell like this: $WshShell = ObjCreate("Wscript.Shell")

Edited by DiOgO, 14 May 2012 - 05:29 PM.

Heroes, there is no such thing






#2 DiOgO

DiOgO

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 331 posts

Posted 14 May 2012 - 05:55 PM

in this way don't give me a error but stays without working

$WshShell.run ("Rundll32.exe advapi32.dll,ProcessIdleTasks" & $iniread[$j][1])

Heroes, there is no such thing


#3 BrewManNH

BrewManNH

    באָבקעס מיט קודוצ׳ה

  • MVPs
  • 6,797 posts

Posted 14 May 2012 - 06:37 PM

First, why are you using WshShell.Run instead of just using Run? Second, did you create the object for WshShell in your script?

How to ask questions the smart way!

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.

Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.

_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.

GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.

Posted Image


#4 DiOgO

DiOgO

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 331 posts

Posted 14 May 2012 - 10:41 PM

First, why are you using WshShell.Run instead of just using Run? Second, did you create the object for WshShell in your script?

using the run would be something like: Run($WshShell "Rundll32.exe advapi32.dll,ProcessIdleTasks")?

I added the object in the topic EDIT...

Heroes, there is no such thing


#5 BrewManNH

BrewManNH

    באָבקעס מיט קודוצ׳ה

  • MVPs
  • 6,797 posts

Posted 14 May 2012 - 10:51 PM

No, using run would be something like Run("C:WindowsSystem32rundll32.exe" & " advapi32.dll,ProcessIdleTasks").

If you wanted to directly convert that VBScript to AutoIt, you would do this.

Global $WshShell = ObjCreate("Wscript.Shell") $WshShell.Run("Rundll32.exe advapi32.dll,ProcessIdleTasks")

How to ask questions the smart way!

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.

Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.

_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.

GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.

Posted Image


#6 DiOgO

DiOgO

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 331 posts

Posted 15 May 2012 - 09:08 PM

No, using run would be something like Run("C:WindowsSystem32rundll32.exe" & " advapi32.dll,ProcessIdleTasks").

If you wanted to directly convert that VBScript to AutoIt, you would do this.

Global $WshShell = ObjCreate("Wscript.Shell") $WshShell.Run("Rundll32.exe advapi32.dll,ProcessIdleTasks")

from what I read here: http://social.technet.microsoft.com/Forums/en-US/mscomops/thread/83e1d0cb-ca82-4703-afe0-9b23d97d3df6

I was doing wrong the dll execution, 1st run the dll, after the software we want

thanks for the tips ;)

Heroes, there is no such thing





0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users