Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
I am a very new user for korn scripting and in a process of learning. i have a .bat file that calls a .vbs file which calls a macro used to convert an excel spread sheet to .csv file... Now i want to automate this process. I want to call this bat file using a korn script or a korn script that runs my .vbs file... can anyone say me how to do that the .bat and .vbs files are on windows. Even the created new .cvs file is also placed on windows. Below code cotains my .bat and .vbs files
filename = "\\pb-a-024\xyz.xls" Set xlApp = CreateObject("Excel.Application") set xlBook = xlApp.WorkBooks.Open(filename) set xlSht = xlApp.activesheet
'xlBook.Close False xlApp.Quit 'always deallocate after use... set xlSht = Nothing Set xlBook = Nothing Set xlApp = NothingPlease enlight be how to slove this issue
Summary: I really appreciate if some one please help me on this... I am using FTP from UNIX (Solaris) to send a file to a win2003 server. I need to invoke a bat file which is on this windows server after the ...
Summary: Hi All, Thanks in Advance. My requirement is there are some data files to be updated(some times new files get created) regularly in server A, these files are to be updated to the server B(backup serve...