Jump to content

how to run this CMD commands in autoit


Recommended Posts

Dear support how to run this code on autoit

 

FORFILES /P %WINDIR%servicingPackages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart

 

the issue I have it with this CMD command is that it does have " in middle, which it's break the code on auto it.

I'm pretty sure there is something I have to do like on HTML we can replace it with just single ' 

how I can make it on autoit ?

 

my code is the following

 
   Local $iPID = RunAsWait($sUserName, "noralain", $sPassword, 0, @ComSpec & " /C " & "FORFILES /P %WINDIR%servicingPackages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart", "",@SW_HIDE)
 
 
 
 
Link to comment
Share on other sites

escape the double quote by doubling it. That or use single (not double) quotes to enclose your string.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

What he said:

Local $iPID = RunAsWait($sUserName, "noralain", $sPassword, 0, @ComSpec & '"' /C '"' & '"'FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c '"'cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart'"', "",@SW_HIDE)
Edited by careca
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Link to comment
Share on other sites

  • Moderators

Or you could ditch command line altogether and do it all in autoit...

#include <Array.au3>
#include <File.au3>

Local $aPackages = _FileListToArray(@WindowsDir & "\servicing\Packages", "Microsoft-Windows-InternetExplorer-*11*.mum")

    For $i = 1 To $aPackages[0]
        $packageName = StringTrimRight($aPackages[$i], 4)
        MsgBox(0, "Uninstall Updates", "Uninstalling " & $packageName, 5)
        ShellExecute("pkgmgr.exe", "/up " & $packageName & " /quiet /norestart")
    Next

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...