Jump to content

mohan93

Active Members
  • Posts

    53
  • Joined

  • Last visited

Recent Profile Visitors

145 profile views

mohan93's Achievements

  1. Hi Guys, Please suggest some scripts to run powershell scripts using Autoit as front end. Few scenario where inputs to powershell script will be given from autoit frontend text box. Thanks
  2. Hello Guys, Am planning to create an automation tool, which will get details of Server roles installed on Windows server for e.g. to get details of - Print server, DHCP, IIS, File server, AD, VPN server. Usually Power Shell script will be used to get these details. Can we use AutoIT script for this purpose, is that autoIT + Powershell integration possible ? Please suggest
  3. Silent switches is removed from the latest versions of Cleanwipe.exe But i need to remove Symantec from 1000+ machines, i need to run in unattended anyway. So looking for autoIT help.
  4. Hi Guys, Please suggest idea for below scenario. I need to automate (Symantec Cleanwipe.exe) GUI based installation (using button click or any other method) But we are going to deploy this EXE via SCCM or any other deployment tool to Client machines. 1. EXE deployed to Client machines have to start automatically. 2. Click required buttons automatically and finish install. Which method i can go for, please suggest. Thanks,
  5. Hello Guys, I have to check for the file with created date (e.g. 04/11/2014 00:00:01 AM) and get the name of the file. I have totally 5 files in the folder, Hope i need to do a recursive check. Please assist. Regards,
  6. Guys, I have written a script, complied and got an executable. On double clicking, I want my executable GUI to launch right side of my screen. How to i achive this ? please assist. Cheers,
  7. Hello Guys, Am struggling with inserting the read text file into Listview for display. I have a some 10 case, $Install, $Uninstall, etc.... where i read different text files on clicking the different button. Am not able to: 1. How to i create a listview in common for all buttons to display, where i can overwrite the values when i click different button everytime. 2. Write the read items in VBS in every case and display it to the listview created. Please assist. While 1 $msg = GUIGetMsg() Select Case $msg = $Install If Not _FileReadToArray("C:tempInstall.txt",$aRecords) Then MsgBox(4096,"Error", " Error reading log to Array error:" & @error) Exit EndIf For $x = 1 to $aRecords[0] **************** Have to insert my data into Listview ******************* Next Case $msg = $Uninstall If Not _FileReadToArray("C:tempUninstall.txt",$aRecords) Then MsgBox(4096,"Error", " Error reading log to Array error:" & @error) Exit EndIf For $x = 1 to $aRecords[0] **************** Have to insert my data into Listview ******************* Next Case $msg = $GUI_EVENT_CLOSE ExitLoop EndSelect
  8. I want buttons to open VBS in read mode only (not even for editing) - Because the idea is: all the scipt templates will be in one repository, for users to access the code which they want they can click on respective button, and view only the code. (sorry till now i have not worked with GUIs and Buttons) Cheers,
  9. Hello Guys, I have not worked with creating Button in autoit. Though this is common one, please help me with this. Am trying to create an GUI, only with 10 button and the GUI title name on top. On clicking each button, VBS will be opened from a repository in a notepad. (e.g: Delete Folder, Stop Service etc some 15 to 20 scripts) How to acheive this. Please assist.
  10. Am using Autoit v 3.3.6.1 Am writing script in SciTE whose version is 1.79, and running it from there.
  11. Thanks for you reply, I had a look at Word UDF, Seems it used to Set or Get Built In properties. Global $oWord = _Word_Create() Global $oDoc = _Word_DocOpen($oWord, @ScriptDir & "test.doc") Global $wdPropertyAuthor = 3 Global $sAuthor = $oDoc.BuiltInDocumentProperties($wdPropertyAuthor).Value ; Retrieves the Author of the document I have custom properties in my WORD file, (Sample.docx) eg: PACKAGE_NAME PACKAGE_ID PACKAGE_VERSION how can i get 1. input for the word file (Sample.docx) 2. read the above custom properties. 3. display if any NULL values. Please suggest.
  12. Hey Guys, I have hundreds of word document, each word file have 10 Custom properties added (all document are in same template ) I need to check and ensure in every document, no custom properties are left blank. This manual work is more time consuming, am planning to make this task to be a robust and time saving. Planning to write a script to check for the 10 Custom properties in MS Word file and alert me if any field of that is left blank. Will autoit script the above task, please guide me with your inputs. Thanks in Advance. Cheers,
×
×
  • Create New...