stg68 Posted May 17, 2012 Share Posted May 17, 2012 Can't make it work when spaces are in the directory names. Tried any possible quotations.. All my directories and script in "My Documents" Your help will be appreciated!! Global $ToolPath = @ScriptDir&"\Myutility" ;;;; \My Documents\main.au3) Global $myoutput = $ToolPath&"\output" Global $appspath = $ToolPath&"\apps" Global $foldertochecksum = @ProgramFilesDir $runme = @ComSpec & ' /c ' & $appspath&'\md5sums.exe -n -e -b' & ' ' &$foldertochecksum& ' > ' & $myoutput&'\out.txt' msgbox(0,"",$runme) RunWait($runme,"",@SW_HIDE) Link to comment Share on other sites More sharing options...
Reg2Post Posted May 17, 2012 Share Posted May 17, 2012 Try using a triple quote (""") where you need it for the paths with spaces. Or, use short path names. Link to comment Share on other sites More sharing options...
Spiff59 Posted May 17, 2012 Share Posted May 17, 2012 or, a careful mix of single and double quotes... $runme = @ComSpec & ' /c "' & $appspath & 'md5sums.exe" -n -e -b' & ' ' & $foldertochecksum & ' > "' & $myoutput & 'out.txt"' Msgbox(0,"",$runme) Link to comment Share on other sites More sharing options...
stg68 Posted May 17, 2012 Author Share Posted May 17, 2012 Thank you for your assistance! It still not working after I changed it as you suggested in both cases below: Where @ScriptDir=c:temp OR @ScriptDir=c:tempmy program It only works when @ScriptDir=c:temp AND no double quotes used. Any other suggestions will be appreciated! Global $ToolPath = @ScriptDir&"md5sums" Global $myoutput = $ToolPath&"output" Global $appspath = $ToolPath&"apps" Global $Foldertosums = @ScriptDir&"7-zip" DirCreate ($ToolPath) DirCreate ($myoutput) DirCreate ($appspath) $runme = @ComSpec & ' /c "' & $appspath&'md5sums.exe -n -e -b"' & ' ' &$Foldertosums& ' > "' & $myoutput&'out.txt"' msgbox(0,'',$runme) RunWait($runme,"",@SW_SHOWNORMAL) Link to comment Share on other sites More sharing options...
BrewManNH Posted May 17, 2012 Share Posted May 17, 2012 You have no quotes around the $FolderTosums variable. Try this: $runme = @ComSpec & ' /c "' & $appspath & 'md5sums.exe -n -e -b"' & ' "' & $Foldertosums & '"' & ' > "' & $myoutput & 'out.txt"' If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. 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 editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Spiff59 Posted May 17, 2012 Share Posted May 17, 2012 I'd fixed your first and third paths, neglecting the second.BrewmanNH has now added that as well, but I think one portion of his string ought to be what I posted 'md5sums.exe" -n -e -b' rather than 'md5sums.exe -n -e -b"' Link to comment Share on other sites More sharing options...
stg68 Posted May 17, 2012 Author Share Posted May 17, 2012 Global $ToolPath = @ScriptDir&"md5sums" Global $myoutput = $ToolPath&"output" Global $appspath = $ToolPath&"apps" Global $Foldertosums = @ScriptDir&"7-zip" DirCreate ($ToolPath) DirCreate ($myoutput) DirCreate ($appspath) Still does not work even where @ScriptDir=c:temp DOES NOT WORK --- $runme = @ComSpec & ' /c "' & $appspath&'md5sums.exe -n -e -b"' & ' ' &$Foldertosums& ' > "' & $myoutput&'out.txt"' DOES NOT WORK --- $runme = @ComSpec & ' /c "' & $appspath & 'md5sums.exe -n -e -b"' & ' "' & $Foldertosums & '"' & ' > "' & $myoutput & 'out.txt"' WORKS! --- $runme = @ComSpec & ' /c ' & $appspath & 'md5sums.exe -n -e -b' & ' ' & $Foldertosums & ' > ' & $myoutput & 'out.txt' msgbox(0,'',$runme) RunWait($runme,"",@SW_SHOWNORMAL) PS Just making sure it work with ScriptDir=c:temp then will try @ScriptDir=c:tempmy program Link to comment Share on other sites More sharing options...
Spiff59 Posted May 17, 2012 Share Posted May 17, 2012 (edited) Does it look correct when displayed by the message box? I don't have the program you're running but this looks good to me when displayed on the screen: $runme = @ComSpec & ' /c "' & $appspath & 'md5sums.exe" -n -e -b "' & $Foldertosums & '" > "' & $myoutput & 'out.txt"' Or, move the one quote after the parms as Brew had it... $runme = @ComSpec & ' /c "' & $appspath & 'md5sums.exe -n -e -b" "' & $Foldertosums & '" > "' & $myoutput & 'out.txt"' One of those ought to work. Edited May 17, 2012 by Spiff59 Link to comment Share on other sites More sharing options...
BrewManNH Posted May 17, 2012 Share Posted May 17, 2012 By the way, a consolewrite of the $runme variable is a LOT easier to read than trying to stuff it into a msgbox. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. 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 editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
stg68 Posted May 17, 2012 Author Share Posted May 17, 2012 It is still not working I am starting to suspect that it may be related to the md5sums.exe PC-Tools utility.. (http://www.pc-tools.net/win32/md5sums/) I am providing link to download this utility in case have time.. Thank you for your kindness and support! Link to comment Share on other sites More sharing options...
Spiff59 Posted May 17, 2012 Share Posted May 17, 2012 I think you're right... that 2005 utility does not handle long filenames. Search the Examples Forum for "MD5". I'm sure you'll find something of use. Link to comment Share on other sites More sharing options...
stg68 Posted May 17, 2012 Author Share Posted May 17, 2012 Thank You! Link to comment Share on other sites More sharing options...
guinness Posted May 17, 2012 Share Posted May 17, 2012 Or why not CRC32? #include <WinAPIEx.au3> ConsoleWrite(_CRC32(@ScriptFullPath) & @CRLF) Func _CRC32($sFilePath) ; By Yashied, modified by guinness. Local $hFileOpen = FileOpen($sFilePath, 0 + 16) If $hFileOpen = -1 Then Return SetError(1, 0, 0) EndIf Local $bData = FileRead($hFileOpen) FileClose($hFileOpen) Local $iLength = BinaryLen($bData), $tData If $iLength = 0 Then Return SetError(2, 0, 0) EndIf $tData = DllStructCreate('byte[' & $iLength & ']') DllStructSetData($tData, 1, $bData) Return Hex(_WinAPI_ComputeCrc32(DllStructGetPtr($tData), $iLength), 8) EndFunc ;==>_CRC32 UDF List: _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018 Link to comment Share on other sites More sharing options...
stg68 Posted May 17, 2012 Author Share Posted May 17, 2012 Thank you! Can you please recommend where to download “WinAPIEx.au3”? And where to place it locally? Link to comment Share on other sites More sharing options...
guinness Posted May 17, 2012 Share Posted May 17, 2012 Search the Examples section and then place next to your script. UDF List: _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018 Link to comment Share on other sites More sharing options...
stg68 Posted May 18, 2012 Author Share Posted May 18, 2012 Thank you! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now