Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
string not recognized in command line
#4
comment either one of the RunConsole2 lines and test again
   
   


here is an alternative using regular zip format that works



Code:
Copy      Help
str ft
;find Windows Explorer window
int hwnd=win("" "ExploreWClass")
if(!hwnd) hwnd=win("" "CabinetWClass")
if(!hwnd) end "folder window not found"
;Get ShellBrowserWindow interface by enumerating shell windows
SHDocVw.ShellWindows sw._create
SHDocVw.ShellBrowserWindow b
foreach(b sw)
,int hwnd2=b.HWND
,err 
,,continue
,if(hwnd=hwnd2) 
,,goto g1
,;ret
;g1
;get shell folder view document
Shell32.ShellFolderView sfw=b.Document
Shell32.FolderItem fi
;enumerate selected items
foreach fi sfw.SelectedItems
,fi.Path
,ft.addline(fi.Path)
out ft
str zf="$desktop$\test.zip";;; change to your desired directory and zip name
str fn
out "zip"
zip zf ft 0 fn
if(fn.len) out fn


Messages In This Thread
string not recognized in command line - by TNH - 07-23-2018, 11:29 PM
RE: string not recognized in command line - by Kevin - 07-24-2018, 12:52 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)