I am trying to run this command via autoit script to uninstall IE11 (it works from command prompt or the run line in windows 7):
cmd /c FORFILES /P %WINDIR%servicingPackages /M *11.*.mum /C "cmd /c echo @fname && start /w pkgmgr /up:@fname /quiet /norestart"
And am lost on the proper quotations and syntax.
RunWait(@ComSpec & " /c " & "cmd /c FORFILES /P %WINDIR%\servicing\Packages /M *11.*.mum /C "cmd /c echo @fname && start /w pkgmgr /up:@fname /quiet /norestart"", "", @SW_HIDE)
or
RunWait(@ComSpec & " /C " & "FORFILES /P %WINDIR%\servicing\Packages /M *11.*.mum /C ""cmd /c echo @fname && start /w pkgmgr /up:@fname /quiet /norestart""", "", @SW_HIDE)
dose nothing.
Thank you,
Jacob